Struct aws_sdk_connect::types::RoutingCriteriaInput
source · #[non_exhaustive]pub struct RoutingCriteriaInput {
pub steps: Option<Vec<RoutingCriteriaInputStep>>,
}Expand description
An object to define the RoutingCriteria.
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.steps: Option<Vec<RoutingCriteriaInputStep>>When Amazon Connect does not find an available agent meeting the requirements in a step for a given step duration, the routing criteria will move on to the next step sequentially until a join is completed with an agent. When all steps are exhausted, the contact will be offered to any agent in the queue.
Implementations§
source§impl RoutingCriteriaInput
impl RoutingCriteriaInput
sourcepub fn steps(&self) -> &[RoutingCriteriaInputStep]
pub fn steps(&self) -> &[RoutingCriteriaInputStep]
When Amazon Connect does not find an available agent meeting the requirements in a step for a given step duration, the routing criteria will move on to the next step sequentially until a join is completed with an agent. When all steps are exhausted, the contact will be offered to any agent in 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 .steps.is_none().
source§impl RoutingCriteriaInput
impl RoutingCriteriaInput
sourcepub fn builder() -> RoutingCriteriaInputBuilder
pub fn builder() -> RoutingCriteriaInputBuilder
Creates a new builder-style object to manufacture RoutingCriteriaInput.
Trait Implementations§
source§impl Clone for RoutingCriteriaInput
impl Clone for RoutingCriteriaInput
source§fn clone(&self) -> RoutingCriteriaInput
fn clone(&self) -> RoutingCriteriaInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for RoutingCriteriaInput
impl Debug for RoutingCriteriaInput
source§impl PartialEq for RoutingCriteriaInput
impl PartialEq for RoutingCriteriaInput
impl StructuralPartialEq for RoutingCriteriaInput
Auto Trait Implementations§
impl Freeze for RoutingCriteriaInput
impl RefUnwindSafe for RoutingCriteriaInput
impl Send for RoutingCriteriaInput
impl Sync for RoutingCriteriaInput
impl Unpin for RoutingCriteriaInput
impl UnwindSafe for RoutingCriteriaInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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