Module AmazonMQ.Configuration

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html

type tags_entry = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-configuration-tagsentry.html

type properties = {
  1. engine_version : string;
  2. description : string option;
  3. authentication_strategy : string option;
  4. engine_type : string;
  5. data : string;
  6. tags : tags_entry list option;
  7. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html;

val make_properties : engine_version:string -> ?description:string -> ?authentication_strategy:string -> engine_type:string -> data:string -> ?tags:tags_entry list -> name:string -> unit -> properties
val make_tags_entry : value:string -> key:string -> unit -> tags_entry
val yojson_of_tags_entry : tags_entry -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. revision : int;
  3. id : string;
  4. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string