@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
35 lines • 1.87 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.RecordingConfiguration = exports.PlaybackKeyPair = exports.getStreamKeyOutput = exports.getStreamKey = exports.Channel = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.Channel = null;
utilities.lazyLoad(exports, ["Channel"], () => require("./channel"));
exports.getStreamKey = null;
exports.getStreamKeyOutput = null;
utilities.lazyLoad(exports, ["getStreamKey", "getStreamKeyOutput"], () => require("./getStreamKey"));
exports.PlaybackKeyPair = null;
utilities.lazyLoad(exports, ["PlaybackKeyPair"], () => require("./playbackKeyPair"));
exports.RecordingConfiguration = null;
utilities.lazyLoad(exports, ["RecordingConfiguration"], () => require("./recordingConfiguration"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "aws:ivs/channel:Channel":
return new exports.Channel(name, undefined, { urn });
case "aws:ivs/playbackKeyPair:PlaybackKeyPair":
return new exports.PlaybackKeyPair(name, undefined, { urn });
case "aws:ivs/recordingConfiguration:RecordingConfiguration":
return new exports.RecordingConfiguration(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("aws", "ivs/channel", _module);
pulumi.runtime.registerResourceModule("aws", "ivs/playbackKeyPair", _module);
pulumi.runtime.registerResourceModule("aws", "ivs/recordingConfiguration", _module);
//# sourceMappingURL=index.js.map
;