This is a NPM-hosted of AWS cfn-response for Custom Resources.
npm install cfn-custom-resource-responsebash
npm install cfn-custom-resource-response --save
`
Introduction
This is a NPM-hosted of AWS cfn-response for Custom Resources.
Description
This module contains a send method that respond on behalf of custom resources you create using AWS CloudFormation by way of an Amazon S3 presigned URL (the ResponseURL).
For more information about AWS cfn-response, click here.
Usage
`nodejs
const response = require('cfn-custom-resource-response');
response.send(event, context, response.SUCCESS, { "message": "Success" });
``