Interface DescribeDhcpOptionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeDhcpOptionsResponse.Builder,DescribeDhcpOptionsResponse>
,Ec2Response.Builder
,SdkBuilder<DescribeDhcpOptionsResponse.Builder,DescribeDhcpOptionsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeDhcpOptionsResponse
public static interface DescribeDhcpOptionsResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeDhcpOptionsResponse.Builder,DescribeDhcpOptionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeDhcpOptionsResponse.Builder
dhcpOptions(Collection<DhcpOptions> dhcpOptions)
Information about the DHCP options sets.DescribeDhcpOptionsResponse.Builder
dhcpOptions(Consumer<DhcpOptions.Builder>... dhcpOptions)
Information about the DHCP options sets.DescribeDhcpOptionsResponse.Builder
dhcpOptions(DhcpOptions... dhcpOptions)
Information about the DHCP options sets.DescribeDhcpOptionsResponse.Builder
nextToken(String nextToken)
The token to include in another request to get the next page of items.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
dhcpOptions
DescribeDhcpOptionsResponse.Builder dhcpOptions(Collection<DhcpOptions> dhcpOptions)
Information about the DHCP options sets.
- Parameters:
dhcpOptions
- Information about the DHCP options sets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dhcpOptions
DescribeDhcpOptionsResponse.Builder dhcpOptions(DhcpOptions... dhcpOptions)
Information about the DHCP options sets.
- Parameters:
dhcpOptions
- Information about the DHCP options sets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dhcpOptions
DescribeDhcpOptionsResponse.Builder dhcpOptions(Consumer<DhcpOptions.Builder>... dhcpOptions)
Information about the DHCP options sets.
This is a convenience method that creates an instance of theDhcpOptions.Builder
avoiding the need to create one manually viaDhcpOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#dhcpOptions(List
.) - Parameters:
dhcpOptions
- a consumer that will call methods onDhcpOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dhcpOptions(java.util.Collection
)
-
nextToken
DescribeDhcpOptionsResponse.Builder nextToken(String nextToken)
The token to include in another request to get the next page of items. This value is
null
when there are no more items to return.- Parameters:
nextToken
- The token to include in another request to get the next page of items. This value isnull
when there are no more items to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-