Class DynamoGetItem
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.services.stepfunctions.State
software.amazon.awscdk.services.stepfunctions.TaskStateBase
software.amazon.awscdk.services.stepfunctions.tasks.DynamoGetItem
- 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();
 - 
Nested Class SummaryNested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.stepfunctions.IChainableIChainable.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstructIConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstructsoftware.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.stepfunctions.INextableINextable.Jsii$Default
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedDynamoGetItem(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedDynamoGetItem(software.amazon.jsii.JsiiObjectRef objRef) DynamoGetItem(software.constructs.Construct scope, String id, DynamoGetItemProps props) 
- 
Method SummaryMethods inherited from class software.amazon.awscdk.services.stepfunctions.TaskStateBaseaddCatch, addCatch, addRetry, addRetry, getEndStates, metric, metric, metricFailed, metricFailed, metricHeartbeatTimedOut, metricHeartbeatTimedOut, metricRunTime, metricRunTime, metricScheduled, metricScheduled, metricScheduleTime, metricScheduleTime, metricStarted, metricStarted, metricSucceeded, metricSucceeded, metricTime, metricTime, metricTimedOut, metricTimedOut, next, toStateJson, whenBoundToGraphMethods inherited from class software.amazon.awscdk.services.stepfunctions.StateaddBranch, addChoice, addIterator, addPrefix, bindToGraph, filterNextables, findReachableEndStates, findReachableEndStates, findReachableStates, findReachableStates, getBranches, getComment, getDefaultChoice, getId, getInputPath, getIteration, getOutputPath, getParameters, getResultPath, getResultSelector, getStartState, getStateId, makeDefault, makeNext, prefixStates, renderBranches, renderChoices, renderInputOutput, renderIterator, renderNextEnd, renderResultSelector, renderRetryCatch, setDefaultChoice, setIterationMethods inherited from class software.amazon.awscdk.core.ConstructgetNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.constructs.ConstructtoStringMethods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Constructor Details- 
DynamoGetItemprotected DynamoGetItem(software.amazon.jsii.JsiiObjectRef objRef) 
- 
DynamoGetItemprotected 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- 
getTaskMetrics- Specified by:
- getTaskMetricsin class- TaskStateBase
 
- 
getTaskPolicies- Specified by:
- getTaskPoliciesin class- TaskStateBase
 
 
-