Module MemoryDB.Cluster

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-cluster.html

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

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and endpoint = {
  1. address : string option;
  2. port : int option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-memorydb-cluster-endpoint.html

type properties = {
  1. num_replicas_per_shard : int option;
  2. description : string option;
  3. final_snapshot_name : string option;
  4. parameter_group_name : string option;
  5. snapshot_arns : string list option;
  6. port : int option;
  7. acl_name : string;
  8. snapshot_name : string option;
  9. num_shards : int option;
  10. tls_enabled : bool option;
  11. cluster_name : string;
  12. sns_topic_arn : string option;
  13. tags : tag list option;
  14. engine_version : string option;
  15. kms_key_id : string option;
  16. sns_topic_status : string option;
  17. subnet_group_name : string option;
  18. auto_minor_version_upgrade : bool option;
  19. security_group_ids : string list option;
  20. cluster_endpoint : endpoint option;
  21. snapshot_window : string option;
  22. snapshot_retention_limit : int option;
  23. data_tiering : string option;
  24. node_type : string;
  25. maintenance_window : string option;
}

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

val make_properties : ?num_replicas_per_shard:int -> ?description:string -> ?final_snapshot_name:string -> ?parameter_group_name:string -> ?snapshot_arns:string list -> ?port:int -> acl_name:string -> ?snapshot_name:string -> ?num_shards:int -> ?tls_enabled:bool -> cluster_name:string -> ?sns_topic_arn:string -> ?tags:tag list -> ?engine_version:string -> ?kms_key_id:string -> ?sns_topic_status:string -> ?subnet_group_name:string -> ?auto_minor_version_upgrade:bool -> ?security_group_ids:string list -> ?cluster_endpoint:endpoint -> ?snapshot_window:string -> ?snapshot_retention_limit:int -> ?data_tiering:string -> node_type:string -> ?maintenance_window:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_endpoint : ?address:string -> ?port:int -> unit -> endpoint
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_endpoint : endpoint -> [> `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. status : string;
  3. cluster_endpoint__address : string;
  4. cluster_endpoint__port : int;
  5. parameter_group_status : string;
  6. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string