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