remediation_execution_status
Creates, updates, deletes, gets or lists a remediation_execution_status resource.
Overview
| Name | remediation_execution_status |
| Type | Resource |
| Id | aws.config.remediation_execution_status |
Fields
The following fields are returned by SELECT queries:
- describe_remediation_execution_status
| Name | Datatype | Description |
|---|---|---|
invocation_time | string (date-time) | Start time when the remediation was executed. |
last_updated_time | string (date-time) | The time when the remediation execution was last updated. |
resource_key | object | The details that identify a resource within Config, including the resource type and resource ID. |
state | string | ENUM of the values. (QUEUED, IN_PROGRESS, SUCCEEDED, FAILED, UNKNOWN) |
step_details | array | Details of every step. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_remediation_execution_status | select | region | Provides a detailed view of a Remediation Execution for a set of resources including state, timestamps for when steps for the remediation execution occur, and any error messages for steps that have failed. When you specify the limit and the next token, you receive a paginated response. |
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_remediation_execution_status
Provides a detailed view of a Remediation Execution for a set of resources including state, timestamps for when steps for the remediation execution occur, and any error messages for steps that have failed. When you specify the limit and the next token, you receive a paginated response.
SELECT
invocation_time,
last_updated_time,
resource_key,
state,
step_details
FROM aws.config.remediation_execution_status
WHERE region = '{{ region }}' -- required
;