Struct rusoto_ds::DomainController[][src]

pub struct DomainController {
    pub availability_zone: Option<String>,
    pub directory_id: Option<String>,
    pub dns_ip_addr: Option<String>,
    pub domain_controller_id: Option<String>,
    pub launch_time: Option<f64>,
    pub status: Option<String>,
    pub status_last_updated_date_time: Option<f64>,
    pub status_reason: Option<String>,
    pub subnet_id: Option<String>,
    pub vpc_id: Option<String>,
}

Contains information about the domain controllers for a specified directory.

Fields

The Availability Zone where the domain controller is located.

Identifier of the directory where the domain controller resides.

The IP address of the domain controller.

Identifies a specific domain controller in the directory.

Specifies when the domain controller was created.

The status of the domain controller.

The date and time that the status was last updated.

A description of the domain controller state.

Identifier of the subnet in the VPC that contains the domain controller.

The identifier of the VPC that contains the domain controller.

Trait Implementations

impl Default for DomainController
[src]

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

impl Debug for DomainController
[src]

Formats the value using the given formatter. Read more

impl Clone for DomainController
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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