Interface DescribeVpcClassicLinkResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeVpcClassicLinkResponse.Builder,DescribeVpcClassicLinkResponse>
,Ec2Response.Builder
,SdkBuilder<DescribeVpcClassicLinkResponse.Builder,DescribeVpcClassicLinkResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeVpcClassicLinkResponse
public static interface DescribeVpcClassicLinkResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeVpcClassicLinkResponse.Builder,DescribeVpcClassicLinkResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeVpcClassicLinkResponse.Builder
vpcs(Collection<VpcClassicLink> vpcs)
The ClassicLink status of the VPCs.DescribeVpcClassicLinkResponse.Builder
vpcs(Consumer<VpcClassicLink.Builder>... vpcs)
The ClassicLink status of the VPCs.DescribeVpcClassicLinkResponse.Builder
vpcs(VpcClassicLink... vpcs)
The ClassicLink status of the VPCs.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
vpcs
DescribeVpcClassicLinkResponse.Builder vpcs(Collection<VpcClassicLink> vpcs)
The ClassicLink status of the VPCs.
- Parameters:
vpcs
- The ClassicLink status of the VPCs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcs
DescribeVpcClassicLinkResponse.Builder vpcs(VpcClassicLink... vpcs)
The ClassicLink status of the VPCs.
- Parameters:
vpcs
- The ClassicLink status of the VPCs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcs
DescribeVpcClassicLinkResponse.Builder vpcs(Consumer<VpcClassicLink.Builder>... vpcs)
The ClassicLink status of the VPCs.
This is a convenience method that creates an instance of theVpcClassicLink.Builder
avoiding the need to create one manually viaVpcClassicLink.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#vpcs(List
.) - Parameters:
vpcs
- a consumer that will call methods onVpcClassicLink.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#vpcs(java.util.Collection
)
-
-