@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
35 lines • 2.01 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.Trail = exports.OrganizationDelegatedAdminAccount = exports.getServiceAccountOutput = exports.getServiceAccount = exports.EventDataStore = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
exports.EventDataStore = null;
utilities.lazyLoad(exports, ["EventDataStore"], () => require("./eventDataStore"));
exports.getServiceAccount = null;
exports.getServiceAccountOutput = null;
utilities.lazyLoad(exports, ["getServiceAccount", "getServiceAccountOutput"], () => require("./getServiceAccount"));
exports.OrganizationDelegatedAdminAccount = null;
utilities.lazyLoad(exports, ["OrganizationDelegatedAdminAccount"], () => require("./organizationDelegatedAdminAccount"));
exports.Trail = null;
utilities.lazyLoad(exports, ["Trail"], () => require("./trail"));
const _module = {
version: utilities.getVersion(),
construct: (name, type, urn) => {
switch (type) {
case "aws:cloudtrail/eventDataStore:EventDataStore":
return new exports.EventDataStore(name, undefined, { urn });
case "aws:cloudtrail/organizationDelegatedAdminAccount:OrganizationDelegatedAdminAccount":
return new exports.OrganizationDelegatedAdminAccount(name, undefined, { urn });
case "aws:cloudtrail/trail:Trail":
return new exports.Trail(name, undefined, { urn });
default:
throw new Error(`unknown resource type ${type}`);
}
},
};
pulumi.runtime.registerResourceModule("aws", "cloudtrail/eventDataStore", _module);
pulumi.runtime.registerResourceModule("aws", "cloudtrail/organizationDelegatedAdminAccount", _module);
pulumi.runtime.registerResourceModule("aws", "cloudtrail/trail", _module);
//# sourceMappingURL=index.js.map