UNPKG

@pulumi/aws

Version:

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

32 lines 1.6 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.Pipeline = exports.CustomActionType = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); exports.CustomActionType = null; utilities.lazyLoad(exports, ["CustomActionType"], () => require("./customActionType")); exports.Pipeline = null; utilities.lazyLoad(exports, ["Pipeline"], () => require("./pipeline")); exports.Webhook = null; utilities.lazyLoad(exports, ["Webhook"], () => require("./webhook")); const _module = { version: utilities.getVersion(), construct: (name, type, urn) => { switch (type) { case "aws:codepipeline/customActionType:CustomActionType": return new exports.CustomActionType(name, undefined, { urn }); case "aws:codepipeline/pipeline:Pipeline": return new exports.Pipeline(name, undefined, { urn }); case "aws:codepipeline/webhook:Webhook": return new exports.Webhook(name, undefined, { urn }); default: throw new Error(`unknown resource type ${type}`); } }, }; pulumi.runtime.registerResourceModule("aws", "codepipeline/customActionType", _module); pulumi.runtime.registerResourceModule("aws", "codepipeline/pipeline", _module); pulumi.runtime.registerResourceModule("aws", "codepipeline/webhook", _module); //# sourceMappingURL=index.js.map