typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 641 B
JavaScript
;
// CloudFormation Resource AWS::Route53::KeySigningKey
Object.defineProperty(exports, "__esModule", { value: true });
exports.KeySigningKey_Type = void 0;
const base_1 = require("../../base");
exports.KeySigningKey_Type = 'AWS::Route53::KeySigningKey';
/**
* Represents a key signing key (KSK) associated with a hosted zone. You
* can only have two KSKs per hosted zone. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html}
*/
function KeySigningKey(props) {
return new base_1.CfnResource(exports.KeySigningKey_Type, props);
}
exports.default = KeySigningKey;