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