interface WorkforceVpcConfigRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnWorkforce.WorkforceVpcConfigRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnWorkforce_WorkforceVpcConfigRequestProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnWorkforce.WorkforceVpcConfigRequestProperty |
Python | aws_cdk.aws_sagemaker.CfnWorkforce.WorkforceVpcConfigRequestProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnWorkforce » WorkforceVpcConfigRequestProperty |
The VPC configuration for the workforce.
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 workforceVpcConfigRequestProperty: sagemaker.CfnWorkforce.WorkforceVpcConfigRequestProperty = {
securityGroupIds: ['securityGroupIds'],
subnets: ['subnets'],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The VPC security group IDs. |
| subnets? | string[] | The VPC subnets. |
| vpc | string | The ID of the VPC. |
securityGroupIds?
Type:
string[]
(optional)
The VPC security group IDs.
subnets?
Type:
string[]
(optional)
The VPC subnets.
vpcId?
Type:
string
(optional)
The ID of the VPC.

.NET
Go
Java
Python
TypeScript