Interface VpcConfigResponse.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<VpcConfigResponse.Builder,VpcConfigResponse>
,SdkBuilder<VpcConfigResponse.Builder,VpcConfigResponse>
,SdkPojo
- Enclosing class:
- VpcConfigResponse
public static interface VpcConfigResponse.Builder extends SdkPojo, CopyableBuilder<VpcConfigResponse.Builder,VpcConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VpcConfigResponse.Builder
ipv6AllowedForDualStack(Boolean ipv6AllowedForDualStack)
Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.VpcConfigResponse.Builder
securityGroupIds(String... securityGroupIds)
A list of VPC security group IDs.VpcConfigResponse.Builder
securityGroupIds(Collection<String> securityGroupIds)
A list of VPC security group IDs.VpcConfigResponse.Builder
subnetIds(String... subnetIds)
A list of VPC subnet IDs.VpcConfigResponse.Builder
subnetIds(Collection<String> subnetIds)
A list of VPC subnet IDs.VpcConfigResponse.Builder
vpcId(String vpcId)
The ID of the VPC.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
subnetIds
VpcConfigResponse.Builder subnetIds(Collection<String> subnetIds)
A list of VPC subnet IDs.
- Parameters:
subnetIds
- A list of VPC subnet IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
VpcConfigResponse.Builder subnetIds(String... subnetIds)
A list of VPC subnet IDs.
- Parameters:
subnetIds
- A list of VPC subnet IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfigResponse.Builder securityGroupIds(Collection<String> securityGroupIds)
A list of VPC security group IDs.
- Parameters:
securityGroupIds
- A list of VPC security group IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfigResponse.Builder securityGroupIds(String... securityGroupIds)
A list of VPC security group IDs.
- Parameters:
securityGroupIds
- A list of VPC security group IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcId
VpcConfigResponse.Builder vpcId(String vpcId)
The ID of the VPC.
- Parameters:
vpcId
- The ID of the VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipv6AllowedForDualStack
VpcConfigResponse.Builder ipv6AllowedForDualStack(Boolean ipv6AllowedForDualStack)
Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
- Parameters:
ipv6AllowedForDualStack
- Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-