Module Values.SnapshotDetailsSource

Provides details about a snapshot of application state.

Sourcetype nonrec t = {
  1. snapshotName : SnapshotName.t option;
    (*

    The identifier for the application snapshot.

    *)
  2. snapshotStatus : SnapshotStatus.t option;
    (*

    The status of the application snapshot.

    *)
  3. applicationVersionId : ApplicationVersionId.t option;
    (*

    The current application version ID when the snapshot was created.

    *)
  4. snapshotCreationTimestamp : Timestamp.t option;
    (*

    The timestamp of the application snapshot.

    *)
  5. runtimeEnvironment : RuntimeEnvironment.t option;
    (*

    The Flink Runtime for the application snapshot.

    *)
  6. applicationEncryptionConfigurationDescription : ApplicationEncryptionConfigurationDescription.t option;
    (*

    Specifies the encryption settings of data at rest for the application snapshot.

    *)
}
Sourceval make : ?snapshotName:??? -> ?snapshotStatus:??? -> ?applicationVersionId:??? -> ?snapshotCreationTimestamp:??? -> ?runtimeEnvironment:??? -> ?applicationEncryptionConfigurationDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of ApplicationVersionId.t | `String of SnapshotName.t | `Structure of (string * [> `Enum of string | `String of KeyId.t ]) list | `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