Module Values.FirehoseActionSource

Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.

Sourcetype nonrec t = {
  1. deliveryStreamName : DeliveryStreamName.t;
    (*

    The name of the Kinesis Data Firehose delivery stream where the data is written.

    *)
  2. separator : FirehoseSeparator.t option;
    (*

    A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: '\n' (newline), '\t' (tab), '\r\n' (Windows newline), ',' (comma).

    *)
  3. payload : Payload.t option;
    (*

    You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.

    *)
}
Sourceval context_ : string
Sourceval make : ?separator:??? -> ?payload:??? -> deliveryStreamName:DeliveryStreamName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DeliveryStreamName.t | `Structure of (string * [> `Enum of string | `String of ContentExpression.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