typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 598 B
JavaScript
;
// CloudFormation Resource AWS::IoT::Dimension
Object.defineProperty(exports, "__esModule", { value: true });
exports.Dimension_Type = void 0;
const base_1 = require("../../base");
exports.Dimension_Type = 'AWS::IoT::Dimension';
/**
* A dimension can be used to limit the scope of a metric used in a
* security profile for AWS IoT Device Defender. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html}
*/
function Dimension(props) {
return new base_1.CfnResource(exports.Dimension_Type, props);
}
exports.default = Dimension;