typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 551 B
JavaScript
;
// CloudFormation Resource AWS::Route53::DNSSEC
Object.defineProperty(exports, "__esModule", { value: true });
exports.DNSSEC_Type = void 0;
const base_1 = require("../../base");
exports.DNSSEC_Type = 'AWS::Route53::DNSSEC';
/**
* Resource used to control (enable/disable) DNSSEC in a specific hosted
* zone. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html}
*/
function DNSSEC(props) {
return new base_1.CfnResource(exports.DNSSEC_Type, props);
}
exports.default = DNSSEC;