public static interface CfnDataQualityJobDefinition.NetworkConfigProperty
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 |
CfnDataQualityJobDefinition.NetworkConfigProperty.Builder
A builder for
CfnDataQualityJobDefinition.NetworkConfigProperty |
static class |
CfnDataQualityJobDefinition.NetworkConfigProperty.Jsii$Proxy
An implementation for
CfnDataQualityJobDefinition.NetworkConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataQualityJobDefinition.NetworkConfigProperty.Builder |
builder() |
default java.lang.Object |
getEnableInterContainerTrafficEncryption()
Whether to encrypt all communications between distributed processing jobs.
|
default java.lang.Object |
getEnableNetworkIsolation()
Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
|
default java.lang.Object |
getVpcConfig()
Specifies a VPC that your training jobs and hosted models have access to.
|
default java.lang.Object getEnableInterContainerTrafficEncryption()
Choose True
to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
default java.lang.Object getEnableNetworkIsolation()
default java.lang.Object getVpcConfig()
Control access to and from your training and model containers by configuring the VPC.
static CfnDataQualityJobDefinition.NetworkConfigProperty.Builder builder()