Interface ListVpcAssociationAuthorizationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListVpcAssociationAuthorizationsResponse.Builder,ListVpcAssociationAuthorizationsResponse>,Route53Response.Builder,SdkBuilder<ListVpcAssociationAuthorizationsResponse.Builder,ListVpcAssociationAuthorizationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListVpcAssociationAuthorizationsResponse
public static interface ListVpcAssociationAuthorizationsResponse.Builder extends Route53Response.Builder, SdkPojo, CopyableBuilder<ListVpcAssociationAuthorizationsResponse.Builder,ListVpcAssociationAuthorizationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListVpcAssociationAuthorizationsResponse.BuilderhostedZoneId(String hostedZoneId)The ID of the hosted zone that you can associate the listed VPCs with.ListVpcAssociationAuthorizationsResponse.BuildernextToken(String nextToken)When the response includes aNextTokenelement, there are more VPCs that can be associated with the specified hosted zone.ListVpcAssociationAuthorizationsResponse.BuildervpCs(Collection<VPC> vpCs)The list of VPCs that are authorized to be associated with the specified hosted zone.ListVpcAssociationAuthorizationsResponse.BuildervpCs(Consumer<VPC.Builder>... vpCs)The list of VPCs that are authorized to be associated with the specified hosted zone.ListVpcAssociationAuthorizationsResponse.BuildervpCs(VPC... vpCs)The list of VPCs that are authorized to be associated with the specified hosted zone.-
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
-
hostedZoneId
ListVpcAssociationAuthorizationsResponse.Builder hostedZoneId(String hostedZoneId)
The ID of the hosted zone that you can associate the listed VPCs with.
- Parameters:
hostedZoneId- The ID of the hosted zone that you can associate the listed VPCs with.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListVpcAssociationAuthorizationsResponse.Builder nextToken(String nextToken)
When the response includes a
NextTokenelement, there are more VPCs that can be associated with the specified hosted zone. To get the next page of VPCs, submit anotherListVPCAssociationAuthorizationsrequest, and include the value of theNextTokenelement from the response in thenexttokenrequest parameter.- Parameters:
nextToken- When the response includes aNextTokenelement, there are more VPCs that can be associated with the specified hosted zone. To get the next page of VPCs, submit anotherListVPCAssociationAuthorizationsrequest, and include the value of theNextTokenelement from the response in thenexttokenrequest parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpCs
ListVpcAssociationAuthorizationsResponse.Builder vpCs(Collection<VPC> vpCs)
The list of VPCs that are authorized to be associated with the specified hosted zone.
- Parameters:
vpCs- The list of VPCs that are authorized to be associated with the specified hosted zone.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpCs
ListVpcAssociationAuthorizationsResponse.Builder vpCs(VPC... vpCs)
The list of VPCs that are authorized to be associated with the specified hosted zone.
- Parameters:
vpCs- The list of VPCs that are authorized to be associated with the specified hosted zone.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpCs
ListVpcAssociationAuthorizationsResponse.Builder vpCs(Consumer<VPC.Builder>... vpCs)
The list of VPCs that are authorized to be associated with the specified hosted zone.
This is a convenience method that creates an instance of theVPC.Builderavoiding the need to create one manually viaVPC.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#vpCs(List.) - Parameters:
vpCs- a consumer that will call methods onVPC.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#vpCs(java.util.Collection)
-
-