2020/10/09 - AWS Service Catalog - 1 new api methods
Changes Update servicecatalog client to latest version
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.
See also: AWS API Documentation
Request Syntax
client.get_provisioned_product_outputs( AcceptLanguage='string', ProvisionedProductId='string', ProvisionedProductName='string', OutputKeys=[ 'string', ], PageSize=123, PageToken='string' )
string
The language code.
en - English (default)
jp - Japanese
zh - Chinese
string
The identifier of the provisioned product that you want the outputs from.
string
The name of the provisioned product that you want the outputs from.
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) --
integer
The maximum number of items to return with this call.
string
The page token for the next set of results. To retrieve the first set of results, use null.
dict
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.