Module Values.DeleteMessageBatchRequestEntrySource

Encloses a receipt handle and an identifier for it.

Sourcetype nonrec t = {
  1. id : String_.t;
    (*

    The identifier for this particular receipt handle. This is used to communicate the result. The Ids of a batch request need to be unique within a request. This identifier can have up to 80 characters. The following characters are accepted: alphanumeric characters, hyphens(-), and underscores (_).

    *)
  2. receiptHandle : String_.t;
    (*

    A receipt handle.

    *)
}
Sourceval context_ : string
Sourceval make : id:String_.t -> receiptHandle:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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