[][src]Struct rusoto_chime::AssociatePhoneNumbersWithVoiceConnectorRequest

pub struct AssociatePhoneNumbersWithVoiceConnectorRequest {
    pub e164_phone_numbers: Vec<String>,
    pub force_associate: Option<bool>,
    pub voice_connector_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 and removes any previously existing associations. If false, does not associate any phone numbers that have previously existing associations.

voice_connector_id: String

The Amazon Chime Voice Connector ID.

Trait Implementations

impl Clone for AssociatePhoneNumbersWithVoiceConnectorRequest[src]

impl Debug for AssociatePhoneNumbersWithVoiceConnectorRequest[src]

impl Default for AssociatePhoneNumbersWithVoiceConnectorRequest[src]

impl PartialEq<AssociatePhoneNumbersWithVoiceConnectorRequest> for AssociatePhoneNumbersWithVoiceConnectorRequest[src]

impl Serialize for AssociatePhoneNumbersWithVoiceConnectorRequest[src]

impl StructuralPartialEq for AssociatePhoneNumbersWithVoiceConnectorRequest[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.