Struct rusoto_ds::DirectoryVpcSettingsDescription[][src]

pub struct DirectoryVpcSettingsDescription {
    pub availability_zones: Option<Vec<String>>,
    pub security_group_id: Option<String>,
    pub subnet_ids: Option<Vec<String>>,
    pub vpc_id: Option<String>,
}

Contains information about the directory.

Fields

The list of Availability Zones that the directory is in.

The domain controller security group identifier for the directory.

The identifiers of the subnets for the directory servers.

The identifier of the VPC that the directory is in.

Trait Implementations

impl Default for DirectoryVpcSettingsDescription
[src]

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

impl Debug for DirectoryVpcSettingsDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for DirectoryVpcSettingsDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DirectoryVpcSettingsDescription
[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