Show / Hide Table of Contents

Class CfnModelBiasJobDefinition.VpcConfigProperty

Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.

Inheritance
object
CfnModelBiasJobDefinition.VpcConfigProperty
Implements
CfnModelBiasJobDefinition.IVpcConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnModelBiasJobDefinition.VpcConfigProperty : CfnModelBiasJobDefinition.IVpcConfigProperty
Syntax (vb)
Public Class CfnModelBiasJobDefinition.VpcConfigProperty Implements CfnModelBiasJobDefinition.IVpcConfigProperty
Remarks

You can control access to and from your resources by configuring a VPC. For more information, see Give SageMaker Access to Resources in your Amazon VPC .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelbiasjobdefinition-vpcconfig.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.AWS.Sagemaker;

             var vpcConfigProperty = new VpcConfigProperty {
                 SecurityGroupIds = new [] { "securityGroupIds" },
                 Subnets = new [] { "subnets" }
             };

Synopsis

Constructors

VpcConfigProperty()

Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.

Properties

SecurityGroupIds

The VPC security group IDs, in the form sg-xxxxxxxx .

Subnets

The ID of the subnets in the VPC to which you want to connect your training job or model.

Constructors

VpcConfigProperty()

Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to.

public VpcConfigProperty()
Remarks

You can control access to and from your resources by configuring a VPC. For more information, see Give SageMaker Access to Resources in your Amazon VPC .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelbiasjobdefinition-vpcconfig.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.AWS.Sagemaker;

             var vpcConfigProperty = new VpcConfigProperty {
                 SecurityGroupIds = new [] { "securityGroupIds" },
                 Subnets = new [] { "subnets" }
             };

Properties

SecurityGroupIds

The VPC security group IDs, in the form sg-xxxxxxxx .

public string[] SecurityGroupIds { get; set; }
Property Value

string[]

Remarks

Specify the security groups for the VPC that is specified in the Subnets field.

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

Subnets

The ID of the subnets in the VPC to which you want to connect your training job or model.

public string[] Subnets { get; set; }
Property Value

string[]

Remarks

For information about the availability of specific instance types, see Supported Instance Types and Availability Zones .

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

Implements

CfnModelBiasJobDefinition.IVpcConfigProperty
Back to top Generated by DocFX