interface PutItemInputProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoT.CfnTopicRule.PutItemInputProperty | 
|  Java | software.amazon.awscdk.services.iot.CfnTopicRule.PutItemInputProperty | 
|  Python | aws_cdk.aws_iot.CfnTopicRule.PutItemInputProperty | 
|  TypeScript | @aws-cdk/aws-iot»CfnTopicRule»PutItemInputProperty | 
The input for the DynamoActionVS action that specifies the DynamoDB table to which the message data will be written.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iot from '@aws-cdk/aws-iot';
const putItemInputProperty: iot.CfnTopicRule.PutItemInputProperty = {
  tableName: 'tableName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| table | string | The table where the message data will be written. | 
tableName
Type:
string
The table where the message data will be written.
