pub struct RoutingProfileQueueConfigSummary {
pub channel: String,
pub delay: i64,
pub priority: i64,
pub queue_arn: String,
pub queue_id: String,
pub queue_name: String,
}
Expand description
Contains summary information about a routing profile queue.
Fields§
§channel: String
The channels this queue supports.
delay: i64
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.
priority: i64
The order in which contacts are to be handled for the queue. For more information, see Queues: priority and delay.
queue_arn: String
The Amazon Resource Name (ARN) of the queue.
queue_id: String
The identifier for the queue.
queue_name: String
The name of the queue.
Trait Implementations§
Source§impl Clone for RoutingProfileQueueConfigSummary
impl Clone for RoutingProfileQueueConfigSummary
Source§fn clone(&self) -> RoutingProfileQueueConfigSummary
fn clone(&self) -> RoutingProfileQueueConfigSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for RoutingProfileQueueConfigSummary
impl Default for RoutingProfileQueueConfigSummary
Source§fn default() -> RoutingProfileQueueConfigSummary
fn default() -> RoutingProfileQueueConfigSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoutingProfileQueueConfigSummary
impl<'de> Deserialize<'de> for RoutingProfileQueueConfigSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RoutingProfileQueueConfigSummary
impl PartialEq for RoutingProfileQueueConfigSummary
Source§fn eq(&self, other: &RoutingProfileQueueConfigSummary) -> bool
fn eq(&self, other: &RoutingProfileQueueConfigSummary) -> bool
Tests for
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
Mutably borrows from an owned value. Read more