products_as_admins
Creates, updates, deletes, gets or lists a products_as_admins resource.
Overview
| Name | products_as_admins |
| Type | Resource |
| Id | aws.servicecatalog.products_as_admins |
Fields
The following fields are returned by SELECT queries:
- search_products_as_admin
| Name | Datatype | Description |
|---|---|---|
created_time | string (date-time) | The UTC time stamp of the creation time. |
product_arn | string | The ARN of the product. |
product_view_summary | object | Summary information about the product view. |
source_connection | object | A top level ProductViewDetail response containing details about the product’s connection. Service Catalog returns this field for the CreateProduct, UpdateProduct, DescribeProductAsAdmin, and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response. |
status | string | The status of the product. AVAILABLE - The product is ready for use. CREATING - Product creation has started; the product is not ready for use. FAILED - An action failed. (AVAILABLE, CREATING, FAILED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
search_products_as_admin | select | region | Gets information about the products for the specified portfolio or all products. |
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
- search_products_as_admin
Gets information about the products for the specified portfolio or all products.
SELECT
created_time,
product_arn,
product_view_summary,
source_connection,
status
FROM aws.servicecatalog.products_as_admins
WHERE region = '{{ region }}' -- required
;