UNPKG

@pulumi/aws

Version:

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

42 lines 2.23 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.Webhook = exports.DomainAssociation = exports.Branch = exports.BackendEnvironment = exports.App = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); exports.App = null; utilities.lazyLoad(exports, ["App"], () => require("./app")); exports.BackendEnvironment = null; utilities.lazyLoad(exports, ["BackendEnvironment"], () => require("./backendEnvironment")); exports.Branch = null; utilities.lazyLoad(exports, ["Branch"], () => require("./branch")); exports.DomainAssociation = null; utilities.lazyLoad(exports, ["DomainAssociation"], () => require("./domainAssociation")); exports.Webhook = null; utilities.lazyLoad(exports, ["Webhook"], () => require("./webhook")); const _module = { version: utilities.getVersion(), construct: (name, type, urn) => { switch (type) { case "aws:amplify/app:App": return new exports.App(name, undefined, { urn }); case "aws:amplify/backendEnvironment:BackendEnvironment": return new exports.BackendEnvironment(name, undefined, { urn }); case "aws:amplify/branch:Branch": return new exports.Branch(name, undefined, { urn }); case "aws:amplify/domainAssociation:DomainAssociation": return new exports.DomainAssociation(name, undefined, { urn }); case "aws:amplify/webhook:Webhook": return new exports.Webhook(name, undefined, { urn }); default: throw new Error(`unknown resource type ${type}`); } }, }; pulumi.runtime.registerResourceModule("aws", "amplify/app", _module); pulumi.runtime.registerResourceModule("aws", "amplify/backendEnvironment", _module); pulumi.runtime.registerResourceModule("aws", "amplify/branch", _module); pulumi.runtime.registerResourceModule("aws", "amplify/domainAssociation", _module); pulumi.runtime.registerResourceModule("aws", "amplify/webhook", _module); //# sourceMappingURL=index.js.map