Module NeptuneGraph.Graph

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-graph.html

type vector_search_configuration = {
  1. vector_search_dimension : int;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptunegraph-graph-vectorsearchconfiguration.html

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

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

type properties = {
  1. public_connectivity : bool option;
  2. graph_name : string option;
  3. replica_count : int option;
  4. provisioned_memory : int;
  5. deletion_protection : bool option;
  6. vector_search_configuration : vector_search_configuration option;
  7. tags : tag list option;
}

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

val make_properties : ?public_connectivity:bool -> ?graph_name:string -> ?replica_count:int -> provisioned_memory:int -> ?deletion_protection:bool -> ?vector_search_configuration:vector_search_configuration -> ?tags:tag list -> unit -> properties
val make_vector_search_configuration : vector_search_dimension:int -> unit -> vector_search_configuration
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_vector_search_configuration : vector_search_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
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. graph_arn : string;
  4. graph_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string