typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 619 B
JavaScript
;
// CloudFormation Resource AWS::IoT::SecurityProfile
Object.defineProperty(exports, "__esModule", { value: true });
exports.SecurityProfile_Type = void 0;
const base_1 = require("../../base");
exports.SecurityProfile_Type = 'AWS::IoT::SecurityProfile';
/**
* A security profile defines a set of expected behaviors for devices in
* your account. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-securityprofile.html}
*/
function SecurityProfile(props) {
return new base_1.CfnResource(exports.SecurityProfile_Type, props);
}
exports.default = SecurityProfile;