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¶
AcceptLanguage
The language code.
jp
- Japanesezh
- Chinese
PortfolioId
[required] The portfolio identifier.
ProductId
The product identifier.
PageSize
The maximum number of items to return with this call.
PageToken
The 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"
)