Module Values.CdcSpecificationSource

The settings for the CDC stream of a table. For more information about CDC streams, see Working with change data capture (CDC) streams in Amazon Keyspaces in the Amazon Keyspaces Developer Guide.

Sourcetype nonrec t = {
  1. status : CdcStatus.t;
    (*

    The status of the CDC stream. You can enable or disable a stream for a table.

    *)
  2. viewType : ViewType.t option;
    (*

    The view type specifies the changes Amazon Keyspaces records for each changed row in the stream. After you create the stream, you can't make changes to this selection. The options are: NEW_AND_OLD_IMAGES - both versions of the row, before and after the change. This is the default. NEW_IMAGE - the version of the row after the change. OLD_IMAGE - the version of the row before the change. KEYS_ONLY - the partition and clustering keys of the row that was changed.

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

    The tags (key-value pairs) that you want to apply to the stream.

    *)
  4. propagateTags : CdcPropagateTags.t option;
    (*

    Specifies that the stream inherits the tags from the table.

    *)
}
Sourceval context_ : string
Sourceval make : ?viewType:??? -> ?tags:??? -> ?propagateTags:??? -> status:CdcStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list ]) 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