Interface CfnMonitoringSchedule.VpcConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMonitoringSchedule.VpcConfigProperty.Jsii$Proxy
Enclosing class:
CfnMonitoringSchedule

@Stability(Stable) public static interface CfnMonitoringSchedule.VpcConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies a VPC that your training jobs and hosted models have access to.

Control access to and from your training and model containers by configuring the VPC. For more information, see Protect Endpoints by Using an Amazon Virtual Private Cloud and Protect Training Jobs by Using an Amazon Virtual Private Cloud .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 VpcConfigProperty vpcConfigProperty = VpcConfigProperty.builder()
         .securityGroupIds(List.of("securityGroupIds"))
         .subnets(List.of("subnets"))
         .build();