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§
Source§impl Clone for DescribeWorkspacesRequest
impl Clone for DescribeWorkspacesRequest
Source§fn clone(&self) -> DescribeWorkspacesRequest
fn clone(&self) -> DescribeWorkspacesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more