Class: Aws::IoTEvents::Types::FirehoseAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::FirehoseAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delivery_stream_name ⇒ String
The name of the Kinesis Data Firehose delivery stream where the data is written.
-
#payload ⇒ Types::Payload
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
-
#separator ⇒ String
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream.
Instance Attribute Details
#delivery_stream_name ⇒ String
The name of the Kinesis Data Firehose delivery stream where the data is written.
1790 1791 1792 1793 1794 1795 1796 |
# File 'lib/aws-sdk-iotevents/types.rb', line 1790 class FirehoseAction < Struct.new( :delivery_stream_name, :separator, :payload) SENSITIVE = [] include Aws::Structure end |
#payload ⇒ Types::Payload
You can configure the action payload when you send a message to an Amazon Kinesis Data Firehose delivery stream.
1790 1791 1792 1793 1794 1795 1796 |
# File 'lib/aws-sdk-iotevents/types.rb', line 1790 class FirehoseAction < Struct.new( :delivery_stream_name, :separator, :payload) SENSITIVE = [] include Aws::Structure end |
#separator ⇒ String
A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: ‘\n’ (newline), ‘\t’ (tab), ‘\r\n’ (Windows newline), ‘,’ (comma).
1790 1791 1792 1793 1794 1795 1796 |
# File 'lib/aws-sdk-iotevents/types.rb', line 1790 class FirehoseAction < Struct.new( :delivery_stream_name, :separator, :payload) SENSITIVE = [] include Aws::Structure end |