Module Values.GraphSnapshotSummarySource

Details about a graph snapshot.

Sourcetype nonrec t = {
  1. id : SnapshotId.t option;
    (*

    The unique identifier of the graph snapshot.

    *)
  2. name : SnapshotName.t option;
    (*

    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. arn : String_.t option;
    (*

    The ARN of the graph snapshot.

    *)
  4. sourceGraphId : GraphId.t option;
    (*

    The graph identifier for the graph for which a snapshot is to be created.

    *)
  5. snapshotCreateTime : Timestamp.t option;
    (*

    The time when the snapshot was created.

    *)
  6. status : SnapshotStatus.t option;
    (*

    The status of the graph snapshot.

    *)
  7. kmsKeyIdentifier : KmsKeyArn.t option;
    (*

    The ID of the KMS key used to encrypt and decrypt the snapshot.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?sourceGraphId:??? -> ?snapshotCreateTime:??? -> ?status:??? -> ?kmsKeyIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SnapshotId.t | `Timestamp of Timestamp.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