#[non_exhaustive]pub struct ListUseCasesInput {
pub instance_id: Option<String>,
pub integration_association_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}Expand description
Provides summary information about the use cases for the specified integration association.
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.
integration_association_id: Option<String>The identifier for the integration association.
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 ListUseCasesInput
impl ListUseCasesInput
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 integration_association_id(&self) -> Option<&str>
pub fn integration_association_id(&self) -> Option<&str>
The identifier for the integration association.
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 ListUseCasesInput
impl ListUseCasesInput
sourcepub fn builder() -> ListUseCasesInputBuilder
pub fn builder() -> ListUseCasesInputBuilder
Creates a new builder-style object to manufacture ListUseCasesInput.
Trait Implementations§
source§impl Clone for ListUseCasesInput
impl Clone for ListUseCasesInput
source§fn clone(&self) -> ListUseCasesInput
fn clone(&self) -> ListUseCasesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListUseCasesInput
impl Debug for ListUseCasesInput
source§impl PartialEq for ListUseCasesInput
impl PartialEq for ListUseCasesInput
source§fn eq(&self, other: &ListUseCasesInput) -> bool
fn eq(&self, other: &ListUseCasesInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListUseCasesInput
Auto Trait Implementations§
impl Freeze for ListUseCasesInput
impl RefUnwindSafe for ListUseCasesInput
impl Send for ListUseCasesInput
impl Sync for ListUseCasesInput
impl Unpin for ListUseCasesInput
impl UnwindSafe for ListUseCasesInput
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> 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