Struct rusoto_ds::CreateDirectoryRequest [] [src]

pub struct CreateDirectoryRequest {
    pub description: Option<String>,
    pub name: String,
    pub password: String,
    pub short_name: Option<String>,
    pub size: String,
    pub vpc_settings: Option<DirectoryVpcSettings>,
}

Contains the inputs for the CreateDirectory operation.

Fields

A textual description for the directory.

The fully qualified name for the directory, such as corp.example.com.

The password for the directory administrator. The directory creation process creates a directory administrator account with the username Administrator and this password.

The short name of the directory, such as CORP.

The size of the directory.

A DirectoryVpcSettings object that contains additional information for the operation.

Trait Implementations

impl Default for CreateDirectoryRequest
[src]

[src]

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

impl Debug for CreateDirectoryRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateDirectoryRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations