#[non_exhaustive]pub struct GetCurrentUserDataInput {
    pub instance_id: Option<String>,
    pub filters: Option<UserDataFilters>,
    pub next_token: Option<String>,
    pub max_results: Option<i32>,
}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.
filters: Option<UserDataFilters>The filters to apply to returned user data. You can filter up to the following limits:
- 
Queues: 100 
- 
Routing profiles: 100 
- 
Agents: 100 
- 
Contact states: 9 
- 
User hierarchy groups: 1 
The user data is retrieved for only the specified values/resources in the filter. A maximum of one filter can be passed from queues, routing profiles, agents, and user hierarchy groups.
Currently tagging is only supported on the resources that are passed in the filter.
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.
Implementations§
source§impl GetCurrentUserDataInput
 
impl GetCurrentUserDataInput
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.
sourcepub fn filters(&self) -> Option<&UserDataFilters>
 
pub fn filters(&self) -> Option<&UserDataFilters>
The filters to apply to returned user data. You can filter up to the following limits:
- 
Queues: 100 
- 
Routing profiles: 100 
- 
Agents: 100 
- 
Contact states: 9 
- 
User hierarchy groups: 1 
The user data is retrieved for only the specified values/resources in the filter. A maximum of one filter can be passed from queues, routing profiles, agents, and user hierarchy groups.
Currently tagging is only supported on the resources that are passed in the filter.
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.
source§impl GetCurrentUserDataInput
 
impl GetCurrentUserDataInput
sourcepub fn builder() -> GetCurrentUserDataInputBuilder
 
pub fn builder() -> GetCurrentUserDataInputBuilder
Creates a new builder-style object to manufacture GetCurrentUserDataInput.
Trait Implementations§
source§impl Clone for GetCurrentUserDataInput
 
impl Clone for GetCurrentUserDataInput
source§fn clone(&self) -> GetCurrentUserDataInput
 
fn clone(&self) -> GetCurrentUserDataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetCurrentUserDataInput
 
impl Debug for GetCurrentUserDataInput
source§impl PartialEq for GetCurrentUserDataInput
 
impl PartialEq for GetCurrentUserDataInput
source§fn eq(&self, other: &GetCurrentUserDataInput) -> bool
 
fn eq(&self, other: &GetCurrentUserDataInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetCurrentUserDataInput
Auto Trait Implementations§
impl Freeze for GetCurrentUserDataInput
impl RefUnwindSafe for GetCurrentUserDataInput
impl Send for GetCurrentUserDataInput
impl Sync for GetCurrentUserDataInput
impl Unpin for GetCurrentUserDataInput
impl UnwindSafe for GetCurrentUserDataInput
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