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.939Z") @Stability(Stable) public class DynamoGetItem extends TaskStateBase
A StepFunctions task to call DynamoGetItem.

Example:

 Table myTable;
 DynamoGetItem.Builder.create(this, "Get Item")
         .key(Map.of("messageId", DynamoAttributeValue.fromString("message-007")))
         .table(myTable)
         .build();
 
  • Constructor Details

    • DynamoGetItem

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

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

      @Stability(Stable) public DynamoGetItem(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull DynamoGetItemProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details