UNPKG

@pulumi/aws

Version:

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

30 lines 1.42 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.getBudgetOutput = exports.getBudget = exports.BudgetAction = exports.Budget = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); exports.Budget = null; utilities.lazyLoad(exports, ["Budget"], () => require("./budget")); exports.BudgetAction = null; utilities.lazyLoad(exports, ["BudgetAction"], () => require("./budgetAction")); exports.getBudget = null; exports.getBudgetOutput = null; utilities.lazyLoad(exports, ["getBudget", "getBudgetOutput"], () => require("./getBudget")); const _module = { version: utilities.getVersion(), construct: (name, type, urn) => { switch (type) { case "aws:budgets/budget:Budget": return new exports.Budget(name, undefined, { urn }); case "aws:budgets/budgetAction:BudgetAction": return new exports.BudgetAction(name, undefined, { urn }); default: throw new Error(`unknown resource type ${type}`); } }, }; pulumi.runtime.registerResourceModule("aws", "budgets/budget", _module); pulumi.runtime.registerResourceModule("aws", "budgets/budgetAction", _module); //# sourceMappingURL=index.js.map