#[non_exhaustive]pub struct CreateUseCaseInput {
pub instance_id: Option<String>,
pub integration_association_id: Option<String>,
pub use_case_type: Option<UseCaseType>,
pub tags: Option<HashMap<String, 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.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.
use_case_type: Option<UseCaseType>
The type of use case to associate to the integration association. Each integration association can have only one of each use case type.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
Implementations§
source§impl CreateUseCaseInput
impl CreateUseCaseInput
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 use_case_type(&self) -> Option<&UseCaseType>
pub fn use_case_type(&self) -> Option<&UseCaseType>
The type of use case to associate to the integration association. Each integration association can have only one of each use case type.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
source§impl CreateUseCaseInput
impl CreateUseCaseInput
sourcepub fn builder() -> CreateUseCaseInputBuilder
pub fn builder() -> CreateUseCaseInputBuilder
Creates a new builder-style object to manufacture CreateUseCaseInput
.
Trait Implementations§
source§impl Clone for CreateUseCaseInput
impl Clone for CreateUseCaseInput
source§fn clone(&self) -> CreateUseCaseInput
fn clone(&self) -> CreateUseCaseInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateUseCaseInput
impl Debug for CreateUseCaseInput
source§impl PartialEq for CreateUseCaseInput
impl PartialEq for CreateUseCaseInput
source§fn eq(&self, other: &CreateUseCaseInput) -> bool
fn eq(&self, other: &CreateUseCaseInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateUseCaseInput
Auto Trait Implementations§
impl Freeze for CreateUseCaseInput
impl RefUnwindSafe for CreateUseCaseInput
impl Send for CreateUseCaseInput
impl Sync for CreateUseCaseInput
impl Unpin for CreateUseCaseInput
impl UnwindSafe for CreateUseCaseInput
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