typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
15 lines (14 loc) • 617 B
JavaScript
;
// CloudFormation Resource AWS::Lambda::EventInvokeConfig
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventInvokeConfig_Type = void 0;
const base_1 = require("../../base");
exports.EventInvokeConfig_Type = 'AWS::Lambda::EventInvokeConfig';
/**
* Resource Type definition for AWS::Lambda::EventInvokeConfig {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventinvokeconfig.html}
*/
function EventInvokeConfig(props) {
return new base_1.CfnResource(exports.EventInvokeConfig_Type, props);
}
exports.default = EventInvokeConfig;