Module Values.MessageTemplateAttachmentSource

Information about the message template attachment.

Sourcetype nonrec t = {
  1. contentDisposition : ContentDisposition.t option;
    (*

    The presentation information for the attachment file.

    *)
  2. name : AttachmentFileName.t option;
    (*

    The name of the attachment file being uploaded. The name should include the file extension.

    *)
  3. uploadedTime : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the attachment file was uploaded.

    *)
  4. url : Url.t option;
    (*

    A pre-signed Amazon S3 URL that can be used to download the attachment file.

    *)
  5. urlExpiry : SyntheticTimestamp_date_time.t option;
    (*

    The expiration time of the pre-signed Amazon S3 URL.

    *)
  6. attachmentId : Uuid.t option;
    (*

    The identifier of the attachment file.

    *)
}
Sourceval make : ?contentDisposition:??? -> ?name:??? -> ?uploadedTime:??? -> ?url:??? -> ?urlExpiry:??? -> ?attachmentId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AttachmentFileName.t | `Timestamp of SyntheticTimestamp_date_time.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