Struct rusoto_workspaces::WorkspaceBundle[][src]

pub struct WorkspaceBundle {
    pub bundle_id: Option<String>,
    pub compute_type: Option<ComputeType>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub owner: Option<String>,
    pub root_storage: Option<RootStorage>,
    pub user_storage: Option<UserStorage>,
}

Information about a WorkSpace bundle.

Fields

The bundle identifier.

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

A description.

The name of the bundle.

The owner of the bundle. This is the account identifier of the owner, or AMAZON if the bundle is provided by AWS.

The size of the root volume.

The size of the user storage.

Trait Implementations

impl Default for WorkspaceBundle
[src]

Returns the "default value" for a type. Read more

impl Debug for WorkspaceBundle
[src]

Formats the value using the given formatter. Read more

impl Clone for WorkspaceBundle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for WorkspaceBundle
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations