Describe Config Rule Evaluation Status
configservice_describe_config_rule_evaluation_status | R Documentation |
Returns status information for each of your Config managed rules¶
Description¶
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.
Usage¶
Arguments¶
ConfigRuleNames
The name of the Config managed rules for which you want status information. If you do not specify any names, Config returns status information for all Config managed rules that you use.
NextToken
The
nextToken
string returned on a previous page that you use to get the next page of results in a paginated response.Limit
The number of rule evaluation results that you want returned.
This parameter is required if the rule limit for your account is more than the default of 1000 rules.
For information about requesting a rule limit increase, see Config Limits in the Amazon Web Services General Reference Guide.
Value¶
A list with the following syntax:
list(
ConfigRulesEvaluationStatus = list(
list(
ConfigRuleName = "string",
ConfigRuleArn = "string",
ConfigRuleId = "string",
LastSuccessfulInvocationTime = as.POSIXct(
"2015-01-01"
),
LastFailedInvocationTime = as.POSIXct(
"2015-01-01"
),
LastSuccessfulEvaluationTime = as.POSIXct(
"2015-01-01"
),
LastFailedEvaluationTime = as.POSIXct(
"2015-01-01"
),
FirstActivatedTime = as.POSIXct(
"2015-01-01"
),
LastDeactivatedTime = as.POSIXct(
"2015-01-01"
),
LastErrorCode = "string",
LastErrorMessage = "string",
FirstEvaluationStarted = TRUE|FALSE,
LastDebugLogDeliveryStatus = "string",
LastDebugLogDeliveryStatusReason = "string",
LastDebugLogDeliveryTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)