Class DynamoDeleteItem

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.104.0 (build e79254c)", date="2024-10-31T19:13:06.528Z") @Stability(Stable) public class DynamoDeleteItem extends TaskStateBase
A StepFunctions task to call DynamoDeleteItem.

Example:

 Table myTable;
 DynamoDeleteItem.Builder.create(this, "DeleteItem")
         .key(Map.of("MessageId", DynamoAttributeValue.fromString("message-007")))
         .table(myTable)
         .resultPath(JsonPath.DISCARD)
         .build();
 
  • Constructor Details

    • DynamoDeleteItem

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

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

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