interface VpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnEndpointConfigPropsMixin.VpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnEndpointConfigPropsMixin_VpcConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnEndpointConfigPropsMixin.VpcConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnEndpointConfigPropsMixin.VpcConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnEndpointConfigPropsMixin » VpcConfigProperty |
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/cfn-property-mixins';
const vpcConfigProperty: sagemaker.CfnEndpointConfigPropsMixin.VpcConfigProperty = {
securityGroupIds: ['securityGroupIds'],
subnets: ['subnets'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | |
| subnets? | string[] |
securityGroupIds?
Type:
string[]
(optional)
subnets?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript