Module Values.ResetGraphInputSource

Empties the data from a specified Neptune Analytics graph.

Sourcetype nonrec t = {
  1. graphIdentifier : GraphIdentifier.t;
    (*

    ID of the graph to reset.

    *)
  2. skipSnapshot : Boolean.t;
    (*

    Determines whether a final graph snapshot is created before the graph data is deleted. If set to true, no graph snapshot is created. If set to false, a graph snapshot is created before the data is deleted.

    *)
}
Sourceval context_ : string
Sourceval make : graphIdentifier:GraphIdentifier.t -> skipSnapshot:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of GraphIdentifier.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t