INextable¶
-
class
aws_cdk.aws_stepfunctions.
INextable
(*args, **kwds)¶ Bases:
typing_extensions.Protocol
Interface for states that can have ‘next’ states.
Methods
-
next
(state)¶ Go to the indicated state after this state.
- Parameters
state (
IChainable
) –- Return type
- Returns
The chain of states built up
-