Struct aws_sdk_amp::operation::list_workspaces::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§
source§impl ListWorkspacesInput
impl ListWorkspacesInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token to request the next page in a paginated list. This token is obtained from the output of the previous ListWorkspaces request.
sourcepub fn alias(&self) -> Option<&str>
pub fn alias(&self) -> Option<&str>
Optional filter for workspace alias. Only the workspaces with aliases that begin with this value will be returned.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Maximum results to return in response (default=100, maximum=1000).
source§impl ListWorkspacesInput
impl ListWorkspacesInput
sourcepub fn builder() -> ListWorkspacesInputBuilder
pub fn builder() -> ListWorkspacesInputBuilder
Creates a new builder-style object to manufacture ListWorkspacesInput
.
Trait Implementations§
source§impl Clone for ListWorkspacesInput
impl Clone for ListWorkspacesInput
source§fn clone(&self) -> ListWorkspacesInput
fn clone(&self) -> ListWorkspacesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListWorkspacesInput
impl Debug for ListWorkspacesInput
source§impl PartialEq<ListWorkspacesInput> for ListWorkspacesInput
impl PartialEq<ListWorkspacesInput> for ListWorkspacesInput
source§fn eq(&self, other: &ListWorkspacesInput) -> bool
fn eq(&self, other: &ListWorkspacesInput) -> bool
self
and other
values to be equal, and is used
by ==
.