provisioned_product_outputs
Creates, updates, deletes, gets or lists a provisioned_product_outputs resource.
Overview
| Name | provisioned_product_outputs |
| Type | Resource |
| Id | aws.servicecatalog.provisioned_product_outputs |
Fields
The following fields are returned by SELECT queries:
- get_provisioned_product_outputs
| Name | Datatype | Description |
|---|---|---|
next_page_token | string | The 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>) |
outputs | array | 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. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_provisioned_product_outputs | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_provisioned_product_outputs
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
;