Struct rusoto_ds::ConnectDirectoryRequest[][src]

pub struct ConnectDirectoryRequest {
    pub connect_settings: DirectoryConnectSettings,
    pub description: Option<String>,
    pub name: String,
    pub password: String,
    pub short_name: Option<String>,
    pub size: String,
}

Contains the inputs for the ConnectDirectory operation.

Fields

A DirectoryConnectSettings object that contains additional information for the operation.

A textual description for the directory.

The fully-qualified name of the on-premises directory, such as corp.example.com.

The password for the on-premises user account.

The NetBIOS name of the on-premises directory, such as CORP.

The size of the directory.

Trait Implementations

impl Default for ConnectDirectoryRequest
[src]

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

impl Debug for ConnectDirectoryRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ConnectDirectoryRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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