Skip to main content

config_rule_evaluation_status

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

Overview

Nameconfig_rule_evaluation_status
TypeResource
Idaws.config.config_rule_evaluation_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
config_rule_arnstringThe Amazon Resource Name (ARN) of the Config rule.
config_rule_idstringThe ID of the Config rule.
config_rule_namestringThe name of the Config rule. (pattern: <code>.\S.</code>)
first_activated_timestring (date-time)The time that you first activated the Config rule.
first_evaluation_startedbooleanIndicates whether Config has evaluated your resources against the rule at least once. true - Config has evaluated your Amazon Web Services resources against the rule at least once. false - Config has not finished evaluating your Amazon Web Services resources against the rule at least once.
last_deactivated_timestring (date-time)The time that you last turned off the Config rule.
last_debug_log_delivery_statusstringThe status of the last attempted delivery of a debug log for your Config Custom Policy rules. Either Successful or Failed.
last_debug_log_delivery_status_reasonstringThe reason Config was not able to deliver a debug log. This is for the last failed attempt to retrieve a debug log for your Config Custom Policy rules.
last_debug_log_delivery_timestring (date-time)The time Config last attempted to deliver a debug log for your Config Custom Policy rules.
last_error_codestringThe error code that Config returned when the rule last failed.
last_error_messagestringThe error message that Config returned when the rule last failed.
last_failed_evaluation_timestring (date-time)The time that Config last failed to evaluate your Amazon Web Services resources against the rule.
last_failed_invocation_timestring (date-time)The time that Config last failed to invoke the Config rule to evaluate your Amazon Web Services resources.
last_successful_evaluation_timestring (date-time)The time that Config last successfully evaluated your Amazon Web Services resources against the rule.
last_successful_invocation_timestring (date-time)The time that Config last successfully invoked the Config rule to evaluate your Amazon Web Services resources.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_config_rule_evaluation_statusselectregionReturns status information for each of your Config managed rules. The status includes information such as the last time Config invoked the rule, the last time Config failed to invoke the rule, and the related error for the last failure.

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

Returns status information for each of your Config managed rules. The status includes information such as the last time Config invoked the rule, the last time Config failed to invoke the rule, and the related error for the last failure.

SELECT
config_rule_arn,
config_rule_id,
config_rule_name,
first_activated_time,
first_evaluation_started,
last_deactivated_time,
last_debug_log_delivery_status,
last_debug_log_delivery_status_reason,
last_debug_log_delivery_time,
last_error_code,
last_error_message,
last_failed_evaluation_time,
last_failed_invocation_time,
last_successful_evaluation_time,
last_successful_invocation_time
FROM aws.config.config_rule_evaluation_status
WHERE region = '{{ region }}' -- required
;