Class: Aws::IoT::Types::FirehoseAction

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#delivery_stream_nameString

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_arnString

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

#separatorString

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