Struct rusoto_workspaces::DescribeWorkspacesRequest [] [src]

pub struct DescribeWorkspacesRequest {
    pub bundle_id: Option<String>,
    pub directory_id: Option<String>,
    pub limit: Option<i64>,
    pub next_token: Option<String>,
    pub user_name: Option<String>,
    pub workspace_ids: Option<Vec<String>>,
}

Fields

The ID of the bundle. All WorkSpaces that are created from this bundle are retrieved. This parameter cannot be combined with any other filter.

The ID of the directory. In addition, you can optionally specify a specific directory user (see UserName). This parameter cannot be combined with any other filter.

The maximum number of items to return.

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

The name of the directory user. You must specify this parameter with DirectoryId.

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

Because the CreateWorkspaces operation is asynchronous, the identifier it returns is not immediately available. If you immediately call DescribeWorkspaces with this identifier, no information is returned.

Trait Implementations

impl Default for DescribeWorkspacesRequest
[src]

[src]

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

impl Debug for DescribeWorkspacesRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeWorkspacesRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations