config_rule_evaluation_status
Creates, updates, deletes, gets or lists a config_rule_evaluation_status resource.
Overview
| Name | config_rule_evaluation_status |
| Type | Resource |
| Id | aws.config.config_rule_evaluation_status |
Fields
The following fields are returned by SELECT queries:
- describe_config_rule_evaluation_status
| Name | Datatype | Description |
|---|---|---|
config_rule_arn | string | The Amazon Resource Name (ARN) of the Config rule. |
config_rule_id | string | The ID of the Config rule. |
config_rule_name | string | The name of the Config rule. (pattern: <code>.\S.</code>) |
first_activated_time | string (date-time) | The time that you first activated the Config rule. |
first_evaluation_started | boolean | Indicates 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_time | string (date-time) | The time that you last turned off the Config rule. |
last_debug_log_delivery_status | string | The 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_reason | string | The 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_time | string (date-time) | The time Config last attempted to deliver a debug log for your Config Custom Policy rules. |
last_error_code | string | The error code that Config returned when the rule last failed. |
last_error_message | string | The error message that Config returned when the rule last failed. |
last_failed_evaluation_time | string (date-time) | The time that Config last failed to evaluate your Amazon Web Services resources against the rule. |
last_failed_invocation_time | string (date-time) | The time that Config last failed to invoke the Config rule to evaluate your Amazon Web Services resources. |
last_successful_evaluation_time | string (date-time) | The time that Config last successfully evaluated your Amazon Web Services resources against the rule. |
last_successful_invocation_time | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_config_rule_evaluation_status | select | region | 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. |
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_config_rule_evaluation_status
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
;