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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.943Z") @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-id")))
         .table(myTable)
         .resultPath("$.Item")
         .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 - This parameter is required.
      props - This parameter is required.
  • Method Details