ListResourceComplianceSummaries
Returns a resource-level summary count. The summary includes information about compliant and non-compliant statuses and detailed compliance-item severity counts, according to the filter criteria you specify.
Request Syntax
{
   "Filters": [ 
      { 
         "Key": "string",
         "Type": "string",
         "Values": [ "string" ]
      }
   ],
   "MaxResults": number,
   "NextToken": "string"
}Request Parameters
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
- Filters
- 
               One or more filters. Use a filter to return a more specific list of results. Type: Array of ComplianceStringFilter objects Required: No 
- MaxResults
- 
               The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results. Type: Integer Valid Range: Minimum value of 1. Maximum value of 50. Required: No 
- NextToken
- 
               A token to start the list. Use this token to get the next set of results. Type: String Required: No 
Response Syntax
{
   "NextToken": "string",
   "ResourceComplianceSummaryItems": [ 
      { 
         "ComplianceType": "string",
         "CompliantSummary": { 
            "CompliantCount": number,
            "SeveritySummary": { 
               "CriticalCount": number,
               "HighCount": number,
               "InformationalCount": number,
               "LowCount": number,
               "MediumCount": number,
               "UnspecifiedCount": number
            }
         },
         "ExecutionSummary": { 
            "ExecutionId": "string",
            "ExecutionTime": number,
            "ExecutionType": "string"
         },
         "NonCompliantSummary": { 
            "NonCompliantCount": number,
            "SeveritySummary": { 
               "CriticalCount": number,
               "HighCount": number,
               "InformationalCount": number,
               "LowCount": number,
               "MediumCount": number,
               "UnspecifiedCount": number
            }
         },
         "OverallSeverity": "string",
         "ResourceId": "string",
         "ResourceType": "string",
         "Status": "string"
      }
   ]
}Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- NextToken
- 
               The token for the next set of items to return. Use this token to get the next set of results. Type: String 
- ResourceComplianceSummaryItems
- 
               A summary count for specified or targeted managed nodes. Summary count includes information about compliant and non-compliant State Manager associations, patch status, or custom items according to the filter criteria that you specify. Type: Array of ResourceComplianceSummaryItem objects 
Errors
For information about the errors that are common to all actions, see Common Errors.
- InternalServerError
- 
               An error occurred on the server side. HTTP Status Code: 500 
- InvalidFilter
- 
               The filter name isn't valid. Verify that you entered the correct name and try again. HTTP Status Code: 400 
- InvalidNextToken
- 
               The specified token isn't valid. HTTP Status Code: 400 
Examples
Example
This example illustrates one usage of ListResourceComplianceSummaries.
Sample Request
POST / HTTP/1.1
Host: ssm.us-east-2.amazonaws.com
Accept-Encoding: identity
X-Amz-Target: AmazonSSM.ListResourceComplianceSummaries
Content-Type: application/x-amz-json-1.1
User-Agent: aws-cli/1.17.12 Python/3.6.8 Darwin/18.7.0 botocore/1.14.12
X-Amz-Date: 20240401T185225Z
Authorization: AWS4-HMAC-SHA256 Credential=AKIAIOSFODNN7EXAMPLE/20240401/us-east-2/ssm/aws4_request, 
SignedHeaders=content-type;host;x-amz-date;x-amz-target, Signature=39c3b3042cd2aEXAMPLE
Content-Length: 2Sample Response
{
    "ResourceComplianceSummaryItems": [
        {
            "ComplianceType": "Association",
            "CompliantSummary": {
                "CompliantCount": 3,
                "SeveritySummary": {
                    "CriticalCount": 0,
                    "HighCount": 1,
                    "InformationalCount": 0,
                    "LowCount": 0,
                    "MediumCount": 0,
                    "UnspecifiedCount": 2
                }
            },
            "ExecutionSummary": {
                "ExecutionTime": 1585766022
            },
            "NonCompliantSummary": {
                "NonCompliantCount": 0,
                "SeveritySummary": {
                    "CriticalCount": 0,
                    "HighCount": 0,
                    "InformationalCount": 0,
                    "LowCount": 0,
                    "MediumCount": 0,
                    "UnspecifiedCount": 0
                }
            },
            "OverallSeverity": "HIGH",
            "ResourceId": "i-04bf6ad63bEXAMPLE",
            "ResourceType": "ManagedInstance",
            "Status": "COMPLIANT"
        },
        {
            "ComplianceType": "Patch",
            "CompliantSummary": {
                "CompliantCount": 27,
                "SeveritySummary": {
                    "CriticalCount": 0,
                    "HighCount": 0,
                    "InformationalCount": 0,
                    "LowCount": 0,
                    "MediumCount": 0,
                    "UnspecifiedCount": 27
                }
            },
            "ExecutionSummary": {
                "ExecutionId": "b95523e7-28e5-488e-a753-fd1d3EXAMPLE",
                "ExecutionTime": 1585244656,
                "ExecutionType": "Command"
            },
            "NonCompliantSummary": {
                "NonCompliantCount": 1,
                "SeveritySummary": {
                    "CriticalCount": 0,
                    "HighCount": 0,
                    "InformationalCount": 0,
                    "LowCount": 0,
                    "MediumCount": 0,
                    "UnspecifiedCount": 1
                }
            },
            "OverallSeverity": "UNSPECIFIED",
            "ResourceId": "i-04bf6ad63bEXAMPLE",
            "ResourceType": "ManagedInstance",
            "Status": "NON_COMPLIANT"
        }
    ]
}See Also
For more information about using this API in one of the language-specific Amazon SDKs, see the following: