@matthewbonig/cfn-response
v0.1.4
Published
A simple client library for sending responses back to CloudFormation during Custom Resource event handling.
Downloads
10
Readme
cfn-response
This is a simple Typescript client library for responding to CloudFormation Custom Resources.
Based on this blog.
Example
import { send, ResponseStatus } from '@matthewbonig/cfn-response';
export const handler = async (event: any, context: any) => {
await send({ ...event, PhysicalResourceId: context.logStreamName, Status: ResponseStatus.SUCCESS, Data: {}, NoEcho: false, Reason: '' });
}
Contributing
yes please, just submit a PR. Thanks.