Module Values.DatabaseSnapshotInfoSource

The structure that describes the snapshot information of a table in source database endpoint that Firehose reads. Amazon Data Firehose is in preview release and is subject to change.

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

    The identifier of the current snapshot of the table in source database endpoint. Amazon Data Firehose is in preview release and is subject to change.

    *)
  2. table : DatabaseTableName.t option;
    (*

    The fully qualified name of the table in source database endpoint that Firehose reads. Amazon Data Firehose is in preview release and is subject to change.

    *)
  3. requestTimestamp : Timestamp.t option;
    (*

    The timestamp when the current snapshot is taken on the table. Amazon Data Firehose is in preview release and is subject to change.

    *)
  4. requestedBy : SnapshotRequestedBy.t option;
    (*

    The principal that sent the request to take the current snapshot on the table. Amazon Data Firehose is in preview release and is subject to change.

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

    The status of the current snapshot of the table. Amazon Data Firehose is in preview release and is subject to change.

    *)
  6. failureDescription : FailureDescription.t option;
}
Sourceval make : ?id:??? -> ?table:??? -> ?requestTimestamp:??? -> ?requestedBy:??? -> ?status:??? -> ?failureDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyStringWithoutWhitespace.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.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