package aws-sqs

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. id : Aws.BaseTypes.String.t;
  2. message_body : Aws.BaseTypes.String.t;
  3. delay_seconds : Aws.BaseTypes.Integer.t option;
  4. message_attributes : MessageBodyAttributeMap.t option;
  5. message_system_attributes : MessageBodySystemAttributeMap.t option;
  6. message_deduplication_id : Aws.BaseTypes.String.t option;
  7. message_group_id : Aws.BaseTypes.String.t option;
}
val make : id:Aws.BaseTypes.String.t -> message_body:Aws.BaseTypes.String.t -> ?delay_seconds:Aws.BaseTypes.Integer.t -> ?message_attributes:MessageBodyAttributeMap.t -> ?message_system_attributes:MessageBodySystemAttributeMap.t -> ?message_deduplication_id:Aws.BaseTypes.String.t -> ?message_group_id:Aws.BaseTypes.String.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