typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
15 lines (14 loc) • 570 B
JavaScript
;
// CloudFormation Resource AWS::IoT::CustomMetric
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomMetric_Type = void 0;
const base_1 = require("../../base");
exports.CustomMetric_Type = 'AWS::IoT::CustomMetric';
/**
* A custom metric published by your devices to Device Defender. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-custommetric.html}
*/
function CustomMetric(props) {
return new base_1.CfnResource(exports.CustomMetric_Type, props);
}
exports.default = CustomMetric;