Struct aws_sdk_iot::types::IotAnalyticsAction
source · #[non_exhaustive]pub struct IotAnalyticsAction { /* private fields */ }Expand description
Sends message data to an IoT Analytics channel.
Implementations§
source§impl IotAnalyticsAction
impl IotAnalyticsAction
sourcepub fn channel_arn(&self) -> Option<&str>
pub fn channel_arn(&self) -> Option<&str>
(deprecated) The ARN of the IoT Analytics channel to which message data will be sent.
sourcepub fn channel_name(&self) -> Option<&str>
pub fn channel_name(&self) -> Option<&str>
The name of the IoT Analytics channel to which message data will be sent.
sourcepub fn batch_mode(&self) -> Option<bool>
pub fn batch_mode(&self) -> Option<bool>
Whether to process the action as a batch. The default value is false.
When batchMode is true and the rule SQL statement evaluates to an Array, each Array element is delivered as a separate message when passed by BatchPutMessage to the IoT Analytics channel. The resulting array can't have more than 100 messages.
source§impl IotAnalyticsAction
impl IotAnalyticsAction
sourcepub fn builder() -> IotAnalyticsActionBuilder
pub fn builder() -> IotAnalyticsActionBuilder
Creates a new builder-style object to manufacture IotAnalyticsAction.
Trait Implementations§
source§impl Clone for IotAnalyticsAction
impl Clone for IotAnalyticsAction
source§fn clone(&self) -> IotAnalyticsAction
fn clone(&self) -> IotAnalyticsAction
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 IotAnalyticsAction
impl Debug for IotAnalyticsAction
source§impl PartialEq<IotAnalyticsAction> for IotAnalyticsAction
impl PartialEq<IotAnalyticsAction> for IotAnalyticsAction
source§fn eq(&self, other: &IotAnalyticsAction) -> bool
fn eq(&self, other: &IotAnalyticsAction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.