Module Values.CreateGraphSnapshotInputSource

Creates a snapshot of the specific graph.

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

    The unique identifier of the Neptune Analytics graph.

    *)
  2. snapshotName : SnapshotName.t;
    (*

    The snapshot name. For example: my-snapshot-1. The name must contain from 1 to 63 letters, numbers, or hyphens, and its first character must be a letter. It cannot end with a hyphen or contain two consecutive hyphens. Only lowercase letters are allowed.

    *)
  3. tags : TagMap.t option;
    (*

    Adds metadata tags to the new graph. These tags can also be used with cost allocation reporting, or used in a Condition statement in an IAM policy.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> graphIdentifier:GraphIdentifier.t -> snapshotName:SnapshotName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `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