Skip to main content

copy_product_status

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

Overview

Namecopy_product_status
TypeResource
Idaws.servicecatalog.copy_product_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
copy_product_statusstringThe status of the copy product operation. (SUCCEEDED, IN_PROGRESS, FAILED)
status_detailstringThe status message.
target_product_idstringThe identifier of the copied product. (pattern: <code>^[a-zA-Z0-9_-]*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_copy_product_statusselectregionGets the status of the specified copy product operation.

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 the status of the specified copy product operation.

SELECT
copy_product_status,
status_detail,
target_product_id
FROM aws.servicecatalog.copy_product_status
WHERE region = '{{ region }}' -- required
;