Module DocDB.DBInstance

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbinstance.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. ca_certificate_identifier : string option;
  2. certificate_rotation_restart : bool option;
  3. db_instance_class : string;
  4. db_cluster_identifier : string;
  5. availability_zone : string option;
  6. preferred_maintenance_window : string option;
  7. enable_performance_insights : bool option;
  8. auto_minor_version_upgrade : bool option;
  9. db_instance_identifier : string option;
  10. tags : tag list option;
}

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

val make_properties : ?ca_certificate_identifier:string -> ?certificate_rotation_restart:bool -> db_instance_class:string -> db_cluster_identifier:string -> ?availability_zone:string -> ?preferred_maintenance_window:string -> ?enable_performance_insights:bool -> ?auto_minor_version_upgrade:bool -> ?db_instance_identifier:string -> ?tags:tag 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. endpoint : string;
  3. port : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string