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 user_storage: Option<UserStorage>,
}

Contains information about a WorkSpace bundle.

Fields

The bundle identifier.

A ComputeType object that specifies the compute type for the bundle.

The bundle description.

The name of the bundle.

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

A UserStorage object that specifies the amount of user storage that the bundle contains.

Trait Implementations

impl Default for WorkspaceBundle
[src]

[src]

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

impl Debug for WorkspaceBundle
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for WorkspaceBundle
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations