get_resource_evaluation_summary

ConfigService.Client.get_resource_evaluation_summary(**kwargs)

Returns a summary of resource evaluation for the specified resource evaluation ID from the proactive rules that were run. The results indicate which evaluation context was used to evaluate the rules, which resource details were evaluated, the evaluation mode that was run, and whether the resource details comply with the configuration of the proactive rules.

See also: AWS API Documentation

Request Syntax

response = client.get_resource_evaluation_summary(
    ResourceEvaluationId='string'
)
Parameters
ResourceEvaluationId (string) --

[REQUIRED]

The unique ResourceEvaluationId of Amazon Web Services resource execution for which you want to retrieve the evaluation summary.

Return type
dict
Returns
Response Syntax
{
    'ResourceEvaluationId': 'string',
    'EvaluationMode': 'DETECTIVE'|'PROACTIVE',
    'EvaluationStatus': {
        'Status': 'IN_PROGRESS'|'FAILED'|'SUCCEEDED',
        'FailureReason': 'string'
    },
    'EvaluationStartTimestamp': datetime(2015, 1, 1),
    'Compliance': 'COMPLIANT'|'NON_COMPLIANT'|'NOT_APPLICABLE'|'INSUFFICIENT_DATA',
    'EvaluationContext': {
        'EvaluationContextIdentifier': 'string'
    },
    'ResourceDetails': {
        'ResourceId': 'string',
        'ResourceType': 'string',
        'ResourceConfiguration': 'string',
        'ResourceConfigurationSchemaType': 'CFN_RESOURCE_SCHEMA'
    }
}

Response Structure

  • (dict) --
    • ResourceEvaluationId (string) --

      The unique ResourceEvaluationId of Amazon Web Services resource execution for which you want to retrieve the evaluation summary.

    • EvaluationMode (string) --

      Lists results of the mode that you requested to retrieve the resource evaluation summary. The valid values are Detective or Proactive.

    • EvaluationStatus (dict) --

      Returns an EvaluationStatus object.

      • Status (string) --

        The status of an execution. The valid values are In_Progress, Succeeded or Failed.

      • FailureReason (string) --

        An explanation for failed execution status.

    • EvaluationStartTimestamp (datetime) --

      The start timestamp when Config rule starts evaluating compliance for the provided resource details.

    • Compliance (string) --

      The compliance status of the resource evaluation summary.

    • EvaluationContext (dict) --

      Returns an EvaluationContext object.

      • EvaluationContextIdentifier (string) --

        A unique EvaluationContextIdentifier ID for an EvaluationContext.

    • ResourceDetails (dict) --

      Returns a ResourceDetails object.

      • ResourceId (string) --

        A unique resource ID for an evaluation.

      • ResourceType (string) --

        The type of resource being evaluated.

      • ResourceConfiguration (string) --

        The resource definition to be evaluated as per the resource configuration schema type.

      • ResourceConfigurationSchemaType (string) --

        The schema type of the resource configuration.

Exceptions

  • ConfigService.Client.exceptions.ResourceNotFoundException