Module Values.OutputUpdateSource

For a SQL-based Kinesis Data Analytics application, describes updates to the output configuration identified by the OutputId.

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

    Identifies the specific output configuration that you want to update.

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

    If you want to specify a different in-application stream for this output configuration, use this field to specify the new in-application stream name.

    *)
  3. kinesisStreamsOutputUpdate : KinesisStreamsOutputUpdate.t option;
    (*

    Describes a Kinesis data stream as the destination for the output.

    *)
  4. kinesisFirehoseOutputUpdate : KinesisFirehoseOutputUpdate.t option;
    (*

    Describes a Kinesis Data Firehose delivery stream as the destination for the output.

    *)
  5. lambdaOutputUpdate : LambdaOutputUpdate.t option;
    (*

    Describes an Amazon Lambda function as the destination for the output.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?nameUpdate:??? -> ?kinesisStreamsOutputUpdate:??? -> ?kinesisFirehoseOutputUpdate:??? -> ?lambdaOutputUpdate:??? -> ?destinationSchemaUpdate:??? -> outputId:Id.t -> 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