product_as_admins
Creates, updates, deletes, gets or lists a product_as_admins resource.
Overview
| Name | product_as_admins |
| Type | Resource |
| Id | aws.servicecatalog.product_as_admins |
Fields
The following fields are returned by SELECT queries:
- describe_product_as_admin
| Name | Datatype | Description |
|---|---|---|
budgets | array | Information about the associated budgets. |
product_view_detail | object | Information about the product view. |
provisioning_artifact_summaries | array | Information about the provisioning artifacts (also known as versions) for the specified product. |
tag_options | array | Information about the TagOptions associated with the product. |
tags | array | Information about the tags associated with the product. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_product_as_admin | select | region | Gets information about the specified product. This operation is run with administrator access. |
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_as_admin
Gets information about the specified product. This operation is run with administrator access.
SELECT
budgets,
product_view_detail,
provisioning_artifact_summaries,
tag_options,
tags
FROM aws.servicecatalog.product_as_admins
WHERE region = '{{ region }}' -- required
;