FindStateOptions
- class aws_cdk.aws_stepfunctions.FindStateOptions(*, include_error_handlers=None)
Bases:
object
Options for finding reachable states.
- Parameters:
include_error_handlers (
Optional
[bool
]) – Whether or not to follow error-handling transitions. Default: false- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_stepfunctions as stepfunctions find_state_options = stepfunctions.FindStateOptions( include_error_handlers=False )
Attributes
- include_error_handlers
Whether or not to follow error-handling transitions.
- Default:
false