package aws-sqs

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. string_value : Aws.BaseTypes.String.t option;
  2. binary_value : Aws.BaseTypes.Blob.t option;
  3. string_list_values : StringList.t;
  4. binary_list_values : BinaryList.t;
  5. data_type : Aws.BaseTypes.String.t;
}
val make : ?string_value:Aws.BaseTypes.String.t -> ?binary_value:Aws.BaseTypes.Blob.t -> ?string_list_values:StringList.t -> ?binary_list_values:BinaryList.t -> data_type: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