ListComplianceSummaries
Returns a summary count of compliant and non-compliant resources for a compliance type. For example, this call can return State Manager associations, patches, or custom compliance types according to the filter criteria that 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 compliance or inventory 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. Currently, you can specify null or 50. 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
{
"ComplianceSummaryItems": [
{
"ComplianceType": "string",
"CompliantSummary": {
"CompliantCount": number,
"SeveritySummary": {
"CriticalCount": number,
"HighCount": number,
"InformationalCount": number,
"LowCount": number,
"MediumCount": number,
"UnspecifiedCount": number
}
},
"NonCompliantSummary": {
"NonCompliantCount": number,
"SeveritySummary": {
"CriticalCount": number,
"HighCount": number,
"InformationalCount": number,
"LowCount": number,
"MediumCount": number,
"UnspecifiedCount": number
}
}
}
],
"NextToken": "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.
- ComplianceSummaryItems
-
A list of compliant and non-compliant summary counts based on compliance types. For example, this call returns State Manager associations, patches, or custom compliance types according to the filter criteria that you specified.
Type: Array of ComplianceSummaryItem objects
- NextToken
-
The token for the next set of items to return. Use this token to get the next set of results.
Type: String
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 the 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 ListComplianceSummaries.
Sample Request
POST / HTTP/1.1
Host: ssm.us-east-2.amazonaws.com
Accept-Encoding: identity
X-Amz-Target: AmazonSSM.ListComplianceSummaries
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: 20240401T174348Z
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: 2
Sample Response
{
"ComplianceSummaryItems": [
{
"ComplianceType": "FleetTotal",
"CompliantSummary": {
"CompliantCount": 1,
"SeveritySummary": {
"CriticalCount": 0,
"HighCount": 1,
"InformationalCount": 0,
"LowCount": 0,
"MediumCount": 0,
"UnspecifiedCount": 0
}
},
"NonCompliantSummary": {
"NonCompliantCount": 2,
"SeveritySummary": {
"CriticalCount": 0,
"HighCount": 0,
"InformationalCount": 0,
"LowCount": 0,
"MediumCount": 0,
"UnspecifiedCount": 2
}
}
},
{
"ComplianceType": "Association",
"CompliantSummary": {
"CompliantCount": 3,
"SeveritySummary": {
"CriticalCount": 0,
"HighCount": 2,
"InformationalCount": 0,
"LowCount": 0,
"MediumCount": 0,
"UnspecifiedCount": 1
}
},
"NonCompliantSummary": {
"NonCompliantCount": 0,
"SeveritySummary": {
"CriticalCount": 0,
"HighCount": 0,
"InformationalCount": 0,
"LowCount": 0,
"MediumCount": 0,
"UnspecifiedCount": 0
}
}
},
{
"ComplianceType": "Patch",
"CompliantSummary": {
"CompliantCount": 1,
"SeveritySummary": {
"CriticalCount": 0,
"HighCount": 0,
"InformationalCount": 0,
"LowCount": 0,
"MediumCount": 0,
"UnspecifiedCount": 1
}
},
"NonCompliantSummary": {
"NonCompliantCount": 2,
"SeveritySummary": {
"CriticalCount": 0,
"HighCount": 0,
"InformationalCount": 0,
"LowCount": 0,
"MediumCount": 0,
"UnspecifiedCount": 2
}
}
}
]
}
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: