@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
28 lines • 1.29 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.getParametersByPathOutput = exports.getParametersByPath = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
function getParametersByPath(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("aws:ssm/getParametersByPath:getParametersByPath", {
"path": args.path,
"recursive": args.recursive,
"region": args.region,
"withDecryption": args.withDecryption,
}, opts);
}
exports.getParametersByPath = getParametersByPath;
function getParametersByPathOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("aws:ssm/getParametersByPath:getParametersByPath", {
"path": args.path,
"recursive": args.recursive,
"region": args.region,
"withDecryption": args.withDecryption,
}, opts);
}
exports.getParametersByPathOutput = getParametersByPathOutput;
//# sourceMappingURL=getParametersByPath.js.map
;