[][src]Struct aws_lambda_events::event::connect::ConnectContactData

pub struct ConnectContactData {
    pub attributes: HashMap<String, String>,
    pub channel: Option<String>,
    pub contact_id: Option<String>,
    pub customer_endpoint: ConnectEndpoint,
    pub initial_contact_id: Option<String>,
    pub initiation_method: Option<String>,
    pub previous_contact_id: Option<String>,
    pub queue: ConnectQueue,
    pub system_endpoint: ConnectEndpoint,
    pub instance_arn: Option<String>,
}

ConnectContactData holds all of the contact information for the user that invoked the Connect event.

Fields

attributes: HashMap<String, String>

The custom attributes from Connect that the Lambda function was invoked with.

channel: Option<String>contact_id: Option<String>customer_endpoint: ConnectEndpointinitial_contact_id: Option<String>initiation_method: Option<String>

Either: INBOUND/OUTBOUND/TRANSFER/CALLBACK

previous_contact_id: Option<String>queue: ConnectQueuesystem_endpoint: ConnectEndpointinstance_arn: Option<String>

Trait Implementations

impl PartialEq<ConnectContactData> for ConnectContactData[src]

impl Clone for ConnectContactData[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ConnectContactData[src]

impl Serialize for ConnectContactData[src]

impl<'de> Deserialize<'de> for ConnectContactData[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]