Class: Aws::IoT::Types::IotAnalyticsAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::IotAnalyticsAction
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Sends message data to an IoT Analytics channel.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#batch_mode ⇒ Boolean
Whether to process the action as a batch.
-
#channel_arn ⇒ String
(deprecated) The ARN of the IoT Analytics channel to which message data will be sent.
-
#channel_name ⇒ String
The name of the IoT Analytics channel to which message data will be sent.
-
#role_arn ⇒ String
The ARN of the role which has a policy that grants IoT Analytics permission to send message data via IoT Analytics (iotanalytics:BatchPutMessage).
Instance Attribute Details
#batch_mode ⇒ Boolean
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.
9099 9100 9101 9102 9103 9104 9105 9106 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 9099 class IotAnalyticsAction < Struct.new( :channel_arn, :channel_name, :batch_mode, :role_arn) SENSITIVE = [] include Aws::Structure end |
#channel_arn ⇒ String
(deprecated) The ARN of the IoT Analytics channel to which message data will be sent.
9099 9100 9101 9102 9103 9104 9105 9106 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 9099 class IotAnalyticsAction < Struct.new( :channel_arn, :channel_name, :batch_mode, :role_arn) SENSITIVE = [] include Aws::Structure end |
#channel_name ⇒ String
The name of the IoT Analytics channel to which message data will be sent.
9099 9100 9101 9102 9103 9104 9105 9106 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 9099 class IotAnalyticsAction < Struct.new( :channel_arn, :channel_name, :batch_mode, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role which has a policy that grants IoT Analytics permission to send message data via IoT Analytics (iotanalytics:BatchPutMessage).
9099 9100 9101 9102 9103 9104 9105 9106 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 9099 class IotAnalyticsAction < Struct.new( :channel_arn, :channel_name, :batch_mode, :role_arn) SENSITIVE = [] include Aws::Structure end |