resource_request_status
Creates, updates, deletes, gets or lists a resource_request_status resource.
Overview
| Name | resource_request_status |
| Type | Resource |
| Id | aws.cloudcontrol.resource_request_status |
Fields
The following fields are returned by SELECT queries:
- get_resource_request_status
| Name | Datatype | Description |
|---|---|---|
hooks_progress_event | array | Lists Hook invocations for the specified target in the request. This is a list since the same target can invoke multiple Hooks. |
progress_event | object | Represents the current status of a resource operation request. For more information, see Managing resource operation requests in the Amazon Web Services Cloud Control API User Guide. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_resource_request_status | select | region | Returns the current status of a resource operation request. For more information, see Tracking the progress of resource operation requests in the Amazon Web Services Cloud Control API User Guide. |
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
- get_resource_request_status
Returns the current status of a resource operation request. For more information, see Tracking the progress of resource operation requests in the Amazon Web Services Cloud Control API User Guide.
SELECT
hooks_progress_event,
progress_event
FROM aws.cloudcontrol.resource_request_status
WHERE region = '{{ region }}' -- required
;