interface VpcSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DirectoryService.CfnMicrosoftADPropsMixin.VpcSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdirectoryservice#CfnMicrosoftADPropsMixin_VpcSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.directoryservice.CfnMicrosoftADPropsMixin.VpcSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_directoryservice.CfnMicrosoftADPropsMixin.VpcSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_directoryservice » CfnMicrosoftADPropsMixin » VpcSettingsProperty |
Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_directoryservice as directoryservice } from '@aws-cdk/cfn-property-mixins';
const vpcSettingsProperty: directoryservice.CfnMicrosoftADPropsMixin.VpcSettingsProperty = {
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| subnet | string[] | The identifiers of the subnets for the directory servers. |
| vpc | string | The identifier of the VPC in which to create the directory. |
subnetIds?
Type:
string[]
(optional)
The identifiers of the subnets for the directory servers.
The two subnets must be in different Availability Zones. Directory Service specifies a directory server and a DNS server in each of these subnets.
vpcId?
Type:
string
(optional)
The identifier of the VPC in which to create the directory.

.NET
Go
Java
Python
TypeScript