UNPKG

@pulumi/aws

Version:

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

27 lines 1.21 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.KeyAlias = exports.Key = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); exports.Key = null; utilities.lazyLoad(exports, ["Key"], () => require("./key")); exports.KeyAlias = null; utilities.lazyLoad(exports, ["KeyAlias"], () => require("./keyAlias")); const _module = { version: utilities.getVersion(), construct: (name, type, urn) => { switch (type) { case "aws:paymentcryptography/key:Key": return new exports.Key(name, undefined, { urn }); case "aws:paymentcryptography/keyAlias:KeyAlias": return new exports.KeyAlias(name, undefined, { urn }); default: throw new Error(`unknown resource type ${type}`); } }, }; pulumi.runtime.registerResourceModule("aws", "paymentcryptography/key", _module); pulumi.runtime.registerResourceModule("aws", "paymentcryptography/keyAlias", _module); //# sourceMappingURL=index.js.map