Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

WorkforceVpcConfigResponse

import type { WorkforceVpcConfigResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

A VpcConfig object that specifies the VPC that you want your workforce to connect to.

interface WorkforceVpcConfigResponse {
SecurityGroupIds: string[];
Subnets: string[];
VpcEndpointId?: string | null;
VpcId: string;
}

§Properties

§
SecurityGroupIds: string[]
[src]

The VPC security group IDs, in the form sg-xxxxxxxx. The security groups must be for the same VPC as specified in the subnet.

§
Subnets: string[]
[src]

The ID of the subnets in the VPC that you want to connect.

§
VpcEndpointId?: string | null
[src]

The IDs for the VPC service endpoints of your VPC workforce when it is created and updated.

§
VpcId: string
[src]

The ID of the VPC that the workforce uses for communication.