copy_product_status
Creates, updates, deletes, gets or lists a copy_product_status resource.
Overview
| Name | copy_product_status |
| Type | Resource |
| Id | aws.servicecatalog.copy_product_status |
Fields
The following fields are returned by SELECT queries:
- describe_copy_product_status
| Name | Datatype | Description |
|---|---|---|
copy_product_status | string | The status of the copy product operation. (SUCCEEDED, IN_PROGRESS, FAILED) |
status_detail | string | The status message. |
target_product_id | string | The identifier of the copied product. (pattern: <code>^[a-zA-Z0-9_-]*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_copy_product_status | select | region | Gets 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_copy_product_status
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
;