Struct aws_sdk_iot::model::FirehoseAction
source · #[non_exhaustive]pub struct FirehoseAction { /* private fields */ }
Expand description
Describes an action that writes data to an Amazon Kinesis Firehose stream.
Implementations§
source§impl FirehoseAction
impl FirehoseAction
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The IAM role that grants access to the Amazon Kinesis Firehose stream.
sourcepub fn delivery_stream_name(&self) -> Option<&str>
pub fn delivery_stream_name(&self) -> Option<&str>
The delivery stream name.
sourcepub fn separator(&self) -> Option<&str>
pub fn separator(&self) -> Option<&str>
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).
sourcepub fn batch_mode(&self) -> Option<bool>
pub fn batch_mode(&self) -> Option<bool>
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.
source§impl FirehoseAction
impl FirehoseAction
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FirehoseAction
.
Trait Implementations§
source§impl Clone for FirehoseAction
impl Clone for FirehoseAction
source§fn clone(&self) -> FirehoseAction
fn clone(&self) -> FirehoseAction
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for FirehoseAction
impl Debug for FirehoseAction
source§impl PartialEq<FirehoseAction> for FirehoseAction
impl PartialEq<FirehoseAction> for FirehoseAction
source§fn eq(&self, other: &FirehoseAction) -> bool
fn eq(&self, other: &FirehoseAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.