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

.NET
Go
Java
Python
TypeScript