Get Provisioned Product Outputs
| servicecatalog_get_provisioned_product_outputs | R Documentation |
This API takes either a ProvisonedProductId or a ProvisionedProductName, along with a list of one or more output keys, and responds with the key/value pairs of those outputs¶
Description¶
This API takes either a ProvisonedProductId or a
ProvisionedProductName, along with a list of one or more output keys,
and responds with the key/value pairs of those outputs.
Usage¶
servicecatalog_get_provisioned_product_outputs(AcceptLanguage,
ProvisionedProductId, ProvisionedProductName, OutputKeys, PageSize,
PageToken)
Arguments¶
AcceptLanguageThe language code.
jp- Japanesezh- Chinese
ProvisionedProductIdThe identifier of the provisioned product that you want the outputs from.
ProvisionedProductNameThe name of the provisioned product that you want the outputs from.
OutputKeysThe list of keys that the API should return with their values. If none are provided, the API will return all outputs of the provisioned product.
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(
Outputs = list(
list(
OutputKey = "string",
OutputValue = "string",
Description = "string"
)
),
NextPageToken = "string"
)