Values_0.FirehoseActionSourceDescribes an action that writes data to an Amazon Kinesis Firehose stream.
type nonrec t = {roleArn : AwsArn.t;The IAM role that grants access to the Amazon Kinesis Firehose stream.
*)deliveryStreamName : DeliveryStreamName.t;The delivery stream name.
*)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).
*)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.
*)}val make :
?separator:??? ->
?batchMode:??? ->
roleArn:AwsArn.t ->
deliveryStreamName:DeliveryStreamName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of BatchMode.t | `String of AwsArn.t ]) list ]