#[non_exhaustive]pub struct GetTrafficDistributionOutput {
pub telephony_config: Option<TelephonyConfig>,
pub id: Option<String>,
pub arn: Option<String>,
pub sign_in_config: Option<SignInConfig>,
pub agent_config: Option<AgentConfig>,
/* private fields */
}
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.telephony_config: Option<TelephonyConfig>
The distribution of traffic between the instance and its replicas.
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.
arn: Option<String>
The Amazon Resource Name (ARN) of the traffic distribution group.
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 GetTrafficDistributionOutput
impl GetTrafficDistributionOutput
sourcepub fn telephony_config(&self) -> Option<&TelephonyConfig>
pub fn telephony_config(&self) -> Option<&TelephonyConfig>
The distribution of traffic between the instance and its replicas.
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 arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the traffic distribution group.
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 GetTrafficDistributionOutput
impl GetTrafficDistributionOutput
sourcepub fn builder() -> GetTrafficDistributionOutputBuilder
pub fn builder() -> GetTrafficDistributionOutputBuilder
Creates a new builder-style object to manufacture GetTrafficDistributionOutput
.
Trait Implementations§
source§impl Clone for GetTrafficDistributionOutput
impl Clone for GetTrafficDistributionOutput
source§fn clone(&self) -> GetTrafficDistributionOutput
fn clone(&self) -> GetTrafficDistributionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetTrafficDistributionOutput
impl Debug for GetTrafficDistributionOutput
source§impl PartialEq for GetTrafficDistributionOutput
impl PartialEq for GetTrafficDistributionOutput
source§fn eq(&self, other: &GetTrafficDistributionOutput) -> bool
fn eq(&self, other: &GetTrafficDistributionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetTrafficDistributionOutput
impl RequestId for GetTrafficDistributionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetTrafficDistributionOutput
Auto Trait Implementations§
impl Freeze for GetTrafficDistributionOutput
impl RefUnwindSafe for GetTrafficDistributionOutput
impl Send for GetTrafficDistributionOutput
impl Sync for GetTrafficDistributionOutput
impl Unpin for GetTrafficDistributionOutput
impl UnwindSafe for GetTrafficDistributionOutput
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