@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
41 lines • 2.19 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.Plan = exports.getPlanOutput = exports.getPlan = exports.getContactChannelOutput = exports.getContactChannel = exports.getContactOutput = exports.getContact = exports.ContactChannel = exports.Contact = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.Contact = null;
utilities.lazyLoad(exports, ["Contact"], () => require("./contact"));
exports.ContactChannel = null;
utilities.lazyLoad(exports, ["ContactChannel"], () => require("./contactChannel"));
exports.getContact = null;
exports.getContactOutput = null;
utilities.lazyLoad(exports, ["getContact", "getContactOutput"], () => require("./getContact"));
exports.getContactChannel = null;
exports.getContactChannelOutput = null;
utilities.lazyLoad(exports, ["getContactChannel", "getContactChannelOutput"], () => require("./getContactChannel"));
exports.getPlan = null;
exports.getPlanOutput = null;
utilities.lazyLoad(exports, ["getPlan", "getPlanOutput"], () => require("./getPlan"));
exports.Plan = null;
utilities.lazyLoad(exports, ["Plan"], () => require("./plan"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "aws:ssmcontacts/contact:Contact":
return new exports.Contact(name, undefined, { urn });
case "aws:ssmcontacts/contactChannel:ContactChannel":
return new exports.ContactChannel(name, undefined, { urn });
case "aws:ssmcontacts/plan:Plan":
return new exports.Plan(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("aws", "ssmcontacts/contact", _module);
pulumi.runtime.registerResourceModule("aws", "ssmcontacts/contactChannel", _module);
pulumi.runtime.registerResourceModule("aws", "ssmcontacts/plan", _module);
//# sourceMappingURL=index.js.map