Values.OutputDescriptionSourceFor a SQL-based Kinesis Data Analytics application, describes the application output configuration, which includes the in-application stream name and the destination where the stream data is written. The destination can be a Kinesis data stream or a Kinesis Data Firehose delivery stream.
type nonrec t = {outputId : Id.t option;A unique identifier for the output configuration.
*)name : InAppStreamName.t option;The name of the in-application stream that is configured as output.
*)kinesisStreamsOutputDescription : KinesisStreamsOutputDescription.t option;Describes the Kinesis data stream that is configured as the destination where output is written.
*)kinesisFirehoseOutputDescription : KinesisFirehoseOutputDescription.t option;Describes the Kinesis Data Firehose delivery stream that is configured as the destination where output is written.
*)lambdaOutputDescription : LambdaOutputDescription.t option;Describes the Lambda function that is configured as the destination where output is written.
*)destinationSchema : DestinationSchema.t option;The data format used for writing data to the destination.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `String of Id.t
| `Structure of
(string * [> `Enum of string | `String of ResourceARN.t ]) list ])
list ]