[][src]Struct rusoto_chime::AssociatePhoneNumbersWithVoiceConnectorGroupRequest

pub struct AssociatePhoneNumbersWithVoiceConnectorGroupRequest {
    pub e164_phone_numbers: Vec<String>,
    pub force_associate: Option<bool>,
    pub voice_connector_group_id: String,
}

Fields

e164_phone_numbers: Vec<String>

List of phone numbers, in E.164 format.

force_associate: Option<bool>

If true, associates the provided phone numbers with the provided Amazon Chime Voice Connector Group and removes any previously existing associations. If false, does not associate any phone numbers that have previously existing associations.

voice_connector_group_id: String

The Amazon Chime Voice Connector group ID.

Trait Implementations

impl Clone for AssociatePhoneNumbersWithVoiceConnectorGroupRequest[src]

impl Debug for AssociatePhoneNumbersWithVoiceConnectorGroupRequest[src]

impl Default for AssociatePhoneNumbersWithVoiceConnectorGroupRequest[src]

impl PartialEq<AssociatePhoneNumbersWithVoiceConnectorGroupRequest> for AssociatePhoneNumbersWithVoiceConnectorGroupRequest[src]

impl Serialize for AssociatePhoneNumbersWithVoiceConnectorGroupRequest[src]

impl StructuralPartialEq for AssociatePhoneNumbersWithVoiceConnectorGroupRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.