Skip to main content

products_as_admins

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

Overview

Nameproducts_as_admins
TypeResource
Idaws.servicecatalog.products_as_admins

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_timestring (date-time)The UTC time stamp of the creation time.
product_arnstringThe ARN of the product.
product_view_summaryobjectSummary information about the product view.
source_connectionobjectA 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.
statusstringThe 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:

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

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

SELECT examples

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
;