organization_portfolio_access
Creates, updates, deletes, gets or lists an organization_portfolio_access resource.
Overview
| Name | organization_portfolio_access |
| Type | Resource |
| Id | aws.servicecatalog.organization_portfolio_access |
Fields
The following fields are returned by SELECT queries:
- list_organization_portfolio_access
| Name | Datatype | Description |
|---|---|---|
type | string | The organization node type. (ORGANIZATION, ORGANIZATIONAL_UNIT, ACCOUNT) |
value | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_organization_portfolio_access | select | region | 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. |
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_organization_portfolio_access
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
;