Module Values.AttachmentItemSource

The case-insensitive input to indicate standard MIME type that describes the format of the file that will be uploaded.

Sourcetype nonrec t = {
  1. contentType : 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.

    *)
  2. attachmentId : ArtifactId.t option;
    (*

    A unique identifier for the attachment.

    *)
  3. attachmentName : AttachmentName.t option;
    (*

    A case-sensitive name of the attachment being uploaded.

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

    Status of the attachment.

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