[][src]Struct rusoto_connect::UpdateContactAttributesRequest

pub struct UpdateContactAttributesRequest {
    pub attributes: HashMap<String, String>,
    pub initial_contact_id: String,
    pub instance_id: String,
}

Fields

attributes: HashMap<String, String>

The Amazon Connect attributes. These attributes can be accessed in contact flows just like any other contact attributes.

You can have up to 32,768 UTF-8 bytes across all attributes for a contact. Attribute keys can include only alphanumeric, dash, and underscore characters.

initial_contact_id: String

The identifier of the contact. This is the identifier of the contact associated with the first interaction with the contact center.

instance_id: String

The identifier of the Amazon Connect instance.

Trait Implementations

impl Clone for UpdateContactAttributesRequest[src]

impl Debug for UpdateContactAttributesRequest[src]

impl Default for UpdateContactAttributesRequest[src]

impl PartialEq<UpdateContactAttributesRequest> for UpdateContactAttributesRequest[src]

impl Serialize for UpdateContactAttributesRequest[src]

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