[][src]Struct rusoto_ds::DirectoryConnectSettingsDescription

pub struct DirectoryConnectSettingsDescription {
    pub availability_zones: Option<Vec<String>>,
    pub connect_ips: Option<Vec<String>>,
    pub customer_user_name: Option<String>,
    pub security_group_id: Option<String>,
    pub subnet_ids: Option<Vec<String>>,
    pub vpc_id: Option<String>,
}

Contains information about an AD Connector directory.

Fields

availability_zones: Option<Vec<String>>

A list of the Availability Zones that the directory is in.

connect_ips: Option<Vec<String>>

The IP addresses of the AD Connector servers.

customer_user_name: Option<String>

The user name of the service account in the on-premises directory.

security_group_id: Option<String>

The security group identifier for the AD Connector directory.

subnet_ids: Option<Vec<String>>

A list of subnet identifiers in the VPC that the AD Connector is in.

vpc_id: Option<String>

The identifier of the VPC that the AD Connector is in.

Trait Implementations

impl Clone for DirectoryConnectSettingsDescription[src]

impl Debug for DirectoryConnectSettingsDescription[src]

impl Default for DirectoryConnectSettingsDescription[src]

impl<'de> Deserialize<'de> for DirectoryConnectSettingsDescription[src]

impl PartialEq<DirectoryConnectSettingsDescription> for DirectoryConnectSettingsDescription[src]

impl StructuralPartialEq for DirectoryConnectSettingsDescription[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.