Skip to main content

accepted_portfolio_shares

Creates, updates, deletes, gets or lists an accepted_portfolio_shares resource.

Overview

Nameaccepted_portfolio_shares
TypeResource
Idaws.servicecatalog.accepted_portfolio_shares

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_accepted_portfolio_sharesselectregionLists all imported portfolios for which account-to-account shares were accepted by this account. By specifying the PortfolioShareType, you can list portfolios for which organizational shares were accepted by this account.

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 imported portfolios for which account-to-account shares were accepted by this account. By specifying the PortfolioShareType, you can list portfolios for which organizational shares were accepted by this account.

SELECT
arn,
created_time,
description,
display_name,
id,
provider_name
FROM aws.servicecatalog.accepted_portfolio_shares
WHERE region = '{{ region }}' -- required
;