typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
17 lines (16 loc) • 667 B
JavaScript
;
// CloudFormation Resource AWS::IoT::Logging
Object.defineProperty(exports, "__esModule", { value: true });
exports.Logging_Type = void 0;
const base_1 = require("../../base");
exports.Logging_Type = 'AWS::IoT::Logging';
/**
* Logging Options enable you to configure your IoT V2 logging role and
* default logging level so that you can monitor progress events logs as
* it passes from your devices through Iot core service. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-logging.html}
*/
function Logging(props) {
return new base_1.CfnResource(exports.Logging_Type, props);
}
exports.default = Logging;