volume_mute
match the column on the left (AWS Step Functions states) with the terms on the right (states definitions)
publish date: 2024/08/20 00:54:51.567906 UTC
volume_muteTo complete the line match
- Click on an item in the first group
- Click on the match in the second group
To delete a match, double click on a line
State
Succeed state
Parallel state
Map state
Choice state
Task state
Fail state
Wait state
Pass state
State definition
Passes its input to its output without performing work
Represents a single unit of work performed by a state machine
Adds branching logic to a state machine
Delays the state machine from continuing for a specified time
Stops an activity successfully
Stops the activity of the state machine and marks it as a failure
Can be used to create parallel branches of activity in your state machine
Can be used to run a set of steps for each element of an input array
Correct Answer
(1) Succeed state,Stops an activity successfully
(2) Parallel state,Can be used to create parallel branches of activity in your state machine
(3) Map state,Can be used to run a set of steps for each element of an input array
(4) Choice state,Adds branching logic to a state machine
(5) Task state,Represents a single unit of work performed by a state machine
(6) Fail state,Stops the activity of the state machine and marks it as a failure
(7) Wait state,Delays the state machine from continuing for a specified time
(8) Pass state,Passes its input to its output without performing work