SQS.Queue
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {
receive_message_wait_time_seconds : int option;
fifo_throughput_limit : string option;
kms_master_key_id : string option;
fifo_queue : bool option;
maximum_message_size : int option;
visibility_timeout : int option;
kms_data_key_reuse_period_seconds : int option;
redrive_allow_policy : Yojson.Safe.t option;
sqs_managed_sse_enabled : bool option;
delay_seconds : int option;
redrive_policy : Yojson.Safe.t option;
message_retention_period : int option;
deduplication_scope : string option;
content_based_deduplication : bool option;
queue_name : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html;
val make_properties :
?receive_message_wait_time_seconds:int ->
?fifo_throughput_limit:string ->
?kms_master_key_id:string ->
?fifo_queue:bool ->
?maximum_message_size:int ->
?visibility_timeout:int ->
?kms_data_key_reuse_period_seconds:int ->
?redrive_allow_policy:Yojson.Safe.t ->
?sqs_managed_sse_enabled:bool ->
?delay_seconds:int ->
?redrive_policy:Yojson.Safe.t ->
?message_retention_period:int ->
?deduplication_scope:string ->
?content_based_deduplication:bool ->
?queue_name:string ->
?tags:tag list ->
unit ->
properties
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes