#[non_exhaustive]pub struct UpdateAgentStatusInput {
pub instance_id: Option<String>,
pub agent_status_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub state: Option<AgentStatusState>,
pub display_order: Option<i32>,
pub reset_order_number: Option<bool>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
agent_status_id: Option<String>
The identifier of the agent status.
name: Option<String>
The name of the agent status.
description: Option<String>
The description of the agent status.
state: Option<AgentStatusState>
The state of the agent status.
display_order: Option<i32>
The display order of the agent status.
reset_order_number: Option<bool>
A number indicating the reset order of the agent status.
Implementations§
source§impl UpdateAgentStatusInput
impl UpdateAgentStatusInput
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 agent_status_id(&self) -> Option<&str>
pub fn agent_status_id(&self) -> Option<&str>
The identifier of the agent status.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the agent status.
sourcepub fn state(&self) -> Option<&AgentStatusState>
pub fn state(&self) -> Option<&AgentStatusState>
The state of the agent status.
sourcepub fn display_order(&self) -> Option<i32>
pub fn display_order(&self) -> Option<i32>
The display order of the agent status.
sourcepub fn reset_order_number(&self) -> Option<bool>
pub fn reset_order_number(&self) -> Option<bool>
A number indicating the reset order of the agent status.
source§impl UpdateAgentStatusInput
impl UpdateAgentStatusInput
sourcepub fn builder() -> UpdateAgentStatusInputBuilder
pub fn builder() -> UpdateAgentStatusInputBuilder
Creates a new builder-style object to manufacture UpdateAgentStatusInput
.
Trait Implementations§
source§impl Clone for UpdateAgentStatusInput
impl Clone for UpdateAgentStatusInput
source§fn clone(&self) -> UpdateAgentStatusInput
fn clone(&self) -> UpdateAgentStatusInput
Returns a copy 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 Debug for UpdateAgentStatusInput
impl Debug for UpdateAgentStatusInput
source§impl PartialEq for UpdateAgentStatusInput
impl PartialEq for UpdateAgentStatusInput
source§fn eq(&self, other: &UpdateAgentStatusInput) -> bool
fn eq(&self, other: &UpdateAgentStatusInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateAgentStatusInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateAgentStatusInput
impl Send for UpdateAgentStatusInput
impl Sync for UpdateAgentStatusInput
impl Unpin for UpdateAgentStatusInput
impl UnwindSafe for UpdateAgentStatusInput
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
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>
Creates a shared type from an unshared type.