typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
17 lines (16 loc) • 653 B
JavaScript
;
// CloudFormation Resource AWS::KMS::Alias
Object.defineProperty(exports, "__esModule", { value: true });
exports.Alias_Type = void 0;
const base_1 = require("../../base");
exports.Alias_Type = 'AWS::KMS::Alias';
/**
* The AWS::KMS::Alias resource specifies a display name for a customer
* master key (CMK) in AWS Key Management Service (AWS KMS). You can use
* an alias to identify a CMK in cryptographic operations. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html}
*/
function Alias(props) {
return new base_1.CfnResource(exports.Alias_Type, props);
}
exports.default = Alias;