Struct rusoto_ds::DirectoryConnectSettings [] [src]

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

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

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

  • Read users and groups

  • Create computer objects

  • Join computers to the domain

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

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

Trait Implementations

impl Default for DirectoryConnectSettings
[src]

[src]

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

impl Debug for DirectoryConnectSettings
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DirectoryConnectSettings
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations