Struct rusoto_ds::DirectoryVpcSettings[][src]

pub struct DirectoryVpcSettings {
    pub subnet_ids: Vec<String>,
    pub vpc_id: String,
}

Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.

Fields

The identifiers of the subnets for the directory servers. The two subnets must be in different Availability Zones. AWS Directory Service creates a directory server and a DNS server in each of these subnets.

The identifier of the VPC in which to create the directory.

Trait Implementations

impl Default for DirectoryVpcSettings
[src]

Returns the "default value" for a type. Read more

impl Debug for DirectoryVpcSettings
[src]

Formats the value using the given formatter. Read more

impl Clone for DirectoryVpcSettings
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DirectoryVpcSettings
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations