[][src]Struct rusoto_ds::DirectoryConnectSettings

pub struct DirectoryConnectSettings {
    pub customer_dns_ips: Vec<String>,
    pub customer_user_name: String,
    pub subnet_ids: Vec<String>,
    pub vpc_id: String,
}

Contains information for the ConnectDirectory operation when an AD Connector directory is being created.

Fields

customer_dns_ips: Vec<String>

A list of one or more IP addresses of DNS servers or domain controllers in the on-premises directory.

customer_user_name: String

The user name of an account in the on-premises directory that is used to connect to the directory. This account must have the following permissions:

  • Read users and groups

  • Create computer objects

  • Join computers to the domain

subnet_ids: Vec<String>

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

vpc_id: String

The identifier of the VPC in which the AD Connector is created.

Trait Implementations

impl PartialEq<DirectoryConnectSettings> for DirectoryConnectSettings[src]

impl Default for DirectoryConnectSettings[src]

impl Clone for DirectoryConnectSettings[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DirectoryConnectSettings[src]

impl Serialize for DirectoryConnectSettings[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self