Module Values.GetAttachmentRequestSource

Provides a pre-signed URL for download of a completed attachment. This is an asynchronous API for use with active contacts. For security recommendations, see Amazon Connect Chat security best practices. The participant role CUSTOM_BOT is not permitted to access attachments customers may upload. An AccessDeniedException can indicate that the participant may be a CUSTOM_BOT, and it doesn't have access to attachments. ConnectionToken is used for invoking this API instead of ParticipantToken. The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.

Sourcetype nonrec t = {
  1. attachmentId : ArtifactId.t;
    (*

    A unique identifier for the attachment.

    *)
  2. connectionToken : ParticipantToken.t;
    (*

    The authentication token associated with the participant's connection.

    *)
  3. urlExpiryInSeconds : URLExpiryInSeconds.t option;
    (*

    The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

    *)
}
Sourceval context_ : string
Sourceval make : ?urlExpiryInSeconds:??? -> attachmentId:ArtifactId.t -> connectionToken:ParticipantToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of URLExpiryInSeconds.t | `String of ArtifactId.t ]) 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