ListFindingAggregations
Lists aggregated finding data for your environment based on specific criteria.
Request Syntax
POST /findings/aggregation/list HTTP/1.1
Content-type: application/json
{
"accountIds": [
{
"comparison": "string
",
"value": "string
"
}
],
"aggregationRequest": { ... },
"aggregationType": "string
",
"maxResults": number
,
"nextToken": "string
"
}
URI Request Parameters
The request does not use any URI parameters.
Request Body
The request accepts the following data in JSON format.
- accountIds
-
The AWS account IDs to retrieve finding aggregation data for.
Type: Array of StringFilter objects
Array Members: Minimum number of 1 item. Maximum number of 10 items.
Required: No
- aggregationRequest
-
Details of the aggregation request that is used to filter your aggregation results.
Type: AggregationRequest object
Note: This object is a Union. Only one member of this object can be specified or returned.
Required: No
- aggregationType
-
The type of the aggregation request.
Type: String
Valid Values:
FINDING_TYPE | PACKAGE | TITLE | REPOSITORY | AMI | AWS_EC2_INSTANCE | AWS_ECR_CONTAINER | IMAGE_LAYER | ACCOUNT | AWS_LAMBDA_FUNCTION | LAMBDA_LAYER
Required: Yes
- maxResults
-
The maximum number of results the response can return. If your request would return more than the maximum the response will return a
nextToken
value, use this value when you call the action again to get the remaining results.Type: Integer
Valid Range: Minimum value of 1. Maximum value of 100.
Required: No
- nextToken
-
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the
maxResults
maximum value it will also return anextToken
value. For subsequent calls, use thenextToken
value returned from the previous request to continue listing results after the first page.Type: String
Length Constraints: Minimum length of 0. Maximum length of 1000000.
Required: No
Response Syntax
HTTP/1.1 200
Content-type: application/json
{
"aggregationType": "string",
"nextToken": "string",
"responses": [
{ ... }
]
}
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.
- aggregationType
-
The type of aggregation to perform.
Type: String
Valid Values:
FINDING_TYPE | PACKAGE | TITLE | REPOSITORY | AMI | AWS_EC2_INSTANCE | AWS_ECR_CONTAINER | IMAGE_LAYER | ACCOUNT | AWS_LAMBDA_FUNCTION | LAMBDA_LAYER
- nextToken
-
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. For subsequent calls, use the
NextToken
value returned from the previous request to continue listing results after the first page.Type: String
Length Constraints: Minimum length of 0. Maximum length of 1000000.
- responses
-
Objects that contain the results of an aggregation operation.
Type: Array of AggregationResponse objects
Errors
For information about the errors that are common to all actions, see Common Errors.
- InternalServerException
-
The request has failed due to an internal failure of the Amazon Inspector service.
HTTP Status Code: 500
- ThrottlingException
-
The limit on the number of requests per second was exceeded.
HTTP Status Code: 429
- ValidationException
-
The request has failed validation due to missing required fields or having invalid inputs.
HTTP Status Code: 400
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: