package aws-sqs

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. message_id : Aws.BaseTypes.String.t option;
  2. receipt_handle : Aws.BaseTypes.String.t option;
  3. m_d5_of_body : Aws.BaseTypes.String.t option;
  4. body : Aws.BaseTypes.String.t option;
  5. attributes : MessageSystemAttributeMap.t option;
  6. m_d5_of_message_attributes : Aws.BaseTypes.String.t option;
  7. 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