typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 691 B
JavaScript
;
// CloudFormation Resource AWS::IoT::ResourceSpecificLogging
Object.defineProperty(exports, "__esModule", { value: true });
exports.ResourceSpecificLogging_Type = void 0;
const base_1 = require("../../base");
exports.ResourceSpecificLogging_Type = 'AWS::IoT::ResourceSpecificLogging';
/**
* Resource-specific logging allows you to specify a logging level for a
* specific thing group. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-resourcespecificlogging.html}
*/
function ResourceSpecificLogging(props) {
return new base_1.CfnResource(exports.ResourceSpecificLogging_Type, props);
}
exports.default = ResourceSpecificLogging;