Module Values_2.NewSessionDetailsSource

Payload of chat properties to apply when starting a new contact.

Sourcetype nonrec t = {
  1. supportedMessagingContentTypes : SupportedMessagingContentTypes.t option;
    (*

    The supported chat message content types. Supported types are text/plain, text/markdown, application/json, application/vnd.amazonaws.connect.message.interactive, and application/vnd.amazonaws.connect.message.interactive.response. Content types must always contain text/plain. You can then put any other supported type in the list. For example, all the following lists are valid because they contain text/plain: [text/plain, text/markdown, application/json], [text/markdown, text/plain], [text/plain, application/json, application/vnd.amazonaws.connect.message.interactive.response].

    *)
  2. participantDetails : ParticipantDetails.t option;
  3. attributes : Values_0.Attributes.t option;
    (*

    A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes. They can be accessed in 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.

    *)
  4. streamingConfiguration : Values_0.ChatStreamingConfiguration.t option;
}
Sourceval make : ?supportedMessagingContentTypes:??? -> ?participantDetails:??? -> ?attributes:??? -> ?streamingConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SupportedMessagingContentType.t ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `Structure of (string * [> `String of Values_0.DisplayName.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t