Struct rusoto_ds::CreateMicrosoftADRequest[][src]

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

Creates a Microsoft AD in the AWS cloud.

Fields

A textual description for the directory. This label will appear on the AWS console Directory Details page after the directory is created.

AWS Microsoft AD is available in two editions: Standard and Enterprise. Enterprise is the default.

The fully qualified domain name for the directory, such as corp.example.com. This name will resolve inside your VPC only. It does not need to be publicly resolvable.

The password for the default administrative user named Admin.

The NetBIOS name for your domain. A short identifier for your domain, such as CORP. If you don't specify a NetBIOS name, it will default to the first part of your directory DNS. For example, CORP for the directory DNS corp.example.com.

Contains VPC information for the CreateDirectory or CreateMicrosoftAD operation.

Trait Implementations

impl Default for CreateMicrosoftADRequest
[src]

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

impl Debug for CreateMicrosoftADRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateMicrosoftADRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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