[][src]Struct rusoto_workspaces::WorkspaceProperties

pub struct WorkspaceProperties {
    pub compute_type_name: Option<String>,
    pub root_volume_size_gib: Option<i64>,
    pub running_mode: Option<String>,
    pub running_mode_auto_stop_timeout_in_minutes: Option<i64>,
    pub user_volume_size_gib: Option<i64>,
}

Describes a WorkSpace.

Fields

compute_type_name: Option<String>

The compute type. For more information, see Amazon WorkSpaces Bundles.

root_volume_size_gib: Option<i64>

The size of the root volume. For important information about how to modify the size of the root and user volumes, see Modify a WorkSpace.

running_mode: Option<String>

The running mode. For more information, see Manage the WorkSpace Running Mode.

running_mode_auto_stop_timeout_in_minutes: Option<i64>

The time after a user logs off when WorkSpaces are automatically stopped. Configured in 60-minute intervals.

user_volume_size_gib: Option<i64>

The size of the user storage. For important information about how to modify the size of the root and user volumes, see Modify a WorkSpace.

Trait Implementations

impl Clone for WorkspaceProperties[src]

impl Debug for WorkspaceProperties[src]

impl Default for WorkspaceProperties[src]

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

impl PartialEq<WorkspaceProperties> for WorkspaceProperties[src]

impl Serialize for WorkspaceProperties[src]

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