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.Builder
securityGroupIds(String... securityGroupIds)
The VPC security group IDs, in the formsg-xxxxxxxx
.VpcConfig.Builder
securityGroupIds(Collection<String> securityGroupIds)
The VPC security group IDs, in the formsg-xxxxxxxx
.VpcConfig.Builder
subnets(String... subnets)
The ID of the subnets in the VPC to which you want to connect your training job or model.VpcConfig.Builder
subnets(Collection<String> subnets)
The ID of the subnets in the VPC to which you want to connect your training job or model.-
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
-
securityGroupIds
VpcConfig.Builder securityGroupIds(Collection<String> securityGroupIds)
The VPC security group IDs, in the form
sg-xxxxxxxx
. Specify the security groups for the VPC that is specified in theSubnets
field.- Parameters:
securityGroupIds
- The VPC security group IDs, in the formsg-xxxxxxxx
. Specify the security groups for the VPC that is specified in theSubnets
field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfig.Builder securityGroupIds(String... securityGroupIds)
The VPC security group IDs, in the form
sg-xxxxxxxx
. Specify the security groups for the VPC that is specified in theSubnets
field.- Parameters:
securityGroupIds
- The VPC security group IDs, in the formsg-xxxxxxxx
. Specify the security groups for the VPC that is specified in theSubnets
field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnets
VpcConfig.Builder subnets(Collection<String> subnets)
The ID of the subnets in the VPC to which you want to connect your training job or model. For information about the availability of specific instance types, see Supported Instance Types and Availability Zones.
- Parameters:
subnets
- The ID of the subnets in the VPC to which you want to connect your training job or model. For information about the availability of specific instance types, see Supported Instance Types and Availability Zones.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnets
VpcConfig.Builder subnets(String... subnets)
The ID of the subnets in the VPC to which you want to connect your training job or model. For information about the availability of specific instance types, see Supported Instance Types and Availability Zones.
- Parameters:
subnets
- The ID of the subnets in the VPC to which you want to connect your training job or model. For information about the availability of specific instance types, see Supported Instance Types and Availability Zones.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-