product_views
Creates, updates, deletes, gets or lists a product_views resource.
Overview
| Name | product_views |
| Type | Resource |
| Id | aws.servicecatalog.product_views |
Fields
The following fields are returned by SELECT queries:
- describe_product_view
| Name | Datatype | Description |
|---|---|---|
product_view_summary | object | Summary information about the product. |
provisioning_artifacts | array | Information about the provisioning artifacts for the product. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_product_view | select | region | Gets information about the specified product. |
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
- describe_product_view
Gets information about the specified product.
SELECT
product_view_summary,
provisioning_artifacts
FROM aws.servicecatalog.product_views
WHERE region = '{{ region }}' -- required
;