{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-directory-service/refs/heads/main/json-schema/amazon-directory-service-directory-vpc-settings-schema.json",
"title": "DirectoryVpcSettings",
"description": "Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.",
"type": "object",
"properties": {
"VpcId": {
"allOf": [
{
"$ref": "#/components/schemas/VpcId"
},
{
"description": "The identifier of the VPC in which to create the directory."
}
]
},
"SubnetIds": {
"allOf": [
{
"$ref": "#/components/schemas/SubnetIds"
},
{
"description": "The identifiers of the subnets for the directory servers. The two subnets must be in different Availability Zones. Directory Service creates a directory server and a DNS server in each of these subnets."
}
]
}
},
"required": [
"VpcId",
"SubnetIds"
]
}