Interface CfnTopicRule.PutItemInputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTopicRule.PutItemInputProperty.Jsii$Proxy
Enclosing class:
CfnTopicRule

@Stability(Stable) public static interface CfnTopicRule.PutItemInputProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iot.*;
 PutItemInputProperty putItemInputProperty = PutItemInputProperty.builder()
         .tableName("tableName")
         .build();