Class: Aws::DirectoryService::Types::DirectoryVpcSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::DirectoryVpcSettings
- Defined in:
- gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb
Overview
Note:
When making an API call, you may pass DirectoryVpcSettings data as a hash:
{
vpc_id: "VpcId", # required
subnet_ids: ["SubnetId"], # required
}
Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subnet_ids ⇒ Array<String>
The identifiers of the subnets for the directory servers.
-
#vpc_id ⇒ String
The identifier of the VPC in which to create the directory.
Instance Attribute Details
#subnet_ids ⇒ Array<String>
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.
2608 2609 2610 2611 2612 2613 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 2608 class DirectoryVpcSettings < Struct.new( :vpc_id, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The identifier of the VPC in which to create the directory.
2608 2609 2610 2611 2612 2613 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 2608 class DirectoryVpcSettings < Struct.new( :vpc_id, :subnet_ids) SENSITIVE = [] include Aws::Structure end |