Struct rusoto_workspaces::DescribeWorkspaceBundlesRequest[][src]

pub struct DescribeWorkspaceBundlesRequest {
    pub bundle_ids: Option<Vec<String>>,
    pub next_token: Option<String>,
    pub owner: Option<String>,
}

Fields

The IDs of the bundles. This parameter cannot be combined with any other filter.

The token for the next set of results. (You received this token from a previous call.)

The owner of the bundles. This parameter cannot be combined with any other filter.

Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that belong to your account.

Trait Implementations

impl Default for DescribeWorkspaceBundlesRequest
[src]

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

impl Debug for DescribeWorkspaceBundlesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeWorkspaceBundlesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeWorkspaceBundlesRequest
[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