v1.20.0
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