Module Values.InputSchemaUpdateSource

Describes updates for an SQL-based Kinesis Data Analytics application's input schema.

Sourcetype nonrec t = {
  1. recordFormatUpdate : RecordFormat.t option;
    (*

    Specifies the format of the records on the streaming source.

    *)
  2. recordEncodingUpdate : RecordEncoding.t option;
    (*

    Specifies the encoding of the records in the streaming source; for example, UTF-8.

    *)
  3. recordColumnUpdates : RecordColumns.t option;
    (*

    A list of RecordColumn objects. Each object describes the mapping of the streaming source element to the corresponding column in the in-application stream.

    *)
}
Sourceval make : ?recordFormatUpdate:??? -> ?recordEncodingUpdate:??? -> ?recordColumnUpdates:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of RecordColumnName.t ]) list ] list | `String of RecordEncoding.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `String of RecordRowPath.t ]) list ]) 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