List Organization Portfolio Access
servicecatalog_list_organization_portfolio_access | R Documentation |
Lists the organization nodes that have access to the specified portfolio¶
Description¶
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.
Usage¶
servicecatalog_list_organization_portfolio_access(AcceptLanguage,
PortfolioId, OrganizationNodeType, PageToken, PageSize)
Arguments¶
AcceptLanguage
The language code.
jp
- Japanesezh
- Chinese
PortfolioId
[required] The portfolio identifier. For example,
port-2abcdext3y5fk
.OrganizationNodeType
[required] The organization node type that will be returned in the output.
ORGANIZATION
- Organization that has access to the portfolio.ORGANIZATIONAL_UNIT
- Organizational unit that has access to the portfolio within your organization.ACCOUNT
- Account that has access to the portfolio within your organization.
PageToken
The page token for the next set of results. To retrieve the first set of results, use null.
PageSize
The maximum number of items to return with this call.
Value¶
A list with the following syntax:
list(
OrganizationNodes = list(
list(
Type = "ORGANIZATION"|"ORGANIZATIONAL_UNIT"|"ACCOUNT",
Value = "string"
)
),
NextPageToken = "string"
)