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]

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

impl Debug for CreateDirectoryRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateDirectoryRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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