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