launch_paths
Creates, updates, deletes, gets or lists a launch_paths resource.
Overview
| Name | launch_paths |
| Type | Resource |
| Id | aws.servicecatalog.launch_paths |
Fields
The following fields are returned by SELECT queries:
- list_launch_paths
| Name | Datatype | Description |
|---|---|---|
constraint_summaries | array | The constraints on the portfolio-product relationship. |
id | string | The identifier of the product path. (pattern: <code>^[a-zA-Z0-9_-]*</code>) |
name | string | The name of the portfolio that contains the product. |
tags | array | The tags associated with this product path. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_launch_paths | select | region | Lists the paths to the specified product. A path describes how the user gets access to a specified product and is necessary when provisioning a product. A path also determines the constraints that are put on a product. A path is dependent on a specific product, porfolio, and principal. When provisioning a product that's been added to a portfolio, you must grant your user, group, or role access to the portfolio. For more information, see Granting users access in the Service Catalog User Guide. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_launch_paths
Lists the paths to the specified product. A path describes how the user gets access to a specified product and is necessary when provisioning a product. A path also determines the constraints that are put on a product. A path is dependent on a specific product, porfolio, and principal. When provisioning a product that's been added to a portfolio, you must grant your user, group, or role access to the portfolio. For more information, see Granting users access in the Service Catalog User Guide.
SELECT
constraint_summaries,
id,
name,
tags
FROM aws.servicecatalog.launch_paths
WHERE region = '{{ region }}' -- required
;