Skip to main content

remediation_execution_status

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

Overview

Nameremediation_execution_status
TypeResource
Idaws.config.remediation_execution_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
invocation_timestring (date-time)Start time when the remediation was executed.
last_updated_timestring (date-time)The time when the remediation execution was last updated.
resource_keyobjectThe details that identify a resource within Config, including the resource type and resource ID.
statestringENUM of the values. (QUEUED, IN_PROGRESS, SUCCEEDED, FAILED, UNKNOWN)
step_detailsarrayDetails of every step.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;