@Stability(value=Stable)
public static interface CfnMonitoringSchedule.NetworkConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
NetworkConfigProperty networkConfigProperty = NetworkConfigProperty.builder()
.enableInterContainerTrafficEncryption(false)
.enableNetworkIsolation(false)
.vpcConfig(VpcConfigProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnets(List.of("subnets"))
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMonitoringSchedule.NetworkConfigProperty.Builder
A builder for
CfnMonitoringSchedule.NetworkConfigProperty |
static class |
CfnMonitoringSchedule.NetworkConfigProperty.Jsii$Proxy
An implementation for
CfnMonitoringSchedule.NetworkConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMonitoringSchedule.NetworkConfigProperty.Builder |
builder() |
default Object |
getEnableInterContainerTrafficEncryption()
Whether to encrypt all communications between distributed processing jobs.
|
default Object |
getEnableNetworkIsolation()
Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
|
default Object |
getVpcConfig()
Specifies a VPC that your training jobs and hosted models have access to.
|
@Stability(value=Stable) @Nullable default Object getEnableInterContainerTrafficEncryption()
Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
@Stability(value=Stable) @Nullable default Object getEnableNetworkIsolation()
@Stability(value=Stable) @Nullable default Object getVpcConfig()
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 .
@Stability(value=Stable) static CfnMonitoringSchedule.NetworkConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.