pub struct WorkspaceBundle {
pub bundle_id: Option<String>,
pub compute_type: Option<ComputeType>,
pub description: Option<String>,
pub image_id: Option<String>,
pub last_updated_time: Option<f64>,
pub name: Option<String>,
pub owner: Option<String>,
pub root_storage: Option<RootStorage>,
pub user_storage: Option<UserStorage>,
}Expand description
Describes a WorkSpace bundle.
Fields§
§bundle_id: Option<String>The bundle identifier.
compute_type: Option<ComputeType>The compute type. For more information, see Amazon WorkSpaces Bundles.
description: Option<String>A description.
image_id: Option<String>The image identifier of the bundle.
last_updated_time: Option<f64>The last time that the bundle was updated.
name: Option<String>The name of the bundle.
owner: Option<String>The owner of the bundle. This is the account identifier of the owner, or AMAZON if the bundle is provided by AWS.
root_storage: Option<RootStorage>The size of the root volume.
user_storage: Option<UserStorage>The size of the user storage.
Trait Implementations§
Source§impl Clone for WorkspaceBundle
impl Clone for WorkspaceBundle
Source§fn clone(&self) -> WorkspaceBundle
fn clone(&self) -> WorkspaceBundle
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 WorkspaceBundle
impl Debug for WorkspaceBundle
Source§impl Default for WorkspaceBundle
impl Default for WorkspaceBundle
Source§fn default() -> WorkspaceBundle
fn default() -> WorkspaceBundle
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkspaceBundle
impl<'de> Deserialize<'de> for WorkspaceBundle
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 WorkspaceBundle
impl PartialEq for WorkspaceBundle
impl StructuralPartialEq for WorkspaceBundle
Auto Trait Implementations§
impl Freeze for WorkspaceBundle
impl RefUnwindSafe for WorkspaceBundle
impl Send for WorkspaceBundle
impl Sync for WorkspaceBundle
impl Unpin for WorkspaceBundle
impl UnwindSafe for WorkspaceBundle
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