Module Values.SourceSchemaSource

For a SQL-based Kinesis Data Analytics application, describes the format of the data in the streaming source, and how each data element maps to corresponding columns created in the in-application stream.

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

    Specifies the format of the records on the streaming source.

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

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

    *)
  3. recordColumns : RecordColumns.t;
    (*

    A list of RecordColumn objects.

    *)
}
Sourceval context_ : string
Sourceval make : ?recordEncoding:??? -> recordFormat:RecordFormat.t -> recordColumns:RecordColumns.t -> 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