Struct aws_sdk_connect::operation::update_traffic_distribution::UpdateTrafficDistributionInput
source · #[non_exhaustive]pub struct UpdateTrafficDistributionInput {
pub id: Option<String>,
pub telephony_config: Option<TelephonyConfig>,
}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.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).
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).
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
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 PartialEq<UpdateTrafficDistributionInput> for UpdateTrafficDistributionInput
impl PartialEq<UpdateTrafficDistributionInput> for UpdateTrafficDistributionInput
source§fn eq(&self, other: &UpdateTrafficDistributionInput) -> bool
fn eq(&self, other: &UpdateTrafficDistributionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateTrafficDistributionInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more