/cfn-response

A simple client for responding to CloudFormation Custom Resource events.

Primary LanguageTypeScriptApache License 2.0Apache-2.0

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.