Interface DynamoDBv2PutItemActionProps

All Superinterfaces:
CommonActionProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DynamoDBv2PutItemActionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.99.0 (build 8f757e4)", date="2024-06-13T18:49:28.040Z") @Stability(Experimental) public interface DynamoDBv2PutItemActionProps extends software.amazon.jsii.JsiiSerializable, CommonActionProps
(experimental) Configuration properties of an action for 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.actions.alpha.*;
 import software.amazon.awscdk.services.iam.*;
 Role role;
 DynamoDBv2PutItemActionProps dynamoDBv2PutItemActionProps = DynamoDBv2PutItemActionProps.builder()
         .role(role)
         .build();