Show / Hide Table of Contents

Class CfnSimpleAD.VpcSettingsProperty

Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.

Inheritance
object
CfnSimpleAD.VpcSettingsProperty
Implements
CfnSimpleAD.IVpcSettingsProperty
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.DirectoryService
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSimpleAD.VpcSettingsProperty : CfnSimpleAD.IVpcSettingsProperty
Syntax (vb)
Public Class CfnSimpleAD.VpcSettingsProperty Implements CfnSimpleAD.IVpcSettingsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.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.DirectoryService;

             var vpcSettingsProperty = new VpcSettingsProperty {
                 SubnetIds = new [] { "subnetIds" },
                 VpcId = "vpcId"
             };

Synopsis

Constructors

VpcSettingsProperty()

Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.

Properties

SubnetIds

The identifiers of the subnets for the directory servers.

VpcId

The identifier of the VPC in which to create the directory.

Constructors

VpcSettingsProperty()

Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.

public VpcSettingsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.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.DirectoryService;

             var vpcSettingsProperty = new VpcSettingsProperty {
                 SubnetIds = new [] { "subnetIds" },
                 VpcId = "vpcId"
             };

Properties

SubnetIds

The identifiers of the subnets for the directory servers.

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

string[]

Remarks

The two subnets must be in different Availability Zones. AWS Directory Service specifies a directory server and a DNS server in each of these subnets.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-subnetids

VpcId

The identifier of the VPC in which to create the directory.

public string VpcId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid

Implements

CfnSimpleAD.IVpcSettingsProperty
Back to top Generated by DocFX