-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy patherrors.json
60 lines (60 loc) · 1.99 KB
/
errors.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"$id": "http://asl-validator.cloud/errors.json#",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "https://states-language.net/#appendix-a",
"anyOf": [
{
"type": "string"
},
{
"type": "string",
"enum": ["States.ALL"],
"description": "A wildcard which matches any Error Name."
},
{
"type": "string",
"enum": ["States.HeartbeatTimeout"],
"description": "A Task State failed to heartbeat for a time longer than the \"HeartbeatSeconds\" value."
},
{
"type": "string",
"enum": ["States.Timeout"],
"description": "A Task State either ran longer than the \"TimeoutSeconds\" value, or failed to heartbeat for a time longer than the \"HeartbeatSeconds\" value."
},
{
"type": "string",
"enum": ["States.TaskFailed"],
"description": "A Task State failed during the execution."
},
{
"type": "string",
"enum": ["States.Permissions"],
"description": "A Task State failed because it had insufficient privileges to execute the specified code."
},
{
"type": "string",
"enum": ["States.ResultPathMatchFailure"],
"description": "A state's \"ResultPath\" field cannot be applied to the input the state received."
},
{
"type": "string",
"enum": ["States.ParameterPathFailure"],
"description": "Within a state's \"Parameters\" field, the attempt to replace a field whose name ends in \".$\" using a Path failed."
},
{
"type": "string",
"enum": ["States.BranchFailed"],
"description": "A branch of a Parallel State failed."
},
{
"type": "string",
"enum": ["States.NoChoiceMatched"],
"description": "A Choice State failed to find a match for the condition field extracted from its input."
},
{
"type": "string",
"enum": ["States.IntrinsicFailure"],
"description": "Within a Payload Template, the attempt to invoke an Intrinsic Function failed."
}
]
}