[][src]Struct rusoto_workspaces::WorkspaceRequest

pub struct WorkspaceRequest {
    pub bundle_id: String,
    pub directory_id: String,
    pub root_volume_encryption_enabled: Option<bool>,
    pub tags: Option<Vec<Tag>>,
    pub user_name: String,
    pub user_volume_encryption_enabled: Option<bool>,
    pub volume_encryption_key: Option<String>,
    pub workspace_properties: Option<WorkspaceProperties>,
}

Describes the information used to create a WorkSpace.

Fields

bundle_id: String

The identifier of the bundle for the WorkSpace. You can use DescribeWorkspaceBundles to list the available bundles.

directory_id: String

The identifier of the AWS Directory Service directory for the WorkSpace. You can use DescribeWorkspaceDirectories to list the available directories.

root_volume_encryption_enabled: Option<bool>

Indicates whether the data stored on the root volume is encrypted.

tags: Option<Vec<Tag>>

The tags for the WorkSpace.

user_name: String

The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace.

user_volume_encryption_enabled: Option<bool>

Indicates whether the data stored on the user volume is encrypted.

volume_encryption_key: Option<String>

The symmetric AWS KMS customer master key (CMK) used to encrypt data stored on your WorkSpace. Amazon WorkSpaces does not support asymmetric CMKs.

workspace_properties: Option<WorkspaceProperties>

The WorkSpace properties.

Trait Implementations

impl Clone for WorkspaceRequest[src]

impl Debug for WorkspaceRequest[src]

impl Default for WorkspaceRequest[src]

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

impl PartialEq<WorkspaceRequest> for WorkspaceRequest[src]

impl Serialize for WorkspaceRequest[src]

impl StructuralPartialEq for WorkspaceRequest[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.