List Provisioned Product Plans
| servicecatalog_list_provisioned_product_plans | R Documentation |
Lists the plans for the specified provisioned product or all plans to which the user has access¶
Description¶
Lists the plans for the specified provisioned product or all plans to which the user has access.
Usage¶
servicecatalog_list_provisioned_product_plans(AcceptLanguage,
ProvisionProductId, PageSize, PageToken, AccessLevelFilter)
Arguments¶
AcceptLanguageThe language code.
jp- Japanesezh- Chinese
ProvisionProductIdThe 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.
AccessLevelFilterThe access level to use to obtain results. The default is
User.
Value¶
A list with the following syntax:
list(
ProvisionedProductPlans = list(
list(
PlanName = "string",
PlanId = "string",
ProvisionProductId = "string",
ProvisionProductName = "string",
PlanType = "CLOUDFORMATION",
ProvisioningArtifactId = "string"
)
),
NextPageToken = "string"
)