@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
58 lines • 2.15 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.getLaunchPathsOutput = exports.getLaunchPaths = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Lists the paths to the specified product. A path is how the user has access to a specified product, and is necessary when provisioning a product. A path also determines the constraints put on the product.
*
* ## Example Usage
*
* ### Basic Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const example = aws.servicecatalog.getLaunchPaths({
* productId: "prod-yakog5pdriver",
* });
* ```
*/
function getLaunchPaths(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("aws:servicecatalog/getLaunchPaths:getLaunchPaths", {
"acceptLanguage": args.acceptLanguage,
"productId": args.productId,
"region": args.region,
}, opts);
}
exports.getLaunchPaths = getLaunchPaths;
/**
* Lists the paths to the specified product. A path is how the user has access to a specified product, and is necessary when provisioning a product. A path also determines the constraints put on the product.
*
* ## Example Usage
*
* ### Basic Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const example = aws.servicecatalog.getLaunchPaths({
* productId: "prod-yakog5pdriver",
* });
* ```
*/
function getLaunchPathsOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("aws:servicecatalog/getLaunchPaths:getLaunchPaths", {
"acceptLanguage": args.acceptLanguage,
"productId": args.productId,
"region": args.region,
}, opts);
}
exports.getLaunchPathsOutput = getLaunchPathsOutput;
//# sourceMappingURL=getLaunchPaths.js.map