Class: Aws::IoT::Types::KinesisAction

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 KinesisAction data as a hash:

{
  role_arn: "AwsArn", # required
  stream_name: "StreamName", # required
  partition_key: "PartitionKey",
}

Describes an action to write data to an Amazon Kinesis stream.

Instance Attribute Summary collapse

Instance Attribute Details

#partition_keyString

The partition key.

Returns:

  • (String)


5852
5853
5854
5855
5856
5857
# File 'lib/aws-sdk-iot/types.rb', line 5852

class KinesisAction < Struct.new(
  :role_arn,
  :stream_name,
  :partition_key)
  include Aws::Structure
end

#role_arnString

The ARN of the IAM role that grants access to the Amazon Kinesis stream.

Returns:

  • (String)


5852
5853
5854
5855
5856
5857
# File 'lib/aws-sdk-iot/types.rb', line 5852

class KinesisAction < Struct.new(
  :role_arn,
  :stream_name,
  :partition_key)
  include Aws::Structure
end

#stream_nameString

The name of the Amazon Kinesis stream.

Returns:

  • (String)


5852
5853
5854
5855
5856
5857
# File 'lib/aws-sdk-iot/types.rb', line 5852

class KinesisAction < Struct.new(
  :role_arn,
  :stream_name,
  :partition_key)
  include Aws::Structure
end