Skip to main content

portfolio_share_status

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

Overview

Nameportfolio_share_status
TypeResource
Idaws.servicecatalog.portfolio_share_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
organization_node_valuestringOrganization node identifier. It can be either account id, organizational unit id or organization id. (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>)
portfolio_idstringThe portfolio identifier. (pattern: <code>^[a-zA-Z0-9_-]*</code>)
portfolio_share_tokenstringThe token for the portfolio share operation. For example, share-6v24abcdefghi. (pattern: <code>^[a-zA-Z0-9_-]*</code>)
share_detailsobjectInformation about the portfolio share operation.
statusstringStatus of the portfolio share operation. (NOT_STARTED, IN_PROGRESS, COMPLETED, COMPLETED_WITH_ERRORS, ERROR)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_portfolio_share_statusselectregionGets the status of the specified portfolio share operation. This API can only be called by the management account in the organization or by a delegated admin.

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

Gets the status of the specified portfolio share operation. This API can only be called by the management account in the organization or by a delegated admin.

SELECT
organization_node_value,
portfolio_id,
portfolio_share_token,
share_details,
status
FROM aws.servicecatalog.portfolio_share_status
WHERE region = '{{ region }}' -- required
;