Struct rusoto_workspaces::DefaultWorkspaceCreationProperties[][src]

pub struct DefaultWorkspaceCreationProperties {
    pub custom_security_group_id: Option<String>,
    pub default_ou: Option<String>,
    pub enable_internet_access: Option<bool>,
    pub enable_work_docs: Option<bool>,
    pub user_enabled_as_local_administrator: Option<bool>,
}

Information about defaults used to create a WorkSpace.

Fields

The identifier of any security groups to apply to WorkSpaces when they are created.

The organizational unit (OU) in the directory for the WorkSpace machine accounts.

The public IP address to attach to all WorkSpaces that are created or rebuilt.

Indicates whether the directory is enabled for Amazon WorkDocs.

Indicates whether the WorkSpace user is an administrator on the WorkSpace.

Trait Implementations

impl Default for DefaultWorkspaceCreationProperties
[src]

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

impl Debug for DefaultWorkspaceCreationProperties
[src]

Formats the value using the given formatter. Read more

impl Clone for DefaultWorkspaceCreationProperties
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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