[][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 Clone for DirectoryConnectSettings[src]

impl Debug for DirectoryConnectSettings[src]

impl Default for DirectoryConnectSettings[src]

impl PartialEq<DirectoryConnectSettings> for DirectoryConnectSettings[src]

impl Serialize for DirectoryConnectSettings[src]

impl StructuralPartialEq for DirectoryConnectSettings[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> From<T> for T[src]

impl<T> Instrument 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> 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.