Struct aws_sdk_connect::operation::create_queue::CreateQueueInput
source · #[non_exhaustive]pub struct CreateQueueInput {
pub instance_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub outbound_caller_config: Option<OutboundCallerConfig>,
pub hours_of_operation_id: Option<String>,
pub max_contacts: Option<i32>,
pub quick_connect_ids: Option<Vec<String>>,
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.
name: Option<String>
The name of the queue.
description: Option<String>
The description of the queue.
outbound_caller_config: Option<OutboundCallerConfig>
The outbound caller ID name, number, and outbound whisper flow.
hours_of_operation_id: Option<String>
The identifier for the hours of operation.
max_contacts: Option<i32>
The maximum number of contacts that can be in the queue before it is considered full.
quick_connect_ids: Option<Vec<String>>
The quick connects available to agents who are working the queue.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
Implementations§
source§impl CreateQueueInput
impl CreateQueueInput
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 description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the queue.
sourcepub fn outbound_caller_config(&self) -> Option<&OutboundCallerConfig>
pub fn outbound_caller_config(&self) -> Option<&OutboundCallerConfig>
The outbound caller ID name, number, and outbound whisper flow.
sourcepub fn hours_of_operation_id(&self) -> Option<&str>
pub fn hours_of_operation_id(&self) -> Option<&str>
The identifier for the hours of operation.
sourcepub fn max_contacts(&self) -> Option<i32>
pub fn max_contacts(&self) -> Option<i32>
The maximum number of contacts that can be in the queue before it is considered full.
sourcepub fn quick_connect_ids(&self) -> &[String]
pub fn quick_connect_ids(&self) -> &[String]
The quick connects available to agents who are working the queue.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .quick_connect_ids.is_none()
.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
source§impl CreateQueueInput
impl CreateQueueInput
sourcepub fn builder() -> CreateQueueInputBuilder
pub fn builder() -> CreateQueueInputBuilder
Creates a new builder-style object to manufacture CreateQueueInput
.
Trait Implementations§
source§impl Clone for CreateQueueInput
impl Clone for CreateQueueInput
source§fn clone(&self) -> CreateQueueInput
fn clone(&self) -> CreateQueueInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateQueueInput
impl Debug for CreateQueueInput
source§impl PartialEq for CreateQueueInput
impl PartialEq for CreateQueueInput
source§fn eq(&self, other: &CreateQueueInput) -> bool
fn eq(&self, other: &CreateQueueInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateQueueInput
Auto Trait Implementations§
impl Freeze for CreateQueueInput
impl RefUnwindSafe for CreateQueueInput
impl Send for CreateQueueInput
impl Sync for CreateQueueInput
impl Unpin for CreateQueueInput
impl UnwindSafe for CreateQueueInput
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