Module Values.StreamSource

Represents a change data capture stream for an Amazon Keyspaces table, which enables tracking and processing of data changes.

Sourcetype nonrec t = {
  1. streamArn : StreamArn.t option;
    (*

    The Amazon Resource Name (ARN) that uniquely identifies this stream.

    *)
  2. keyspaceName : KeyspaceName.t option;
    (*

    The name of the keyspace containing the table associated with this stream.

    *)
  3. tableName : TableName.t option;
    (*

    The name of the table associated with this stream.

    *)
  4. streamLabel : String_.t option;
    (*

    A unique identifier for this stream that can be used in stream operations.

    *)
}
Sourceval make : ?streamArn:??? -> ?keyspaceName:??? -> ?tableName:??? -> ?streamLabel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StreamArn.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