[][src]Struct rusoto_connect::StartChatContactRequest

pub struct StartChatContactRequest {
    pub attributes: Option<HashMap<String, String>>,
    pub client_token: Option<String>,
    pub contact_flow_id: String,
    pub initial_message: Option<ChatMessage>,
    pub instance_id: String,
    pub participant_details: ParticipantDetails,
}

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.

contact_flow_id: String

The identifier of the contact flow for the chat.

initial_message: Option<ChatMessage>

The initial message to be sent to the newly created chat.

instance_id: String

The identifier of the Amazon Connect instance.

participant_details: ParticipantDetails

Information identifying the participant.

Trait Implementations

impl Clone for StartChatContactRequest[src]

impl Debug for StartChatContactRequest[src]

impl Default for StartChatContactRequest[src]

impl PartialEq<StartChatContactRequest> for StartChatContactRequest[src]

impl Serialize for StartChatContactRequest[src]

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