List Portfolios
servicecatalog_list_portfolios | R Documentation |
Lists all portfolios in the catalog¶
Description¶
Lists all portfolios in the catalog.
Usage¶
servicecatalog_list_portfolios(AcceptLanguage, PageToken, PageSize)
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. |
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_portfolios(
AcceptLanguage = "string",
PageToken = "string",
PageSize = 123
)