Class ParallelFailureToleranceExample

All Implemented Interfaces:
com.amazonaws.services.lambda.runtime.RequestStreamHandler

Example demonstrating parallel execution with failure tolerance.

When toleratedFailureCount is set, the parallel operation completes successfully even if some branches fail — as long as the number of failures does not exceed the threshold. Failed branches produce null results that callers can filter out.

Use this pattern when partial success is acceptable, for example: sending notifications to multiple channels where some channels may be unavailable.