Module Values_2.RealTimeContactAnalysisAttachmentSource

Object that describes attached file.

Sourcetype nonrec t = {
  1. attachmentName : Values_0.AttachmentName.t option;
    (*

    A case-sensitive name of the attachment being uploaded. Can be redacted.

    *)
  2. contentType : Values_0.ContentType.t option;
    (*

    Describes the MIME file type of the attachment. For a list of supported file types, see Feature specifications in the Amazon Connect Administrator Guide.

    *)
  3. attachmentId : Values_0.ArtifactId.t option;
    (*

    A unique identifier for the attachment.

    *)
  4. status : Values_0.ArtifactStatus.t option;
    (*

    Status of the attachment.

    *)
}
Sourceval make : ?attachmentName:??? -> ?contentType:??? -> ?attachmentId:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.AttachmentName.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