Struct aws_sdk_workspaces::input::DescribeWorkspacesInput
source · #[non_exhaustive]pub struct DescribeWorkspacesInput { /* private fields */ }Implementations§
source§impl DescribeWorkspacesInput
impl DescribeWorkspacesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeWorkspaces, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeWorkspaces, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DescribeWorkspaces>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeWorkspacesInput.
source§impl DescribeWorkspacesInput
impl DescribeWorkspacesInput
sourcepub fn workspace_ids(&self) -> Option<&[String]>
pub fn workspace_ids(&self) -> Option<&[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.
sourcepub fn directory_id(&self) -> Option<&str>
pub fn directory_id(&self) -> Option<&str>
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.
sourcepub fn user_name(&self) -> Option<&str>
pub fn user_name(&self) -> Option<&str>
The name of the directory user. You must specify this parameter with DirectoryId.
sourcepub fn bundle_id(&self) -> Option<&str>
pub fn bundle_id(&self) -> Option<&str>
The identifier of the bundle. All WorkSpaces that are created from this bundle are retrieved. You cannot combine this parameter with any other filter.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
Trait Implementations§
source§impl Clone for DescribeWorkspacesInput
impl Clone for DescribeWorkspacesInput
source§fn clone(&self) -> DescribeWorkspacesInput
fn clone(&self) -> DescribeWorkspacesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeWorkspacesInput
impl Debug for DescribeWorkspacesInput
source§impl PartialEq<DescribeWorkspacesInput> for DescribeWorkspacesInput
impl PartialEq<DescribeWorkspacesInput> for DescribeWorkspacesInput
source§fn eq(&self, other: &DescribeWorkspacesInput) -> bool
fn eq(&self, other: &DescribeWorkspacesInput) -> bool
self and other values to be equal, and is used
by ==.