Module Values.SqlApplicationConfigurationSource

Describes the inputs, outputs, and reference data sources for a SQL-based Kinesis Data Analytics application.

Sourcetype nonrec t = {
  1. inputs : Inputs.t option;
    (*

    The array of Input objects describing the input streams used by the application.

    *)
  2. outputs : Outputs.t option;
    (*

    The array of Output objects describing the destination streams used by the application.

    *)
  3. referenceDataSources : ReferenceDataSources.t option;
    (*

    The array of ReferenceDataSource objects describing the reference data sources used by the application.

    *)
}
Sourceval make : ?inputs:??? -> ?outputs:??? -> ?referenceDataSources:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of InAppStreamName.t | `Structure of (string * [> `Enum of string | `Integer of InputParallelismCount.t | `List of [> `Structure of (string * [> `String of RecordColumnName.t ]) list ] list | `String of ResourceARN.t | `Structure of (string * [> `Enum of string | `String of ResourceARN.t | `Structure of (string * [> `Structure of (string * [> `String of RecordRowPath.t ]) list ]) list ]) list ]) 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