Module Values.DeleteMessageRequestSource

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

    The URL of the Amazon SQS queue from which messages are deleted. Queue URLs and names are case-sensitive.

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

    The receipt handle associated with the message to delete.

    *)
}
Sourceval context_ : string
Sourceval make : queueUrl: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