[][src]Struct rusoto_connect::StartOutboundVoiceContactRequest

pub struct StartOutboundVoiceContactRequest {
    pub attributes: Option<HashMap<String, String>>,
    pub client_token: Option<String>,
    pub contact_flow_id: String,
    pub destination_phone_number: String,
    pub instance_id: String,
    pub queue_id: Option<String>,
    pub source_phone_number: Option<String>,
}

Fields

attributes: Option<HashMap<String, String>>

A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes, and can be accessed in contact flows just like any other contact attributes.

There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys can include only alphanumeric, dash, and underscore characters.

client_token: Option<String>

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. The token is valid for 7 days after creation. If a contact is already started, the contact ID is returned. If the contact is disconnected, a new contact is started.

contact_flow_id: String

The identifier of the contact flow for the outbound call.

destination_phone_number: String

The phone number of the customer, in E.164 format.

instance_id: String

The identifier of the Amazon Connect instance.

queue_id: Option<String>

The queue for the call. If you specify a queue, the phone displayed for caller ID is the phone number specified in the queue. If you do not specify a queue, the queue defined in the contact flow is used. If you do not specify a queue, you must specify a source phone number.

source_phone_number: Option<String>

The phone number associated with the Amazon Connect instance, in E.164 format. If you do not specify a source phone number, you must specify a queue.

Trait Implementations

impl Clone for StartOutboundVoiceContactRequest[src]

impl Debug for StartOutboundVoiceContactRequest[src]

impl Default for StartOutboundVoiceContactRequest[src]

impl PartialEq<StartOutboundVoiceContactRequest> for StartOutboundVoiceContactRequest[src]

impl Serialize for StartOutboundVoiceContactRequest[src]

impl StructuralPartialEq for StartOutboundVoiceContactRequest[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, 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> Sealed<T> for T where
    T: ?Sized

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.