List Accepted Portfolio Shares
servicecatalog_list_accepted_portfolio_shares | R Documentation |
Lists all imported portfolios for which account-to-account shares were accepted by this account¶
Description¶
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.
Usage¶
servicecatalog_list_accepted_portfolio_shares(AcceptLanguage, PageToken,
PageSize, PortfolioShareType)
Arguments¶
AcceptLanguage |
The language code.
|
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. |
PortfolioShareType |
The type of shared portfolios to list. The default is to list imported portfolios.
|
Value¶
A list with the following syntax:
list(
PortfolioDetails = list(
list(
Id = "string",
ARN = "string",
DisplayName = "string",
Description = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
ProviderName = "string"
)
),
NextPageToken = "string"
)
Request syntax¶
svc$list_accepted_portfolio_shares(
AcceptLanguage = "string",
PageToken = "string",
PageSize = 123,
PortfolioShareType = "IMPORTED"|"AWS_SERVICECATALOG"|"AWS_ORGANIZATIONS"
)