Module Values.GetGraphSnapshotOutputSource

Retrieves a specified 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.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?sourceGraphId:??? -> ?snapshotCreateTime:??? -> ?status:??? -> ?kmsKeyIdentifier:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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