Module Values.OutputSource

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

Sourcetype nonrec t = {
  1. name : InAppStreamName.t;
    (*

    Name of the in-application stream.

    *)
  2. kinesisStreamsOutput : KinesisStreamsOutput.t option;
    (*

    Identifies an Amazon Kinesis stream as the destination.

    *)
  3. kinesisFirehoseOutput : KinesisFirehoseOutput.t option;
    (*

    Identifies an Amazon Kinesis Firehose delivery stream as the destination.

    *)
  4. lambdaOutput : LambdaOutput.t option;
    (*

    Identifies an AWS Lambda function as the destination.

    *)
  5. destinationSchema : DestinationSchema.t;
    (*

    Describes the data format when records are written to the destination. For more information, see Configuring Application Output.

    *)
}
Sourceval context_ : string
Sourceval make : ?kinesisStreamsOutput:??? -> ?kinesisFirehoseOutput:??? -> ?lambdaOutput:??? -> name:InAppStreamName.t -> destinationSchema:DestinationSchema.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of InAppStreamName.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