Errors

class aws_cdk.aws_stepfunctions.Errors

Bases: object

Predefined error strings Error names in Amazon States Language - https://states-language.net/spec.html#appendix-a Error handling in Step Functions - https://docs.aws.amazon.com/step-functions/latest/dg/concepts-error-handling.html.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_stepfunctions as stepfunctions

errors = stepfunctions.Errors()

Attributes

ALL = 'States.ALL'
BRANCH_FAILED = 'States.BranchFailed'
HEARTBEAT_TIMEOUT = 'States.HeartbeatTimeout'
NO_CHOICE_MATCHED = 'States.NoChoiceMatched'
PARAMETER_PATH_FAILURE = 'States.ParameterPathFailure'
PERMISSIONS = 'States.Permissions'
RESULT_PATH_MATCH_FAILURE = 'States.ResultPathMatchFailure'
TASKS_FAILED = 'States.TaskFailed'
TIMEOUT = 'States.Timeout'