Interface VpcConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VpcConfig.Builder,VpcConfig>,SdkBuilder<VpcConfig.Builder,VpcConfig>,SdkPojo
- Enclosing class:
- VpcConfig
public static interface VpcConfig.Builder extends SdkPojo, CopyableBuilder<VpcConfig.Builder,VpcConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VpcConfig.BuildersecurityGroupIds(String... securityGroupIds)A list of one or more security groups IDs in your Amazon VPC.VpcConfig.BuildersecurityGroupIds(Collection<String> securityGroupIds)A list of one or more security groups IDs in your Amazon VPC.VpcConfig.Buildersubnets(String... subnets)A list of one or more subnet IDs in your Amazon VPC.VpcConfig.Buildersubnets(Collection<String> subnets)A list of one or more subnet IDs in your Amazon VPC.VpcConfig.BuildervpcId(String vpcId)The ID of the Amazon 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
-
vpcId
VpcConfig.Builder vpcId(String vpcId)
The ID of the Amazon VPC.
- Parameters:
vpcId- The ID of the Amazon VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnets
VpcConfig.Builder subnets(Collection<String> subnets)
A list of one or more subnet IDs in your Amazon VPC.
- Parameters:
subnets- A list of one or more subnet IDs in your Amazon VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnets
VpcConfig.Builder subnets(String... subnets)
A list of one or more subnet IDs in your Amazon VPC.
- Parameters:
subnets- A list of one or more subnet IDs in your Amazon VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfig.Builder securityGroupIds(Collection<String> securityGroupIds)
A list of one or more security groups IDs in your Amazon VPC.
- Parameters:
securityGroupIds- A list of one or more security groups IDs in your Amazon VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfig.Builder securityGroupIds(String... securityGroupIds)
A list of one or more security groups IDs in your Amazon VPC.
- Parameters:
securityGroupIds- A list of one or more security groups IDs in your Amazon VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-