ServiceCatalog / Client / get_provisioned_product_outputs
get_provisioned_product_outputs#
- ServiceCatalog.Client.get_provisioned_product_outputs(**kwargs)#
This API takes either a
ProvisonedProductId
or aProvisionedProductName
, along with a list of one or more output keys, and responds with the key/value pairs of those outputs.See also: AWS API Documentation
Request Syntax
response = client.get_provisioned_product_outputs( AcceptLanguage='string', ProvisionedProductId='string', ProvisionedProductName='string', OutputKeys=[ 'string', ], PageSize=123, PageToken='string' )
- Parameters:
AcceptLanguage (string) –
The language code.
jp
- Japanesezh
- Chinese
ProvisionedProductId (string) – The identifier of the provisioned product that you want the outputs from.
ProvisionedProductName (string) – The name of the provisioned product that you want the outputs from.
OutputKeys (list) –
The 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.
(string) –
PageSize (integer) – The maximum number of items to return with this call.
PageToken (string) – The page token for the next set of results. To retrieve the first set of results, use null.
- Return type:
dict
- Returns:
Response Syntax
{ 'Outputs': [ { 'OutputKey': 'string', 'OutputValue': 'string', 'Description': 'string' }, ], 'NextPageToken': 'string' }
Response Structure
(dict) –
Outputs (list) –
Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.
(dict) –
The output for the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.
OutputKey (string) –
The output key.
OutputValue (string) –
The output value.
Description (string) –
The description of the output.
NextPageToken (string) –
The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
Exceptions
ServiceCatalog.Client.exceptions.InvalidParametersException
ServiceCatalog.Client.exceptions.ResourceNotFoundException