interface VpcConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnCluster.VpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnCluster_VpcConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnCluster.VpcConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnCluster.VpcConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnCluster » VpcConfigProperty |
Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.
You can control access to and from your resources by configuring a VPC. For more information, see Give SageMaker Access to Resources in your Amazon VPC .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const vpcConfigProperty: sagemaker.CfnCluster.VpcConfigProperty = {
securityGroupIds: ['securityGroupIds'],
subnets: ['subnets'],
};
Properties
Name | Type | Description |
---|---|---|
security | string[] | The VPC security group IDs, in the form sg-xxxxxxxx . |
subnets | string[] | The ID of the subnets in the VPC to which you want to connect your training job or model. |
securityGroupIds
Type:
string[]
The VPC security group IDs, in the form sg-xxxxxxxx
.
Specify the security groups for the VPC that is specified in the Subnets
field.
subnets
Type:
string[]
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 .