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>,
}Expand description
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.
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.
Trait Implementations§
Source§impl Clone for WorkspaceProperties
impl Clone for WorkspaceProperties
Source§fn clone(&self) -> WorkspaceProperties
fn clone(&self) -> WorkspaceProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WorkspaceProperties
impl Debug for WorkspaceProperties
Source§impl Default for WorkspaceProperties
impl Default for WorkspaceProperties
Source§fn default() -> WorkspaceProperties
fn default() -> WorkspaceProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkspaceProperties
impl<'de> Deserialize<'de> for WorkspaceProperties
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WorkspaceProperties
impl PartialEq for WorkspaceProperties
Source§impl Serialize for WorkspaceProperties
impl Serialize for WorkspaceProperties
impl StructuralPartialEq for WorkspaceProperties
Auto Trait Implementations§
impl Freeze for WorkspaceProperties
impl RefUnwindSafe for WorkspaceProperties
impl Send for WorkspaceProperties
impl Sync for WorkspaceProperties
impl Unpin for WorkspaceProperties
impl UnwindSafe for WorkspaceProperties
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more