Interface CreateVpcAssociationAuthorizationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateVpcAssociationAuthorizationResponse.Builder,CreateVpcAssociationAuthorizationResponse>,Route53Response.Builder,SdkBuilder<CreateVpcAssociationAuthorizationResponse.Builder,CreateVpcAssociationAuthorizationResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateVpcAssociationAuthorizationResponse
public static interface CreateVpcAssociationAuthorizationResponse.Builder extends Route53Response.Builder, SdkPojo, CopyableBuilder<CreateVpcAssociationAuthorizationResponse.Builder,CreateVpcAssociationAuthorizationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateVpcAssociationAuthorizationResponse.BuilderhostedZoneId(String hostedZoneId)The ID of the hosted zone that you authorized associating a VPC with.default CreateVpcAssociationAuthorizationResponse.Buildervpc(Consumer<VPC.Builder> vpc)The VPC that you authorized associating with a hosted zone.CreateVpcAssociationAuthorizationResponse.Buildervpc(VPC vpc)The VPC that you authorized associating with a 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
CreateVpcAssociationAuthorizationResponse.Builder hostedZoneId(String hostedZoneId)
The ID of the hosted zone that you authorized associating a VPC with.
- Parameters:
hostedZoneId- The ID of the hosted zone that you authorized associating a VPC with.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpc
CreateVpcAssociationAuthorizationResponse.Builder vpc(VPC vpc)
The VPC that you authorized associating with a hosted zone.
- Parameters:
vpc- The VPC that you authorized associating with a hosted zone.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpc
default CreateVpcAssociationAuthorizationResponse.Builder vpc(Consumer<VPC.Builder> vpc)
The VPC that you authorized associating with a 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 tovpc(VPC).- Parameters:
vpc- 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:
vpc(VPC)
-
-