[][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

bundle_id: Option<String>

The identifier of the bundle. All WorkSpaces that are created from this bundle are retrieved. You cannot combine this parameter with any other filter.

directory_id: Option<String>

The identifier of the directory. In addition, you can optionally specify a specific directory user (see UserName). You cannot combine this parameter with any other filter.

limit: Option<i64>

The maximum number of items to return.

next_token: Option<String>

If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.

user_name: Option<String>

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

workspace_ids: Option<Vec<String>>

The identifiers of the WorkSpaces. You cannot combine this parameter 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 PartialEq<DescribeWorkspacesRequest> for DescribeWorkspacesRequest[src]

impl Default for DescribeWorkspacesRequest[src]

impl Clone for DescribeWorkspacesRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeWorkspacesRequest[src]

impl Serialize for DescribeWorkspacesRequest[src]

Auto Trait Implementations

impl Send for DescribeWorkspacesRequest

impl Sync for DescribeWorkspacesRequest

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self