[][src]Struct rusoto_workspaces::DefaultWorkspaceCreationProperties

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

Describes the default values that are used to create WorkSpaces. For more information, see Update Directory Details for Your WorkSpaces.

Fields

custom_security_group_id: Option<String>

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

default_ou: Option<String>

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

enable_internet_access: Option<bool>

Specifies whether to automatically assign an Elastic public IP address to WorkSpaces in this directory by default. If enabled, the Elastic public IP address allows outbound internet access from your WorkSpaces when you’re using an internet gateway in the Amazon VPC in which your WorkSpaces are located. If you're using a Network Address Translation (NAT) gateway for outbound internet access from your VPC, or if your WorkSpaces are in public subnets and you manually assign them Elastic IP addresses, you should disable this setting. This setting applies to new WorkSpaces that you launch or to existing WorkSpaces that you rebuild. For more information, see Configure a VPC for Amazon WorkSpaces.

enable_maintenance_mode: Option<bool>

Specifies whether maintenance mode is enabled for WorkSpaces. For more information, see WorkSpace Maintenance.

enable_work_docs: Option<bool>

Specifies whether the directory is enabled for Amazon WorkDocs.

user_enabled_as_local_administrator: Option<bool>

Specifies whether WorkSpace users are local administrators on their WorkSpaces.

Trait Implementations

impl Clone for DefaultWorkspaceCreationProperties[src]

impl Debug for DefaultWorkspaceCreationProperties[src]

impl Default for DefaultWorkspaceCreationProperties[src]

impl<'de> Deserialize<'de> for DefaultWorkspaceCreationProperties[src]

impl PartialEq<DefaultWorkspaceCreationProperties> for DefaultWorkspaceCreationProperties[src]

impl StructuralPartialEq for DefaultWorkspaceCreationProperties[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.