Module Values.OutputDescriptionSource

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 an Amazon Kinesis stream or an Amazon Kinesis Firehose delivery stream.

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

    A unique identifier for the output configuration.

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

    Name of the in-application stream configured as output.

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

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

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

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

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

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

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

    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