Skip to main content

organization_portfolio_access

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

Overview

Nameorganization_portfolio_access
TypeResource
Idaws.servicecatalog.organization_portfolio_access

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
typestringThe organization node type. (ORGANIZATION, ORGANIZATIONAL_UNIT, ACCOUNT)
valuestringThe identifier of the organization node. (pattern: <code>(^[0-9]{12}$)|(^arn:aws:organizations::\d{12}:organization/o-[a-z0-9]{10,32})|(^o-[a-z0-9]{10,32}$)|(^arn:aws:organizations::\d{12}:ou/o-[a-z0-9]{10,32}/ou-[0-9a-z]{4,32}-[0-9a-z]{8,32}$)|(^ou-[0-9a-z]{4,32}-[a-z0-9]{8,32}$)</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_organization_portfolio_accessselectregionLists the organization nodes that have access to the specified portfolio. This API can only be called by the management account in the organization or by a delegated admin. If a delegated admin is de-registered, they can no longer perform this operation.

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 organization nodes that have access to the specified portfolio. This API can only be called by the management account in the organization or by a delegated admin. If a delegated admin is de-registered, they can no longer perform this operation.

SELECT
type,
value
FROM aws.servicecatalog.organization_portfolio_access
WHERE region = '{{ region }}' -- required
;