Module Neptune.DBInstance

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-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. db_parameter_group_name : string option;
  2. db_instance_class : string;
  3. allow_major_version_upgrade : bool option;
  4. db_cluster_identifier : string option;
  5. availability_zone : string option;
  6. preferred_maintenance_window : string option;
  7. auto_minor_version_upgrade : bool option;
  8. db_subnet_group_name : string option;
  9. db_instance_identifier : string option;
  10. db_snapshot_identifier : string option;
  11. tags : tag list option;
}

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

val make_properties : ?db_parameter_group_name:string -> db_instance_class:string -> ?allow_major_version_upgrade:bool -> ?db_cluster_identifier:string -> ?availability_zone:string -> ?preferred_maintenance_window:string -> ?auto_minor_version_upgrade:bool -> ?db_subnet_group_name:string -> ?db_instance_identifier:string -> ?db_snapshot_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