@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
27 lines • 1.27 kB
JavaScript
;
// *** 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.DbInstance = exports.DbCluster = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.DbCluster = null;
utilities.lazyLoad(exports, ["DbCluster"], () => require("./dbCluster"));
exports.DbInstance = null;
utilities.lazyLoad(exports, ["DbInstance"], () => require("./dbInstance"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "aws:timestreaminfluxdb/dbCluster:DbCluster":
return new exports.DbCluster(name, undefined, { urn });
case "aws:timestreaminfluxdb/dbInstance:DbInstance":
return new exports.DbInstance(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("aws", "timestreaminfluxdb/dbCluster", _module);
pulumi.runtime.registerResourceModule("aws", "timestreaminfluxdb/dbInstance", _module);
//# sourceMappingURL=index.js.map