Struct aws_sdk_connect::operation::update_contact_routing_data::UpdateContactRoutingDataInput
source · #[non_exhaustive]pub struct UpdateContactRoutingDataInput {
pub instance_id: Option<String>,
pub contact_id: Option<String>,
pub queue_time_adjustment_seconds: Option<i32>,
pub queue_priority: Option<i64>,
}
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.
contact_id: Option<String>
The identifier of the contact in this instance of Amazon Connect.
queue_time_adjustment_seconds: Option<i32>
The number of seconds to add or subtract from the contact's routing age. Contacts are routed to agents on a first-come, first-serve basis. This means that changing their amount of time in queue compared to others also changes their position in queue.
queue_priority: Option<i64>
Priority of the contact in the queue. The default priority for new contacts is 5. You can raise the priority of a contact compared to other contacts in the queue by assigning them a higher priority, such as 1 or 2.
Implementations§
source§impl UpdateContactRoutingDataInput
impl UpdateContactRoutingDataInput
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 contact_id(&self) -> Option<&str>
pub fn contact_id(&self) -> Option<&str>
The identifier of the contact in this instance of Amazon Connect.
sourcepub fn queue_time_adjustment_seconds(&self) -> Option<i32>
pub fn queue_time_adjustment_seconds(&self) -> Option<i32>
The number of seconds to add or subtract from the contact's routing age. Contacts are routed to agents on a first-come, first-serve basis. This means that changing their amount of time in queue compared to others also changes their position in queue.
sourcepub fn queue_priority(&self) -> Option<i64>
pub fn queue_priority(&self) -> Option<i64>
Priority of the contact in the queue. The default priority for new contacts is 5. You can raise the priority of a contact compared to other contacts in the queue by assigning them a higher priority, such as 1 or 2.
source§impl UpdateContactRoutingDataInput
impl UpdateContactRoutingDataInput
sourcepub fn builder() -> UpdateContactRoutingDataInputBuilder
pub fn builder() -> UpdateContactRoutingDataInputBuilder
Creates a new builder-style object to manufacture UpdateContactRoutingDataInput
.
Trait Implementations§
source§impl Clone for UpdateContactRoutingDataInput
impl Clone for UpdateContactRoutingDataInput
source§fn clone(&self) -> UpdateContactRoutingDataInput
fn clone(&self) -> UpdateContactRoutingDataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateContactRoutingDataInput
impl PartialEq for UpdateContactRoutingDataInput
source§fn eq(&self, other: &UpdateContactRoutingDataInput) -> bool
fn eq(&self, other: &UpdateContactRoutingDataInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateContactRoutingDataInput
Auto Trait Implementations§
impl Freeze for UpdateContactRoutingDataInput
impl RefUnwindSafe for UpdateContactRoutingDataInput
impl Send for UpdateContactRoutingDataInput
impl Sync for UpdateContactRoutingDataInput
impl Unpin for UpdateContactRoutingDataInput
impl UnwindSafe for UpdateContactRoutingDataInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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