Struct aws_sdk_connect::operation::search_users::SearchUsersInput
source · #[non_exhaustive]pub struct SearchUsersInput {
pub instance_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub search_filter: Option<UserSearchFilter>,
pub search_criteria: Option<UserSearchCriteria>,
}
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.instance_id: Option<String>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
InstanceID is a required field. The "Required: No" below is incorrect.
next_token: Option<String>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
max_results: Option<i32>
The maximum number of results to return per page.
search_filter: Option<UserSearchFilter>
Filters to be applied to search results.
search_criteria: Option<UserSearchCriteria>
The search criteria to be used to return users.
The name
and description
fields support "contains" queries with a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results.
Implementations§
source§impl SearchUsersInput
impl SearchUsersInput
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
InstanceID is a required field. The "Required: No" below is incorrect.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return per page.
sourcepub fn search_filter(&self) -> Option<&UserSearchFilter>
pub fn search_filter(&self) -> Option<&UserSearchFilter>
Filters to be applied to search results.
sourcepub fn search_criteria(&self) -> Option<&UserSearchCriteria>
pub fn search_criteria(&self) -> Option<&UserSearchCriteria>
The search criteria to be used to return users.
The name
and description
fields support "contains" queries with a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results.
source§impl SearchUsersInput
impl SearchUsersInput
sourcepub fn builder() -> SearchUsersInputBuilder
pub fn builder() -> SearchUsersInputBuilder
Creates a new builder-style object to manufacture SearchUsersInput
.
Trait Implementations§
source§impl Clone for SearchUsersInput
impl Clone for SearchUsersInput
source§fn clone(&self) -> SearchUsersInput
fn clone(&self) -> SearchUsersInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SearchUsersInput
impl Debug for SearchUsersInput
source§impl PartialEq for SearchUsersInput
impl PartialEq for SearchUsersInput
source§fn eq(&self, other: &SearchUsersInput) -> bool
fn eq(&self, other: &SearchUsersInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SearchUsersInput
Auto Trait Implementations§
impl Freeze for SearchUsersInput
impl RefUnwindSafe for SearchUsersInput
impl Send for SearchUsersInput
impl Sync for SearchUsersInput
impl Unpin for SearchUsersInput
impl UnwindSafe for SearchUsersInput
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