AWSConnectLatestSessionDetails

Objective-C

@interface AWSConnectLatestSessionDetails

Swift

class AWSConnectLatestSessionDetails

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

  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable attributes;

    Swift

    var attributes: [String : String]? { get set }
  • The customer’s details.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSConnectParticipantDetails *_Nullable participantDetails;

    Swift

    var participantDetails: AWSConnectParticipantDetails? { get set }
  • The streaming configuration, such as the Amazon SNS streaming endpoint.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSConnectChatStreamingConfiguration *_Nullable streamingConfiguration;

    Swift

    var streamingConfiguration: AWSConnectChatStreamingConfiguration? { get set }
  • 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].

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable supportedMessagingContentTypes;

    Swift

    var supportedMessagingContentTypes: [String]? { get set }