Interface DynamoPutItemProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, TaskStateBaseProps
All Known Implementing Classes:
DynamoPutItemProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.945Z") @Stability(Stable) public interface DynamoPutItemProps extends software.amazon.jsii.JsiiSerializable, TaskStateBaseProps
Properties for DynamoPutItem Task.

Example:

 Table myTable;
 DynamoPutItem.Builder.create(this, "PutItem")
         .item(Map.of(
                 "MessageId", DynamoAttributeValue.fromString("message-id")))
         .table(myTable)
         .resultPath("$.Item")
         .build();