Module Values.OutputDescriptionSource

For 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.

Sourcetype nonrec t = {
  1. outputId : Id.t option;
    (*

    A unique identifier for the output configuration.

    *)
  2. name : InAppStreamName.t option;
    (*

    The name of the in-application stream that is configured as output.

    *)
  3. kinesisStreamsOutputDescription : KinesisStreamsOutputDescription.t option;
    (*

    Describes the Kinesis data stream that is configured as the destination where output is written.

    *)
  4. kinesisFirehoseOutputDescription : KinesisFirehoseOutputDescription.t option;
    (*

    Describes the Kinesis Data Firehose delivery stream that is configured as the destination where output is written.

    *)
  5. lambdaOutputDescription : LambdaOutputDescription.t option;
    (*

    Describes the Lambda function that is configured as the destination where output is written.

    *)
  6. destinationSchema : DestinationSchema.t option;
    (*

    The data format used for writing data to the destination.

    *)
}
Sourceval make : ?outputId:??? -> ?name:??? -> ?kinesisStreamsOutputDescription:??? -> ?kinesisFirehoseOutputDescription:??? -> ?lambdaOutputDescription:??? -> ?destinationSchema:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.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