typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 583 B
JavaScript
;
// CloudFormation Resource AWS::Backup::ReportPlan
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReportPlan_Type = void 0;
const base_1 = require("../../base");
exports.ReportPlan_Type = 'AWS::Backup::ReportPlan';
/**
* Contains detailed information about a report plan in AWS Backup Audit
* Manager. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-reportplan.html}
*/
function ReportPlan(props) {
return new base_1.CfnResource(exports.ReportPlan_Type, props);
}
exports.default = ReportPlan;