Class: Aws::IoT::Types::PutItemInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::PutItemInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass PutItemInput data as a hash:
{
table_name: "TableName", # required
}
The input for the DynamoActionVS action that specifies the DynamoDB table to which the message data will be written.
Instance Attribute Summary collapse
-
#table_name ⇒ String
The table where the message data will be written.
Instance Attribute Details
#table_name ⇒ String
The table where the message data will be written
8258 8259 8260 8261 |
# File 'lib/aws-sdk-iot/types.rb', line 8258 class PutItemInput < Struct.new( :table_name) include Aws::Structure end |