Interface CfnMicrosoftAD.VpcSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMicrosoftAD.VpcSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnMicrosoftAD
@Stability(Stable)
public static interface CfnMicrosoftAD.VpcSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.directoryservice.*; VpcSettingsProperty vpcSettingsProperty = VpcSettingsProperty.builder() .subnetIds(List.of("subnetIds")) .vpcId("vpcId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMicrosoftAD.VpcSettingsProperty
static final class
An implementation forCfnMicrosoftAD.VpcSettingsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubnetIds
The identifiers of the subnets for the directory servers.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 Also:
-
getVpcId
The identifier of the VPC in which to create the directory.- See Also:
-
builder
-