List Portfolios For Product
servicecatalog_list_portfolios_for_product | R Documentation |
Lists all portfolios that the specified product is associated with¶
Description¶
Lists all portfolios that the specified product is associated with.
Usage¶
servicecatalog_list_portfolios_for_product(AcceptLanguage, ProductId,
PageToken, PageSize)
Arguments¶
AcceptLanguage |
The language code.
|
ProductId |
[required] The product identifier. |
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_for_product(
AcceptLanguage = "string",
ProductId = "string",
PageToken = "string",
PageSize = 123
)