[][src]Struct rusoto_workspaces::SelfservicePermissions

pub struct SelfservicePermissions {
    pub change_compute_type: Option<String>,
    pub increase_volume_size: Option<String>,
    pub rebuild_workspace: Option<String>,
    pub restart_workspace: Option<String>,
    pub switch_running_mode: Option<String>,
}

Describes the self-service permissions for a directory. For more information, see Enable Self-Service WorkSpace Management Capabilities for Your Users.

Fields

change_compute_type: Option<String>

Specifies whether users can change the compute type (bundle) for their WorkSpace.

increase_volume_size: Option<String>

Specifies whether users can increase the volume size of the drives on their WorkSpace.

rebuild_workspace: Option<String>

Specifies whether users can rebuild the operating system of a WorkSpace to its original state.

restart_workspace: Option<String>

Specifies whether users can restart their WorkSpace.

switch_running_mode: Option<String>

Specifies whether users can switch the running mode of their WorkSpace.

Trait Implementations

impl Clone for SelfservicePermissions[src]

impl Debug for SelfservicePermissions[src]

impl Default for SelfservicePermissions[src]

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

impl PartialEq<SelfservicePermissions> for SelfservicePermissions[src]

impl Serialize for SelfservicePermissions[src]

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