accepted_portfolio_shares
Creates, updates, deletes, gets or lists an accepted_portfolio_shares resource.
Overview
| Name | accepted_portfolio_shares |
| Type | Resource |
| Id | aws.servicecatalog.accepted_portfolio_shares |
Fields
The following fields are returned by SELECT queries:
- list_accepted_portfolio_shares
| Name | Datatype | Description |
|---|---|---|
arn | string | The ARN assigned to the portfolio. |
created_time | string (date-time) | The UTC time stamp of the creation time. |
description | string | The description of the portfolio. |
display_name | string | The name to use for display purposes. |
id | string | The portfolio identifier. (pattern: <code>^[a-zA-Z0-9_-]*</code>) |
provider_name | string | The name of the portfolio provider. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_accepted_portfolio_shares | select | region | 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. |
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_accepted_portfolio_shares
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
;