Struct aws_sdk_amp::input::ListWorkspacesInput
source · [−]#[non_exhaustive]pub struct ListWorkspacesInput {
pub next_token: Option<String>,
pub alias: Option<String>,
pub max_results: Option<i32>,
}
Expand description
Represents the input of a ListWorkspaces operation.
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.next_token: Option<String>
Pagination token to request the next page in a paginated list. This token is obtained from the output of the previous ListWorkspaces request.
alias: Option<String>
Optional filter for workspace alias. Only the workspaces with aliases that begin with this value will be returned.
max_results: Option<i32>
Maximum results to return in response (default=100, maximum=1000).
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListWorkspaces, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListWorkspaces, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListWorkspaces
>
Creates a new builder-style object to manufacture ListWorkspacesInput
Pagination token to request the next page in a paginated list. This token is obtained from the output of the previous ListWorkspaces request.
Optional filter for workspace alias. Only the workspaces with aliases that begin with this value will be returned.
Maximum results to return in response (default=100, maximum=1000).
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 ListWorkspacesInput
impl Send for ListWorkspacesInput
impl Sync for ListWorkspacesInput
impl Unpin for ListWorkspacesInput
impl UnwindSafe for ListWorkspacesInput
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