Struct rusoto_ds::DirectoryDescription[][src]

pub struct DirectoryDescription {
    pub access_url: Option<String>,
    pub alias: Option<String>,
    pub connect_settings: Option<DirectoryConnectSettingsDescription>,
    pub description: Option<String>,
    pub desired_number_of_domain_controllers: Option<i64>,
    pub directory_id: Option<String>,
    pub dns_ip_addrs: Option<Vec<String>>,
    pub edition: Option<String>,
    pub launch_time: Option<f64>,
    pub name: Option<String>,
    pub radius_settings: Option<RadiusSettings>,
    pub radius_status: Option<String>,
    pub short_name: Option<String>,
    pub size: Option<String>,
    pub sso_enabled: Option<bool>,
    pub stage: Option<String>,
    pub stage_last_updated_date_time: Option<f64>,
    pub stage_reason: Option<String>,
    pub type_: Option<String>,
    pub vpc_settings: Option<DirectoryVpcSettingsDescription>,
}

Contains information about an AWS Directory Service directory.

Fields

The access URL for the directory, such as http://<alias>.awsapps.com. If no alias has been created for the directory, <alias> is the directory identifier, such as d-XXXXXXXXXX.

The alias for the directory. If no alias has been created for the directory, the alias is the directory identifier, such as d-XXXXXXXXXX.

A DirectoryConnectSettingsDescription object that contains additional information about an AD Connector directory. This member is only present if the directory is an AD Connector directory.

The textual description for the directory.

The desired number of domain controllers in the directory if the directory is Microsoft AD.

The directory identifier.

The IP addresses of the DNS servers for the directory. For a Simple AD or Microsoft AD directory, these are the IP addresses of the Simple AD or Microsoft AD directory servers. For an AD Connector directory, these are the IP addresses of the DNS servers or domain controllers in the on-premises directory to which the AD Connector is connected.

The edition associated with this directory.

Specifies when the directory was created.

The fully-qualified name of the directory.

A RadiusSettings object that contains information about the RADIUS server configured for this directory.

The status of the RADIUS MFA server connection.

The short name of the directory.

The directory size.

Indicates if single-sign on is enabled for the directory. For more information, see EnableSso and DisableSso.

The current stage of the directory.

The date and time that the stage was last updated.

Additional information about the directory stage.

The directory size.

A DirectoryVpcSettingsDescription object that contains additional information about a directory. This member is only present if the directory is a Simple AD or Managed AD directory.

Trait Implementations

impl Default for DirectoryDescription
[src]

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

impl Debug for DirectoryDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for DirectoryDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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