Struct aws_sdk_workspaces::operation::describe_workspaces_pools::DescribeWorkspacesPoolsInput
source · #[non_exhaustive]pub struct DescribeWorkspacesPoolsInput {
pub pool_ids: Option<Vec<String>>,
pub filters: Option<Vec<DescribeWorkspacesPoolsFilter>>,
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.pool_ids: Option<Vec<String>>The identifier of the WorkSpaces Pools.
filters: Option<Vec<DescribeWorkspacesPoolsFilter>>The filter conditions for the WorkSpaces Pool to return.
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§
source§impl DescribeWorkspacesPoolsInput
impl DescribeWorkspacesPoolsInput
sourcepub fn pool_ids(&self) -> &[String]
pub fn pool_ids(&self) -> &[String]
The identifier of the WorkSpaces Pools.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .pool_ids.is_none().
sourcepub fn filters(&self) -> &[DescribeWorkspacesPoolsFilter]
pub fn filters(&self) -> &[DescribeWorkspacesPoolsFilter]
The filter conditions for the WorkSpaces Pool to return.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
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.
source§impl DescribeWorkspacesPoolsInput
impl DescribeWorkspacesPoolsInput
sourcepub fn builder() -> DescribeWorkspacesPoolsInputBuilder
pub fn builder() -> DescribeWorkspacesPoolsInputBuilder
Creates a new builder-style object to manufacture DescribeWorkspacesPoolsInput.
Trait Implementations§
source§impl Clone for DescribeWorkspacesPoolsInput
impl Clone for DescribeWorkspacesPoolsInput
source§fn clone(&self) -> DescribeWorkspacesPoolsInput
fn clone(&self) -> DescribeWorkspacesPoolsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeWorkspacesPoolsInput
impl Debug for DescribeWorkspacesPoolsInput
source§impl PartialEq for DescribeWorkspacesPoolsInput
impl PartialEq for DescribeWorkspacesPoolsInput
source§fn eq(&self, other: &DescribeWorkspacesPoolsInput) -> bool
fn eq(&self, other: &DescribeWorkspacesPoolsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeWorkspacesPoolsInput
Auto Trait Implementations§
impl Freeze for DescribeWorkspacesPoolsInput
impl RefUnwindSafe for DescribeWorkspacesPoolsInput
impl Send for DescribeWorkspacesPoolsInput
impl Sync for DescribeWorkspacesPoolsInput
impl Unpin for DescribeWorkspacesPoolsInput
impl UnwindSafe for DescribeWorkspacesPoolsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more