typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 653 B
JavaScript
;
// CloudFormation Resource AWS::IoT::ScheduledAudit
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScheduledAudit_Type = void 0;
const base_1 = require("../../base");
exports.ScheduledAudit_Type = 'AWS::IoT::ScheduledAudit';
/**
* Scheduled audits can be used to specify the checks you want to perform
* during an audit and how often the audit should be run. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-scheduledaudit.html}
*/
function ScheduledAudit(props) {
return new base_1.CfnResource(exports.ScheduledAudit_Type, props);
}
exports.default = ScheduledAudit;