Show / Hide Table of Contents

Interface CfnModelBiasJobDefinitionPropsMixin.INetworkConfigProperty

Networking options for a job, such as network traffic encryption between containers, whether to allow inbound and outbound network calls to and from containers, and the VPC subnets and security groups to use for VPC-enabled jobs.

Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnModelBiasJobDefinitionPropsMixin.INetworkConfigProperty
Syntax (vb)
Public Interface CfnModelBiasJobDefinitionPropsMixin.INetworkConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelbiasjobdefinition-networkconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;

             var networkConfigProperty = new NetworkConfigProperty {
                 EnableInterContainerTrafficEncryption = false,
                 EnableNetworkIsolation = false,
                 VpcConfig = new VpcConfigProperty {
                     SecurityGroupIds = new [] { "securityGroupIds" },
                     Subnets = new [] { "subnets" }
                 }
             };

Synopsis

Properties

EnableInterContainerTrafficEncryption

Whether to encrypt all communications between distributed processing jobs.

EnableNetworkIsolation

Whether to allow inbound and outbound network calls to and from the containers used for the processing job.

VpcConfig

Specifies a VPC that your training jobs and hosted models have access to.

Properties

EnableInterContainerTrafficEncryption

Whether to encrypt all communications between distributed processing jobs.

object? EnableInterContainerTrafficEncryption { get; }
Property Value

object

Remarks

Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelbiasjobdefinition-networkconfig.html#cfn-sagemaker-modelbiasjobdefinition-networkconfig-enableintercontainertrafficencryption

Type union: either bool or IResolvable

EnableNetworkIsolation

Whether to allow inbound and outbound network calls to and from the containers used for the processing job.

object? EnableNetworkIsolation { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelbiasjobdefinition-networkconfig.html#cfn-sagemaker-modelbiasjobdefinition-networkconfig-enablenetworkisolation

Type union: either bool or IResolvable

VpcConfig

Specifies a VPC that your training jobs and hosted models have access to.

object? VpcConfig { get; }
Property Value

object

Remarks

Control access to and from your training and model containers by configuring the VPC.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelbiasjobdefinition-networkconfig.html#cfn-sagemaker-modelbiasjobdefinition-networkconfig-vpcconfig

Type union: either IResolvable or CfnModelBiasJobDefinitionPropsMixin.IVpcConfigProperty

Back to top Generated by DocFX