#[non_exhaustive]pub struct RoutingProfileQueueConfigSummary {
pub queue_id: String,
pub queue_arn: String,
pub queue_name: String,
pub priority: i32,
pub delay: i32,
pub channel: Channel,
}
Expand description
Contains summary information about a routing profile queue.
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.queue_id: String
The identifier for the queue.
queue_arn: String
The Amazon Resource Name (ARN) of the queue.
queue_name: String
The name of the queue.
priority: i32
The order in which contacts are to be handled for the queue. For more information, see Queues: priority and delay.
delay: i32
The delay, in seconds, that a contact should be in the queue before they are routed to an available agent. For more information, see Queues: priority and delay in the Amazon Connect Administrator Guide.
channel: Channel
The channels this queue supports.
Implementations§
source§impl RoutingProfileQueueConfigSummary
impl RoutingProfileQueueConfigSummary
sourcepub fn queue_name(&self) -> &str
pub fn queue_name(&self) -> &str
The name of the queue.
sourcepub fn priority(&self) -> i32
pub fn priority(&self) -> i32
The order in which contacts are to be handled for the queue. For more information, see Queues: priority and delay.
sourcepub fn delay(&self) -> i32
pub fn delay(&self) -> i32
The delay, in seconds, that a contact should be in the queue before they are routed to an available agent. For more information, see Queues: priority and delay in the Amazon Connect Administrator Guide.
source§impl RoutingProfileQueueConfigSummary
impl RoutingProfileQueueConfigSummary
sourcepub fn builder() -> RoutingProfileQueueConfigSummaryBuilder
pub fn builder() -> RoutingProfileQueueConfigSummaryBuilder
Creates a new builder-style object to manufacture RoutingProfileQueueConfigSummary
.
Trait Implementations§
source§impl Clone for RoutingProfileQueueConfigSummary
impl Clone for RoutingProfileQueueConfigSummary
source§fn clone(&self) -> RoutingProfileQueueConfigSummary
fn clone(&self) -> RoutingProfileQueueConfigSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for RoutingProfileQueueConfigSummary
impl PartialEq for RoutingProfileQueueConfigSummary
source§fn eq(&self, other: &RoutingProfileQueueConfigSummary) -> bool
fn eq(&self, other: &RoutingProfileQueueConfigSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RoutingProfileQueueConfigSummary
Auto Trait Implementations§
impl Freeze for RoutingProfileQueueConfigSummary
impl RefUnwindSafe for RoutingProfileQueueConfigSummary
impl Send for RoutingProfileQueueConfigSummary
impl Sync for RoutingProfileQueueConfigSummary
impl Unpin for RoutingProfileQueueConfigSummary
impl UnwindSafe for RoutingProfileQueueConfigSummary
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