Module Values.OutputSource

Describes a SQL-based Kinesis Data Analytics application's output configuration, in which you identify an in-application stream and a destination where you want the in-application stream data to be written. The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.

Sourcetype nonrec t = {
  1. name : InAppStreamName.t;
    (*

    The name of the in-application stream.

    *)
  2. kinesisStreamsOutput : KinesisStreamsOutput.t option;
    (*

    Identifies a Kinesis data stream as the destination.

    *)
  3. kinesisFirehoseOutput : KinesisFirehoseOutput.t option;
    (*

    Identifies a Kinesis Data Firehose delivery stream as the destination.

    *)
  4. lambdaOutput : LambdaOutput.t option;
    (*

    Identifies an Amazon Lambda function as the destination.

    *)
  5. destinationSchema : DestinationSchema.t;
    (*

    Describes the data format when records are written to the destination.

    *)
}
Sourceval context_ : string
Sourceval make : ?kinesisStreamsOutput:??? -> ?kinesisFirehoseOutput:??? -> ?lambdaOutput:??? -> name:InAppStreamName.t -> destinationSchema:DestinationSchema.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of InAppStreamName.t | `Structure of (string * [> `Enum of string | `String of ResourceARN.t ]) 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