Show / Hide Table of Contents

Class CfnFlywheel.VpcConfigProperty

Configuration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job.

Inheritance
object
CfnFlywheel.VpcConfigProperty
Implements
CfnFlywheel.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.Comprehend
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFlywheel.VpcConfigProperty : CfnFlywheel.IVpcConfigProperty
Syntax (vb)
Public Class CfnFlywheel.VpcConfigProperty Implements CfnFlywheel.IVpcConfigProperty
Remarks

For more information, see Amazon VPC .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-comprehend-flywheel-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.Comprehend;

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

Synopsis

Constructors

VpcConfigProperty()

Configuration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job.

Properties

SecurityGroupIds

The ID number for a security group on an instance of your private VPC.

Subnets

The ID for each subnet being used in your private VPC.

Constructors

VpcConfigProperty()

Configuration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job.

public VpcConfigProperty()
Remarks

For more information, see Amazon VPC .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-comprehend-flywheel-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.Comprehend;

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

Properties

SecurityGroupIds

The ID number for a security group on an instance of your private VPC.

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

string[]

Remarks

Security groups on your VPC function serve as a virtual firewall to control inbound and outbound traffic and provides security for the resources that you’ll be accessing on the VPC. This ID number is preceded by "sg-", for instance: "sg-03b388029b0a285ea". For more information, see Security Groups for your VPC .

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

Subnets

The ID for each subnet being used in your private VPC.

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

string[]

Remarks

This subnet is a subset of the a range of IPv4 addresses used by the VPC and is specific to a given availability zone in the VPC’s Region. This ID number is preceded by "subnet-", for instance: "subnet-04ccf456919e69055". For more information, see VPCs and Subnets .

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

Implements

CfnFlywheel.IVpcConfigProperty
Back to top Generated by DocFX