Class: Aws::IoT::Types::FirehoseAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::FirehoseAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass FirehoseAction data as a hash:
{
role_arn: "AwsArn", # required
delivery_stream_name: "DeliveryStreamName", # required
separator: "FirehoseSeparator",
}
Describes an action that writes data to an Amazon Kinesis Firehose stream.
Instance Attribute Summary collapse
-
#delivery_stream_name ⇒ String
The delivery stream name.
-
#role_arn ⇒ String
The IAM role that grants access to the Amazon Kinesis Firehose stream.
-
#separator ⇒ String
A character separator that will be used to separate records written to the Firehose stream.
Instance Attribute Details
#delivery_stream_name ⇒ String
The delivery stream name.
4973 4974 4975 4976 4977 4978 |
# File 'lib/aws-sdk-iot/types.rb', line 4973 class FirehoseAction < Struct.new( :role_arn, :delivery_stream_name, :separator) include Aws::Structure end |
#role_arn ⇒ String
The IAM role that grants access to the Amazon Kinesis Firehose stream.
4973 4974 4975 4976 4977 4978 |
# File 'lib/aws-sdk-iot/types.rb', line 4973 class FirehoseAction < Struct.new( :role_arn, :delivery_stream_name, :separator) include Aws::Structure end |
#separator ⇒ String
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).
4973 4974 4975 4976 4977 4978 |
# File 'lib/aws-sdk-iot/types.rb', line 4973 class FirehoseAction < Struct.new( :role_arn, :delivery_stream_name, :separator) include Aws::Structure end |