Values.OutputSourceDescribes application 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 an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream. For limits on how many destinations an application can write and other limitations, see Limits.
type nonrec t = {name : InAppStreamName.t;Name of the in-application stream.
*)kinesisStreamsOutput : KinesisStreamsOutput.t option;Identifies an Amazon Kinesis stream as the destination.
*)kinesisFirehoseOutput : KinesisFirehoseOutput.t option;Identifies an Amazon Kinesis Firehose delivery stream as the destination.
*)lambdaOutput : LambdaOutput.t option;Identifies an AWS Lambda function as the destination.
*)destinationSchema : DestinationSchema.t;Describes the data format when records are written to the destination. For more information, see Configuring Application Output.
*)}val make :
?kinesisStreamsOutput:??? ->
?kinesisFirehoseOutput:??? ->
?lambdaOutput:??? ->
name:InAppStreamName.t ->
destinationSchema:DestinationSchema.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of InAppStreamName.t
| `Structure of
(string * [> `Enum of string | `String of ResourceARN.t ]) list ])
list ]