@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
42 lines • 2.58 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.NotificationHub = exports.NotificationConfiguration = exports.EventRule = exports.ContactsEmailContact = exports.ChannelAssociation = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.ChannelAssociation = null;
utilities.lazyLoad(exports, ["ChannelAssociation"], () => require("./channelAssociation"));
exports.ContactsEmailContact = null;
utilities.lazyLoad(exports, ["ContactsEmailContact"], () => require("./contactsEmailContact"));
exports.EventRule = null;
utilities.lazyLoad(exports, ["EventRule"], () => require("./eventRule"));
exports.NotificationConfiguration = null;
utilities.lazyLoad(exports, ["NotificationConfiguration"], () => require("./notificationConfiguration"));
exports.NotificationHub = null;
utilities.lazyLoad(exports, ["NotificationHub"], () => require("./notificationHub"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "aws:notifications/channelAssociation:ChannelAssociation":
return new exports.ChannelAssociation(name, undefined, { urn });
case "aws:notifications/contactsEmailContact:ContactsEmailContact":
return new exports.ContactsEmailContact(name, undefined, { urn });
case "aws:notifications/eventRule:EventRule":
return new exports.EventRule(name, undefined, { urn });
case "aws:notifications/notificationConfiguration:NotificationConfiguration":
return new exports.NotificationConfiguration(name, undefined, { urn });
case "aws:notifications/notificationHub:NotificationHub":
return new exports.NotificationHub(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("aws", "notifications/channelAssociation", _module);
pulumi.runtime.registerResourceModule("aws", "notifications/contactsEmailContact", _module);
pulumi.runtime.registerResourceModule("aws", "notifications/eventRule", _module);
pulumi.runtime.registerResourceModule("aws", "notifications/notificationConfiguration", _module);
pulumi.runtime.registerResourceModule("aws", "notifications/notificationHub", _module);
//# sourceMappingURL=index.js.map