Class: Aws::IoT::Types::DynamoDBv2Action
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DynamoDBv2Action
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Describes an action to write to a DynamoDB table.
This DynamoDB action writes each attribute in the message payload into it's own column in the DynamoDB table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#put_item ⇒ Types::PutItemInput
Specifies the DynamoDB table to which the message data will be written.
-
#role_arn ⇒ String
The ARN of the IAM role that grants access to the DynamoDB table.
Instance Attribute Details
#put_item ⇒ Types::PutItemInput
Specifies the DynamoDB table to which the message data will be written. For example:
\{ "dynamoDBv2": \{ "roleArn": "aws:iam:12341251:my-role"
"putItem": \{ "tableName": "my-table" \} \} \}
Each attribute in the message payload will be written to a separate column in the DynamoDB database.
7213 7214 7215 7216 7217 7218 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 7213 class DynamoDBv2Action < Struct.new( :role_arn, :put_item) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the IAM role that grants access to the DynamoDB table.
7213 7214 7215 7216 7217 7218 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 7213 class DynamoDBv2Action < Struct.new( :role_arn, :put_item) SENSITIVE = [] include Aws::Structure end |