Module DocDBElastic.Cluster

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

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

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

type properties = {
  1. admin_user_name : string;
  2. kms_key_id : string option;
  3. shard_capacity : int;
  4. vpc_security_group_ids : string list option;
  5. admin_user_password : string option;
  6. preferred_maintenance_window : string option;
  7. cluster_name : string;
  8. auth_type : string;
  9. subnet_ids : string list option;
  10. tags : tag list option;
  11. shard_count : int;
}

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

val make_properties : admin_user_name:string -> ?kms_key_id:string -> shard_capacity:int -> ?vpc_security_group_ids:string list -> ?admin_user_password:string -> ?preferred_maintenance_window:string -> cluster_name:string -> auth_type:string -> ?subnet_ids:string list -> ?tags:tag list -> shard_count:int -> 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 ]
type attributes = {
  1. ref_ : string;
  2. cluster_arn : string;
  3. cluster_endpoint : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string