Interface DynamoPutItemProps

All Superinterfaces:
AssignableStateOptions, software.amazon.jsii.JsiiSerializable, JsonataCommonOptions, JsonPathCommonOptions, StateBaseProps, TaskStateBaseOptions, TaskStateBaseProps
All Known Implementing Classes:
DynamoPutItemProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-02T11:25:41.382Z") @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-007"),
                 "Text", DynamoAttributeValue.fromString(JsonPath.stringAt("$.bar")),
                 "TotalCount", DynamoAttributeValue.fromNumber(10)))
         .table(myTable)
         .build();