Module Types.Message
type t
=
{
message_id : Aws.BaseTypes.String.t option;
receipt_handle : Aws.BaseTypes.String.t option;
m_d5_of_body : Aws.BaseTypes.String.t option;
body : Aws.BaseTypes.String.t option;
attributes : MessageSystemAttributeMap.t option;
m_d5_of_message_attributes : Aws.BaseTypes.String.t option;
message_attributes : MessageBodyAttributeMap.t option;
}
val make : ?message_id:Aws.BaseTypes.String.t -> ?receipt_handle:Aws.BaseTypes.String.t -> ?m_d5_of_body:Aws.BaseTypes.String.t -> ?body:Aws.BaseTypes.String.t -> ?attributes:MessageSystemAttributeMap.t -> ?m_d5_of_message_attributes:Aws.BaseTypes.String.t -> ?message_attributes:MessageBodyAttributeMap.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t