Module DocDB.DBCluster

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbcluster.html

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

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

type properties = {
  1. storage_encrypted : bool option;
  2. restore_to_time : string option;
  3. engine_version : string option;
  4. storage_type : string option;
  5. kms_key_id : string option;
  6. availability_zones : string list option;
  7. snapshot_identifier : string option;
  8. port : int option;
  9. db_cluster_identifier : string option;
  10. preferred_maintenance_window : string option;
  11. db_subnet_group_name : string option;
  12. deletion_protection : bool option;
  13. preferred_backup_window : string option;
  14. use_latest_restorable_time : bool option;
  15. master_user_password : string option;
  16. vpc_security_group_ids : string list option;
  17. source_db_cluster_identifier : string option;
  18. master_username : string option;
  19. db_cluster_parameter_group_name : string option;
  20. copy_tags_to_snapshot : bool option;
  21. backup_retention_period : int option;
  22. restore_type : string option;
  23. tags : tag list option;
  24. enable_cloudwatch_logs_exports : string list option;
}

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

val make_properties : ?storage_encrypted:bool -> ?restore_to_time:string -> ?engine_version:string -> ?storage_type:string -> ?kms_key_id:string -> ?availability_zones:string list -> ?snapshot_identifier:string -> ?port:int -> ?db_cluster_identifier:string -> ?preferred_maintenance_window:string -> ?db_subnet_group_name:string -> ?deletion_protection:bool -> ?preferred_backup_window:string -> ?use_latest_restorable_time:bool -> ?master_user_password:string -> ?vpc_security_group_ids:string list -> ?source_db_cluster_identifier:string -> ?master_username:string -> ?db_cluster_parameter_group_name:string -> ?copy_tags_to_snapshot:bool -> ?backup_retention_period:int -> ?restore_type:string -> ?tags:tag list -> ?enable_cloudwatch_logs_exports:string list -> unit -> properties
val make_tag : key:string -> value: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_resource_id : string;
  3. endpoint : string;
  4. port : string;
  5. read_endpoint : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string