portfolios_for_products
Creates, updates, deletes, gets or lists a portfolios_for_products resource.
Overview
| Name | portfolios_for_products |
| Type | Resource |
| Id | aws.servicecatalog.portfolios_for_products |
Fields
The following fields are returned by SELECT queries:
- list_portfolios_for_product
| Name | Datatype | Description |
|---|---|---|
arn | string | The ARN assigned to the portfolio. |
created_time | string (date-time) | The UTC time stamp of the creation time. |
description | string | The description of the portfolio. |
display_name | string | The name to use for display purposes. |
id | string | The portfolio identifier. (pattern: <code>^[a-zA-Z0-9_-]*</code>) |
provider_name | string | The name of the portfolio provider. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_portfolios_for_product | select | region | Lists all portfolios that the specified product is associated with. |
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_portfolios_for_product
Lists all portfolios that the specified product is associated with.
SELECT
arn,
created_time,
description,
display_name,
id,
provider_name
FROM aws.servicecatalog.portfolios_for_products
WHERE region = '{{ region }}' -- required
;