Module Values_0.FirehoseActionSource

Describes an action that writes data to an Amazon Kinesis Firehose stream.

Sourcetype nonrec t = {
  1. roleArn : AwsArn.t;
    (*

    The IAM role that grants access to the Amazon Kinesis Firehose stream.

    *)
  2. deliveryStreamName : DeliveryStreamName.t;
    (*

    The delivery stream name.

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

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

    *)
  4. batchMode : BatchMode.t option;
    (*

    Whether to deliver the Kinesis Data Firehose stream as a batch by using PutRecordBatch . The default value is false. When batchMode is true and the rule's SQL statement evaluates to an Array, each Array element forms one record in the PutRecordBatch request. The resulting array can't have more than 500 records.

    *)
}
Sourceval context_ : string
Sourceval make : ?separator:??? -> ?batchMode:??? -> roleArn:AwsArn.t -> deliveryStreamName:DeliveryStreamName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BatchMode.t | `String of AwsArn.t ]) 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