UNPKG

@pulumi/aws

Version:

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

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