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)The IDs of the security groups associated with the cluster.VpcConfig.BuildersecurityGroupIds(Collection<String> securityGroupIds)The IDs of the security groups associated with the cluster.VpcConfig.BuildersubnetIds(String... subnetIds)The IDs of the subnets associated with the cluster.VpcConfig.BuildersubnetIds(Collection<String> subnetIds)The IDs of the subnets associated with the cluster.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
subnetIds
VpcConfig.Builder subnetIds(Collection<String> subnetIds)
The IDs of the subnets associated with the cluster.
- Parameters:
subnetIds-The IDs of the subnets associated with the cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
VpcConfig.Builder subnetIds(String... subnetIds)
The IDs of the subnets associated with the cluster.
- Parameters:
subnetIds-The IDs of the subnets associated with the cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfig.Builder securityGroupIds(Collection<String> securityGroupIds)
The IDs of the security groups associated with the cluster.
- Parameters:
securityGroupIds-The IDs of the security groups associated with the cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfig.Builder securityGroupIds(String... securityGroupIds)
The IDs of the security groups associated with the cluster.
- Parameters:
securityGroupIds-The IDs of the security groups associated with the cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-