Skip to main content

launch_paths

Creates, updates, deletes, gets or lists a launch_paths resource.

Overview

Namelaunch_paths
TypeResource
Idaws.servicecatalog.launch_paths

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
constraint_summariesarrayThe constraints on the portfolio-product relationship.
idstringThe identifier of the product path. (pattern: <code>^[a-zA-Z0-9_-]*</code>)
namestringThe name of the portfolio that contains the product.
tagsarrayThe tags associated with this product path.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_launch_pathsselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;