Struct aws_sdk_connect::operation::update_traffic_distribution::UpdateTrafficDistributionInput
source · #[non_exhaustive]pub struct UpdateTrafficDistributionInput {
pub id: Option<String>,
pub telephony_config: Option<TelephonyConfig>,
pub sign_in_config: Option<SignInConfig>,
pub agent_config: Option<AgentConfig>,
}
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.id: Option<String>
The identifier of the traffic distribution group. This can be the ID or the ARN if the API is being called in the Region where the traffic distribution group was created. The ARN must be provided if the call is from the replicated Region.
telephony_config: Option<TelephonyConfig>
The distribution of traffic between the instance and its replica(s).
sign_in_config: Option<SignInConfig>
The distribution that determines which Amazon Web Services Regions should be used to sign in agents in to both the instance and its replica(s).
agent_config: Option<AgentConfig>
The distribution of agents between the instance and its replica(s).
Implementations§
source§impl UpdateTrafficDistributionInput
impl UpdateTrafficDistributionInput
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The identifier of the traffic distribution group. This can be the ID or the ARN if the API is being called in the Region where the traffic distribution group was created. The ARN must be provided if the call is from the replicated Region.
sourcepub fn telephony_config(&self) -> Option<&TelephonyConfig>
pub fn telephony_config(&self) -> Option<&TelephonyConfig>
The distribution of traffic between the instance and its replica(s).
sourcepub fn sign_in_config(&self) -> Option<&SignInConfig>
pub fn sign_in_config(&self) -> Option<&SignInConfig>
The distribution that determines which Amazon Web Services Regions should be used to sign in agents in to both the instance and its replica(s).
sourcepub fn agent_config(&self) -> Option<&AgentConfig>
pub fn agent_config(&self) -> Option<&AgentConfig>
The distribution of agents between the instance and its replica(s).
source§impl UpdateTrafficDistributionInput
impl UpdateTrafficDistributionInput
sourcepub fn builder() -> UpdateTrafficDistributionInputBuilder
pub fn builder() -> UpdateTrafficDistributionInputBuilder
Creates a new builder-style object to manufacture UpdateTrafficDistributionInput
.
Trait Implementations§
source§impl Clone for UpdateTrafficDistributionInput
impl Clone for UpdateTrafficDistributionInput
source§fn clone(&self) -> UpdateTrafficDistributionInput
fn clone(&self) -> UpdateTrafficDistributionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateTrafficDistributionInput
impl PartialEq for UpdateTrafficDistributionInput
source§fn eq(&self, other: &UpdateTrafficDistributionInput) -> bool
fn eq(&self, other: &UpdateTrafficDistributionInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateTrafficDistributionInput
Auto Trait Implementations§
impl Freeze for UpdateTrafficDistributionInput
impl RefUnwindSafe for UpdateTrafficDistributionInput
impl Send for UpdateTrafficDistributionInput
impl Sync for UpdateTrafficDistributionInput
impl Unpin for UpdateTrafficDistributionInput
impl UnwindSafe for UpdateTrafficDistributionInput
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