Interface ListCidrBlocksResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListCidrBlocksResponse.Builder,ListCidrBlocksResponse>,Route53Response.Builder,SdkBuilder<ListCidrBlocksResponse.Builder,ListCidrBlocksResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListCidrBlocksResponse
public static interface ListCidrBlocksResponse.Builder extends Route53Response.Builder, SdkPojo, CopyableBuilder<ListCidrBlocksResponse.Builder,ListCidrBlocksResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCidrBlocksResponse.BuildercidrBlocks(Collection<CidrBlockSummary> cidrBlocks)A complex type that contains information about the CIDR blocks.ListCidrBlocksResponse.BuildercidrBlocks(Consumer<CidrBlockSummary.Builder>... cidrBlocks)A complex type that contains information about the CIDR blocks.ListCidrBlocksResponse.BuildercidrBlocks(CidrBlockSummary... cidrBlocks)A complex type that contains information about the CIDR blocks.ListCidrBlocksResponse.BuildernextToken(String nextToken)An opaque pagination token to indicate where the service is to begin enumerating results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.route53.model.Route53Response.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
-
nextToken
ListCidrBlocksResponse.Builder nextToken(String nextToken)
An opaque pagination token to indicate where the service is to begin enumerating results.
If no value is provided, the listing of results starts from the beginning.
- Parameters:
nextToken- An opaque pagination token to indicate where the service is to begin enumerating results.If no value is provided, the listing of results starts from the beginning.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cidrBlocks
ListCidrBlocksResponse.Builder cidrBlocks(Collection<CidrBlockSummary> cidrBlocks)
A complex type that contains information about the CIDR blocks.
- Parameters:
cidrBlocks- A complex type that contains information about the CIDR blocks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cidrBlocks
ListCidrBlocksResponse.Builder cidrBlocks(CidrBlockSummary... cidrBlocks)
A complex type that contains information about the CIDR blocks.
- Parameters:
cidrBlocks- A complex type that contains information about the CIDR blocks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cidrBlocks
ListCidrBlocksResponse.Builder cidrBlocks(Consumer<CidrBlockSummary.Builder>... cidrBlocks)
A complex type that contains information about the CIDR blocks.
This is a convenience method that creates an instance of theCidrBlockSummary.Builderavoiding the need to create one manually viaCidrBlockSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#cidrBlocks(List.) - Parameters:
cidrBlocks- a consumer that will call methods onCidrBlockSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#cidrBlocks(java.util.Collection)
-
-