java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:38.056Z") @Stability(Stable) public class DynamoPutItem extends TaskStateBase
A StepFunctions task to call DynamoPutItem.

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();
 
  • Constructor Details

    • DynamoPutItem

      protected DynamoPutItem(software.amazon.jsii.JsiiObjectRef objRef)
    • DynamoPutItem

      protected DynamoPutItem(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • DynamoPutItem

      @Stability(Stable) public DynamoPutItem(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull DynamoPutItemProps props)
      Parameters:
      scope - This parameter is required.
      id - Descriptive identifier for this chainable. This parameter is required.
      props - This parameter is required.
  • Method Details