UNPKG

@pulumi/aws

Version:

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

27 lines 1.19 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.VaultLock = exports.Vault = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); exports.Vault = null; utilities.lazyLoad(exports, ["Vault"], () => require("./vault")); exports.VaultLock = null; utilities.lazyLoad(exports, ["VaultLock"], () => require("./vaultLock")); const _module = { version: utilities.getVersion(), construct: (name, type, urn) => { switch (type) { case "aws:glacier/vault:Vault": return new exports.Vault(name, undefined, { urn }); case "aws:glacier/vaultLock:VaultLock": return new exports.VaultLock(name, undefined, { urn }); default: throw new Error(`unknown resource type ${type}`); } }, }; pulumi.runtime.registerResourceModule("aws", "glacier/vault", _module); pulumi.runtime.registerResourceModule("aws", "glacier/vaultLock", _module); //# sourceMappingURL=index.js.map