List Constraints for Portfolio
| servicecatalog_list_constraints_for_portfolio | R Documentation |
Lists the constraints for the specified portfolio and product¶
Description¶
Lists the constraints for the specified portfolio and product.
Usage¶
servicecatalog_list_constraints_for_portfolio(AcceptLanguage,
PortfolioId, ProductId, PageSize, PageToken)
Arguments¶
AcceptLanguageThe language code.
jp- Japanesezh- Chinese
PortfolioId[required] The portfolio identifier.
ProductIdThe product identifier.
PageSizeThe maximum number of items to return with this call.
PageTokenThe page token for the next set of results. To retrieve the first set of results, use null.
Value¶
A list with the following syntax:
list(
ConstraintDetails = list(
list(
ConstraintId = "string",
Type = "string",
Description = "string",
Owner = "string",
ProductId = "string",
PortfolioId = "string"
)
),
NextPageToken = "string"
)