Struct aws_sdk_workspaces::input::DescribeWorkspacesInput [−][src]
#[non_exhaustive]pub struct DescribeWorkspacesInput {
pub workspace_ids: Option<Vec<String>>,
pub directory_id: Option<String>,
pub user_name: Option<String>,
pub bundle_id: Option<String>,
pub limit: Option<i32>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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.
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.
user_name: Option<String>
The name of the directory user. You must specify this parameter with
DirectoryId
.
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.
limit: Option<i32>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeWorkspaces, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeWorkspaces, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeWorkspaces
>
Creates a new builder-style object to manufacture DescribeWorkspacesInput
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.
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.
The name of the directory user. You must specify this parameter with
DirectoryId
.
The identifier of the bundle. All WorkSpaces that are created from this bundle are retrieved. You cannot combine this parameter with any other filter.
If you received a NextToken
from a previous call that was paginated,
provide this token to receive the next set of results.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DescribeWorkspacesInput
impl Send for DescribeWorkspacesInput
impl Sync for DescribeWorkspacesInput
impl Unpin for DescribeWorkspacesInput
impl UnwindSafe for DescribeWorkspacesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more