TopicRuleFirehoseAction

data class TopicRuleFirehoseAction(val batchMode: Boolean? = null, val deliveryStreamName: String, val roleArn: String, val separator: String? = null)

Constructors

Link copied to clipboard
constructor(batchMode: Boolean? = null, deliveryStreamName: String, roleArn: String, separator: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val batchMode: Boolean? = null

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.

Link copied to clipboard

The delivery stream name.

Link copied to clipboard

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

Link copied to clipboard
val separator: String? = null

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