ConfigService / Client / get_compliance_details_by_config_rule
get_compliance_details_by_config_rule#
- ConfigService.Client.get_compliance_details_by_config_rule(**kwargs)#
Returns the evaluation results for the specified Config rule. The results indicate which Amazon Web Services resources were evaluated by the rule, when each resource was last evaluated, and whether each resource complies with the rule.
See also: AWS API Documentation
Request Syntax
response = client.get_compliance_details_by_config_rule( ConfigRuleName='string', ComplianceTypes=[ 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', ], Limit=123, NextToken='string' )
- Parameters:
ConfigRuleName (string) –
[REQUIRED]
The name of the Config rule for which you want compliance information.
ComplianceTypes (list) –
Filters the results by compliance.
INSUFFICIENT_DATA
is a validComplianceType
that is returned when an Config rule cannot be evaluated. However,INSUFFICIENT_DATA
cannot be used as aComplianceType
for filtering results.(string) –
Limit (integer) – The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, Config uses the default.
NextToken (string) – The
nextToken
string returned on a previous page that you use to get the next page of results in a paginated response.
- Return type:
dict
- Returns:
Response Syntax
{ 'EvaluationResults': [ { 'EvaluationResultIdentifier': { 'EvaluationResultQualifier': { 'ConfigRuleName': 'string', 'ResourceType': 'string', 'ResourceId': 'string', 'EvaluationMode': 'DETECTIVE'|'PROACTIVE' }, 'OrderingTimestamp': datetime(2015, 1, 1), 'ResourceEvaluationId': 'string' }, 'ComplianceType': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA', 'ResultRecordedTime': datetime(2015, 1, 1), 'ConfigRuleInvokedTime': datetime(2015, 1, 1), 'Annotation': 'string', 'ResultToken': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
EvaluationResults (list) –
Indicates whether the Amazon Web Services resource complies with the specified Config rule.
(dict) –
The details of an Config evaluation. Provides the Amazon Web Services resource that was evaluated, the compliance of the resource, related time stamps, and supplementary information.
EvaluationResultIdentifier (dict) –
Uniquely identifies the evaluation result.
EvaluationResultQualifier (dict) –
Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource.
ConfigRuleName (string) –
The name of the Config rule that was used in the evaluation.
ResourceType (string) –
The type of Amazon Web Services resource that was evaluated.
ResourceId (string) –
The ID of the evaluated Amazon Web Services resource.
EvaluationMode (string) –
The mode of an evaluation. The valid values are Detective or Proactive.
OrderingTimestamp (datetime) –
The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation.
ResourceEvaluationId (string) –
A Unique ID for an evaluation result.
ComplianceType (string) –
Indicates whether the Amazon Web Services resource complies with the Config rule that evaluated it.
For the
EvaluationResult
data type, Config supports only theCOMPLIANT
,NON_COMPLIANT
, andNOT_APPLICABLE
values. Config does not support theINSUFFICIENT_DATA
value for theEvaluationResult
data type.ResultRecordedTime (datetime) –
The time when Config recorded the evaluation result.
ConfigRuleInvokedTime (datetime) –
The time when the Config rule evaluated the Amazon Web Services resource.
Annotation (string) –
Supplementary information about how the evaluation determined the compliance.
ResultToken (string) –
An encrypted token that associates an evaluation with an Config rule. The token identifies the rule, the Amazon Web Services resource being evaluated, and the event that triggered the evaluation.
NextToken (string) –
The string that you use in a subsequent request to get the next page of results in a paginated response.
Exceptions
ConfigService.Client.exceptions.InvalidParameterValueException
ConfigService.Client.exceptions.InvalidNextTokenException
ConfigService.Client.exceptions.NoSuchConfigRuleException