Skip to main content

provisioned_product_outputs

Creates, updates, deletes, gets or lists a provisioned_product_outputs resource.

Overview

Nameprovisioned_product_outputs
TypeResource
Idaws.servicecatalog.provisioned_product_outputs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_page_tokenstringThe page token to use to retrieve the next set of results. If there are no additional results, this value is null. (pattern: <code>[\u0009\u000a\u000d\u0020-\uD7FF\uE000-\uFFFD]*</code>)
outputsarrayInformation 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.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_provisioned_product_outputsselectregionThis 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
next_page_token,
outputs
FROM aws.servicecatalog.provisioned_product_outputs
WHERE region = '{{ region }}' -- required
;