[][src]Struct rusoto_workspaces::DescribeWorkspacesRequest

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 Clone for DescribeWorkspacesRequest
[src]

Performs copy-assignment from source. Read more

impl Default for DescribeWorkspacesRequest
[src]

impl PartialEq<DescribeWorkspacesRequest> for DescribeWorkspacesRequest
[src]

impl Debug for DescribeWorkspacesRequest
[src]

impl Serialize for DescribeWorkspacesRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T