[][src]Struct rusoto_workspaces::WorkspaceBundle

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>,
}

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

impl Clone for WorkspaceBundle[src]

impl Debug for WorkspaceBundle[src]

impl Default for WorkspaceBundle[src]

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

impl PartialEq<WorkspaceBundle> for WorkspaceBundle[src]

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