Skip to content

Commit 5e1b3a5

Browse files
author
Kolomiets
committed
Merge branch 'master' of github.com:kolomied/cdk-stepfunctions-patterns
2 parents 4d3ef59 + b13dc27 commit 5e1b3a5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ All these patterns are *composable*, meaning that you can combine them together
1414
quite complex state machines that are much easier to maintain and support than low-level
1515
JSON definitions.
1616

17+
* [Try / Catch](#try--catch-pattern)
18+
* [Try / Finally](#try--finally-pattern)
19+
* [Try / Catch / Finally](#try--catch--finally-pattern)
20+
* [Retry with backoff and jitter](#retry-with-backoff-and-jitter)
21+
* [Resilience lambda errors handling](#resilience-lambda-errors-handling)
22+
* [Validation of proper resilience lambda errors handling](#validation-of-proper-resilience-lambda-errors-handling)
23+
1724
## Try / Catch pattern
1825
Step Functions support **Try / Catch** pattern natively with [Task](https://docs.aws.amazon.com/step-functions/latest/dg/amazon-states-language-task-state.html)
1926
and [Parallel](https://docs.aws.amazon.com/step-functions/latest/dg/amazon-states-language-parallel-state.html) states.
@@ -206,4 +213,4 @@ error codes, there will be warning during CDK synthesize stage:
206213
PS C:\Dev\GitHub\cdk-stepfunctions-patterns> cdk synth --strict
207214
[Warning at /StepFunctionsPatterns/A] No retry for AWS Lambda transient errors defined - consider using ResilientLambdaTask construct.
208215
[Warning at /StepFunctionsPatterns/B] Missing retry for transient errors: Lambda.AWSLambdaException,Lambda.SdkClientException.
209-
```
216+
```

0 commit comments

Comments
 (0)