Skip to content

v1.20.0

Compare
Choose a tag to compare
@github-actions github-actions released this 25 Mar 10:25
1557a63

Summary

This release improves the CloudFormation Custom Resource module by allowing you to set a reason field on the Response object. This is useful to report details about the resource for debugging purposes.

Response response = Response.builder()
                            .reason("<Some Text>")
                            .build();

⭐️ Thanks to @moizsh for his first contribution to Powertools for AWS Lambda in Java!

Changes

  • feat(cfn-custom-resource): Add optional 'reason' field for detailed failure reporting (#1758) by @moizsh

This release was made possible by the following contributors:

@moizsh and @phipag