interface PutItemInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnTopicRulePropsMixin.PutItemInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnTopicRulePropsMixin_PutItemInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnTopicRulePropsMixin.PutItemInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnTopicRulePropsMixin.PutItemInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » CfnTopicRulePropsMixin » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const putItemInputProperty: iot.CfnTopicRulePropsMixin.PutItemInputProperty = {
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| table | string | ITable | The table where the message data will be written. |
tableName?
Type:
string | ITable
(optional)
The table where the message data will be written.

.NET
Go
Java
Python
TypeScript