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 security group identifier for the directory. If the directory was created before 8/1/2014, this is the identifier of the directory members security group that was created when the directory was created. If the directory was created after this date, this value is null.

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]

[src]

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

impl Debug for DirectoryVpcSettingsDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DirectoryVpcSettingsDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations