Skip to main content

portfolios_for_products

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

Overview

Nameportfolios_for_products
TypeResource
Idaws.servicecatalog.portfolios_for_products

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe ARN assigned to the portfolio.
created_timestring (date-time)The UTC time stamp of the creation time.
descriptionstringThe description of the portfolio.
display_namestringThe name to use for display purposes.
idstringThe portfolio identifier. (pattern: <code>^[a-zA-Z0-9_-]*</code>)
provider_namestringThe name of the portfolio provider.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;