Interface CfnTopicRule.DynamoDBv2ActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.DynamoDBv2ActionProperty extends software.amazon.jsii.JsiiSerializable
Describes an action to write to a DynamoDB table.

This DynamoDB action writes each attribute in the message payload into it's own column in the DynamoDB table.

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.*;
 DynamoDBv2ActionProperty dynamoDBv2ActionProperty = DynamoDBv2ActionProperty.builder()
         .putItem(PutItemInputProperty.builder()
                 .tableName("tableName")
                 .build())
         .roleArn("roleArn")
         .build();
 

See Also: