interface VpcSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DirectoryService.Mixins.CfnMicrosoftADPropsMixin.VpcSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdirectoryservice/mixins#CfnMicrosoftADPropsMixin_VpcSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.directoryservice.mixins.CfnMicrosoftADPropsMixin.VpcSettingsProperty |
Python | aws_cdk.mixins_preview.aws_directoryservice.mixins.CfnMicrosoftADPropsMixin.VpcSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_directoryservice » mixins » 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 { mixins as directoryservice_mixins } from '@aws-cdk/mixins-preview/aws-directoryservice';
const vpcSettingsProperty: directoryservice_mixins.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