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.109.0 (build c221850)", date="2025-03-14T03:25:06.252Z") @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

    • jsonata

      @Stability(Stable) @NotNull public static DynamoDeleteItem jsonata(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull DynamoDeleteItemJsonataProps props)
      A StepFunctions task to call DynamoDeleteItem using JSONata.

      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
    • jsonPath

      @Stability(Stable) @NotNull public static DynamoDeleteItem jsonPath(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull DynamoDeleteItemJsonPathProps props)
      A StepFunctions task to call DynamoDeleteItem using JSONPath.

      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
    • getTaskMetrics

      @Stability(Stable) @Nullable protected TaskMetricsConfig getTaskMetrics()
      Specified by:
      getTaskMetrics in class TaskStateBase
    • getTaskPolicies

      @Stability(Stable) @Nullable protected List<PolicyStatement> getTaskPolicies()
      Specified by:
      getTaskPolicies in class TaskStateBase