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

impl Debug for DescribeWorkspacesRequest[src]

impl Default for DescribeWorkspacesRequest[src]

impl PartialEq<DescribeWorkspacesRequest> for DescribeWorkspacesRequest[src]

impl Serialize for DescribeWorkspacesRequest[src]

impl StructuralPartialEq for DescribeWorkspacesRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.