ListLaunchPaths
Source:
src/AWS/ServiceCatalog/ListLaunchPaths.ts
Runtime binding for servicecatalog:ListLaunchPaths.
Lists the launch paths (the portfolio routes through which the caller can provision a product). The path ID is required by ProvisionProduct when the product is published to more than one portfolio.
Account-level operation — which products the caller can see and act on
is governed by portfolio principal associations, so the binding takes no
resource argument. Provide the implementation with
Effect.provide(AWS.ServiceCatalog.ListLaunchPathsHttp).
Browsing the Catalog
Section titled “Browsing the Catalog”// init — account-level binding, no resource argumentconst listLaunchPaths = yield* AWS.ServiceCatalog.ListLaunchPaths();
// runtimeconst { LaunchPathSummaries } = yield* listLaunchPaths({ ProductId: "prod-abc123",});