---
title: "POST /findings/aggregation/list"
method: POST
path: "/findings/aggregation/list"
---

# POST /findings/aggregation/list

`POST /findings/aggregation/list`

Lists aggregated finding data for your environment based on specific criteria.

## Request body

- object
  - `aggregationType` 'FINDING_TYPE' | 'PACKAGE' | 'TITLE' | 'REPOSITORY' | 'AMI' | 'AWS_EC2_INSTANCE' | 'AWS_ECR_CONTAINER' | 'IMAGE_LAYER' | 'ACCOUNT' | 'AWS_LAMBDA_FUNCTION' | 'LAMBDA_LAYER' | 'CODE_REPOSITORY' | 'VM_INSTANCE' | 'CONTAINER_IMAGE' | 'SERVERLESS_FUNCTION', required — The type of the aggregation request.
  - `nextToken` string — 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 <code>maxResults</code> maximum value it will also return a <code>nextToken</code> value. For subsequent calls, use the <code>nextToken</code> value returned from the previous request to continue listing results after the first page.
  - `maxResults` integer — The maximum number of results the response can return. If your request would return more than the maximum the response will return a <code>nextToken</code> value, use this value when you call the action again to get the remaining results.
  - `accountIds` StringFilter[] — The Amazon Web Services account IDs to retrieve finding aggregation data for.
    - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
    - `value` string, required — The value to filter on.
  - `aggregationRequest` object — Contains details about an aggregation request.
    - `accountAggregation` object — An object that contains details about an aggregation request based on Amazon Web Services account IDs.
      - `findingType` 'NETWORK_REACHABILITY' | 'PACKAGE_VULNERABILITY' | 'CODE_VULNERABILITY' — The type of finding.
      - `resourceType` 'AWS_EC2_INSTANCE' | 'AWS_ECR_CONTAINER_IMAGE' | 'AWS_LAMBDA_FUNCTION' | 'CODE_REPOSITORY' | 'Microsoft.Compute/virtualMachines' | 'Microsoft.ContainerRegistry/registry/containerImage' | 'Microsoft.Web/sites' — The type of resource.
      - `sortOrder` 'ASC' | 'DESC' — The sort order (ascending or descending).
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort by.
    - `amiAggregation` object — An object that contains details about an aggregation request based on Amazon Machine Images (AMIs).
      - `amis` StringFilter[] — The IDs of AMIs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' | 'AFFECTED_INSTANCES' — The value to sort results by.
    - `awsEcrContainerAggregation` object — An object that contains details about an aggregation request based on Amazon ECR container images.
      - `resourceIds` StringFilter[] — The container resource IDs.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `imageShas` StringFilter[] — The image SHA values.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `repositories` StringFilter[] — The container repositories.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `architectures` StringFilter[] — The architecture of the containers.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `imageTags` StringFilter[] — The image tags.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `sortOrder` 'ASC' | 'DESC' — The sort order (ascending or descending).
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort by.
      - `lastInUseAt` DateFilter[] — The last time an Amazon ECR image was used in an Amazon ECS task or Amazon EKS pod.
        - `startInclusive` string, date-time — A timestamp representing the start of the time period filtered on.
        - `endInclusive` string, date-time — A timestamp representing the end of the time period filtered on.
      - `inUseCount` NumberFilter[] — The number of Amazon ECS tasks or Amazon EKS pods where the Amazon ECR container image is in use.
        - `upperInclusive` number, double — The highest number to be included in the filter.
        - `lowerInclusive` number, double — The lowest number to be included in the filter.
    - `ec2InstanceAggregation` object — An object that contains details about an aggregation request based on Amazon EC2 instances.
      - `amis` StringFilter[] — The AMI IDs associated with the Amazon EC2 instances to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `operatingSystems` StringFilter[] — The operating system types to aggregate findings for. Valid values must be uppercase and underscore separated, examples are <code>ORACLE_LINUX_7</code> and <code>ALPINE_LINUX_3_8</code>.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `instanceIds` StringFilter[] — The Amazon EC2 instance IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `instanceTags` MapFilter[] — The Amazon EC2 instance tags to aggregate findings for.
        - `comparison` 'EQUALS', required — The operator to use when comparing values in the filter.
        - `key` string, required — The tag key used in the filter.
        - `value` string — The tag value used in the filter.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by.
      - `sortBy` 'NETWORK_FINDINGS' | 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort results by.
    - `findingTypeAggregation` object — An object that contains details about an aggregation request based on finding types.
      - `findingType` 'NETWORK_REACHABILITY' | 'PACKAGE_VULNERABILITY' | 'CODE_VULNERABILITY' — The finding type to aggregate.
      - `resourceType` 'AWS_EC2_INSTANCE' | 'AWS_ECR_CONTAINER_IMAGE' | 'AWS_LAMBDA_FUNCTION' | 'CODE_REPOSITORY' | 'Microsoft.Compute/virtualMachines' | 'Microsoft.ContainerRegistry/registry/containerImage' | 'Microsoft.Web/sites' — The resource type to aggregate.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort results by.
    - `imageLayerAggregation` object — An object that contains details about an aggregation request based on container image layers.
      - `repositories` StringFilter[] — The repository associated with the container image hosting the layers.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `resourceIds` StringFilter[] — The ID of the container image layer.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `layerHashes` StringFilter[] — The hashes associated with the layers.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudProviders` StringFilter[] — <p>The cloud providers to aggregate findings for. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudAccountIds` StringFilter[] — The cloud account IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudOrgIds` StringFilter[] — The cloud organization IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudRegions` StringFilter[] — <p>The cloud regions to aggregate findings for. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudPartitions` StringFilter[] — <p>The cloud partitions to aggregate findings for. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort results by.
    - `packageAggregation` object — An object that contains details about an aggregation request based on operating system package type.
      - `packageNames` StringFilter[] — The names of packages to aggregate findings on.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort results by.
    - `repositoryAggregation` object — An object that contains details about an aggregation request based on Amazon ECR repositories.
      - `repositories` StringFilter[] — The names of repositories to aggregate findings on.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' | 'AFFECTED_IMAGES' — The value to sort results by.
    - `titleAggregation` object — An object that contains details about an aggregation request based on finding title.
      - `titles` StringFilter[] — The finding titles to aggregate on.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `vulnerabilityIds` StringFilter[] — The vulnerability IDs of the findings.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `resourceType` 'AWS_EC2_INSTANCE' | 'AWS_ECR_CONTAINER_IMAGE' | 'AWS_LAMBDA_FUNCTION' | 'CODE_REPOSITORY' | 'Microsoft.Compute/virtualMachines' | 'Microsoft.ContainerRegistry/registry/containerImage' | 'Microsoft.Web/sites' — The resource type to aggregate on.
      - `findingType` 'NETWORK_REACHABILITY' | 'PACKAGE_VULNERABILITY' | 'CODE_VULNERABILITY' — The type of finding to aggregate on.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort results by.
    - `lambdaLayerAggregation` object — Returns an object with findings aggregated by Amazon Web Services Lambda layer.
      - `functionNames` StringFilter[] — The names of the Amazon Web Services Lambda functions associated with the layers.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `resourceIds` StringFilter[] — The resource IDs for the Amazon Web Services Lambda function layers.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `layerArns` StringFilter[] — The Amazon Resource Name (ARN) of the Amazon Web Services Lambda function layer.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `sortOrder` 'ASC' | 'DESC' — The order to use for sorting the results.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The finding severity to use for sorting the results.
    - `lambdaFunctionAggregation` object — Returns an object with findings aggregated by Amazon Web Services Lambda function.
      - `resourceIds` StringFilter[] — The resource IDs to include in the aggregation results.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `functionNames` StringFilter[] — The Amazon Web Services Lambda function names to include in the aggregation results.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `runtimes` StringFilter[] — Returns findings aggregated by Amazon Web Services Lambda function runtime environments.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `functionTags` MapFilter[] — The tags to include in the aggregation results.
        - `comparison` 'EQUALS', required — The operator to use when comparing values in the filter.
        - `key` string, required — The tag key used in the filter.
        - `value` string — The tag value used in the filter.
      - `sortOrder` 'ASC' | 'DESC' — The order to use for sorting the results.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The finding severity to use for sorting the results.
    - `codeRepositoryAggregation` object — An object that contains details about an aggregation request based on code repositories.
      - `projectNames` StringFilter[] — The project names to include in the aggregation results.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `providerTypes` StringFilter[] — The repository provider types to include in the aggregation results.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by (ascending or descending) in the code repository aggregation.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort results by in the code repository aggregation.
      - `resourceIds` StringFilter[] — The resource IDs to include in the aggregation results.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
    - `vmInstanceAggregation` object — An object that contains details about an aggregation request based on virtual machine (VM) instances.
      - `resourceIds` StringFilter[] — The resource IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `operatingSystems` StringFilter[] — The operating systems to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `instanceTags` MapFilter[] — The instance tags to aggregate findings for.
        - `comparison` 'EQUALS', required — The operator to use when comparing values in the filter.
        - `key` string, required — The tag key used in the filter.
        - `value` string — The tag value used in the filter.
      - `vmImageReferences` StringFilter[] — The VM image references to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudProviders` StringFilter[] — <p>The cloud providers to aggregate findings for. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudPartitions` StringFilter[] — <p>The cloud partitions to aggregate findings for. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudRegions` StringFilter[] — <p>The cloud regions to aggregate findings for. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudOrgIds` StringFilter[] — The cloud organization IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudAccountIds` StringFilter[] — The cloud account IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by. Valid values are <code>ASC</code> and <code>DESC</code>.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' | 'NETWORK_FINDINGS' — The value to sort results by. Specify a field name from the aggregation response, such as <code>CRITICAL</code>, <code>HIGH</code>, <code>ALL</code>, or <code>NETWORK_FINDINGS</code>.
    - `containerImageAggregation` object — An object that contains details about an aggregation request based on container images.
      - `resourceIds` StringFilter[] — The resource IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `imageDigests` StringFilter[] — The image digests to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `repositories` StringFilter[] — The image repositories to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `registries` StringFilter[] — The image registries to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `architectures` StringFilter[] — The image architectures to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `imageTags` StringFilter[] — The image tags to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudProviders` StringFilter[] — <p>The cloud providers to aggregate findings for. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudPartitions` StringFilter[] — <p>The cloud partitions to aggregate findings for. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudRegions` StringFilter[] — <p>The cloud regions to aggregate findings for. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudOrgIds` StringFilter[] — The cloud organization IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudAccountIds` StringFilter[] — The cloud account IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `lastInUseAt` DateFilter[] — The last in-use timestamps to aggregate findings for.
        - `startInclusive` string, date-time — A timestamp representing the start of the time period filtered on.
        - `endInclusive` string, date-time — A timestamp representing the end of the time period filtered on.
      - `inUseCount` NumberFilter[] — The in-use counts to aggregate findings for.
        - `upperInclusive` number, double — The highest number to be included in the filter.
        - `lowerInclusive` number, double — The lowest number to be included in the filter.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by. Valid values are <code>ASC</code> and <code>DESC</code>.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort results by. Specify a field name from the aggregation response, such as <code>CRITICAL</code>, <code>HIGH</code>, or <code>ALL</code>.
    - `serverlessFunctionAggregation` object — An object that contains details about an aggregation request based on serverless functions.
      - `resourceIds` StringFilter[] — The resource IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `functionNames` StringFilter[] — The function names to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `runtimes` StringFilter[] — The runtimes to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `functionTags` MapFilter[] — The function tags to aggregate findings for.
        - `comparison` 'EQUALS', required — The operator to use when comparing values in the filter.
        - `key` string, required — The tag key used in the filter.
        - `value` string — The tag value used in the filter.
      - `cloudProviders` StringFilter[] — <p>The cloud providers to aggregate findings for. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudPartitions` StringFilter[] — <p>The cloud partitions to aggregate findings for. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudRegions` StringFilter[] — <p>The cloud regions to aggregate findings for. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudOrgIds` StringFilter[] — The cloud organization IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `cloudAccountIds` StringFilter[] — The cloud account IDs to aggregate findings for.
        - `comparison` 'EQUALS' | 'PREFIX' | 'NOT_EQUALS', required — The operator to use when comparing values in the filter.
        - `value` string, required — The value to filter on.
      - `sortOrder` 'ASC' | 'DESC' — The order to sort results by. Valid values are <code>ASC</code> and <code>DESC</code>.
      - `sortBy` 'CRITICAL' | 'HIGH' | 'ALL' — The value to sort results by. Specify a field name from the aggregation response, such as <code>CRITICAL</code>, <code>HIGH</code>, or <code>ALL</code>.

## Response `200`

Success

- ListFindingAggregationsResponse
  - `aggregationType` 'FINDING_TYPE' | 'PACKAGE' | 'TITLE' | 'REPOSITORY' | 'AMI' | 'AWS_EC2_INSTANCE' | 'AWS_ECR_CONTAINER' | 'IMAGE_LAYER' | 'ACCOUNT' | 'AWS_LAMBDA_FUNCTION' | 'LAMBDA_LAYER' | 'CODE_REPOSITORY' | 'VM_INSTANCE' | 'CONTAINER_IMAGE' | 'SERVERLESS_FUNCTION', required — The type of aggregation to perform.
  - `responses` AggregationResponse[] — Objects that contain the results of an aggregation operation.
    - `accountAggregation` object — An object that contains details about an aggregation response based on Amazon Web Services account IDs.
      - `accountId` string — The Amazon Web Services account ID.
      - `severityCounts` object — The number of findings by severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `exploitAvailableCount` integer — The number of findings that have an exploit available.
      - `fixAvailableCount` integer — Details about the number of fixes.
    - `amiAggregation` object — An object that contains details about an aggregation response based on Amazon Machine Images (AMIs).
      - `ami` string, required — The ID of the AMI that findings were aggregated for.
      - `accountId` string — The Amazon Web Services account ID for the AMI.
      - `cloudProvider` 'AWS' | 'AZURE' — <p>The cloud service provider associated with this Amazon Machine Image (AMI) aggregation. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
      - `cloudPartition` string — <p>The cloud infrastructure partition associated with this AMI aggregation. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
      - `cloudRegion` string — <p>The cloud Region associated with this AMI aggregation. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
      - `cloudOrgId` string — The cloud organization ID for the AMI aggregation.
      - `cloudAccountId` string — The cloud account ID for the AMI aggregation.
      - `severityCounts` object — An object that contains the count of matched findings per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `affectedInstances` integer — The IDs of Amazon EC2 instances using this AMI.
    - `awsEcrContainerAggregation` object — An object that contains details about an aggregation response based on Amazon ECR container images.
      - `resourceId` string, required — The resource ID of the container.
      - `imageSha` string — The SHA value of the container image.
      - `repository` string — The container repository.
      - `architecture` string — The architecture of the container.
      - `imageTags` NonEmptyString[] — The container image stags.
      - `accountId` string — The Amazon Web Services account ID of the account that owns the container.
      - `severityCounts` object — The number of finding by severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `lastInUseAt` string, date-time — The last time an Amazon ECR image was used in an Amazon ECS task or Amazon EKS pod.
      - `inUseCount` integer — The number of Amazon ECS tasks or Amazon EKS pods where the Amazon ECR container image is in use.
    - `ec2InstanceAggregation` object — An object that contains details about an aggregation response based on Amazon EC2 instances.
      - `instanceId` string, required — The Amazon EC2 instance ID.
      - `ami` string — The Amazon Machine Image (AMI) of the Amazon EC2 instance.
      - `operatingSystem` string — The operating system of the Amazon EC2 instance.
      - `instanceTags` object — The tags attached to the instance.
      - `accountId` string — The Amazon Web Services account for the Amazon EC2 instance.
      - `severityCounts` object — An object that contains the count of matched findings per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `networkFindings` integer — The number of network findings for the Amazon EC2 instance.
    - `findingTypeAggregation` object — An object that contains details about an aggregation response based on finding types.
      - `accountId` string — The ID of the Amazon Web Services account associated with the findings.
      - `severityCounts` object — The value to sort results by.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `exploitAvailableCount` integer — The number of findings that have an exploit available.
      - `fixAvailableCount` integer — Details about the number of fixes.
      - `cloudProvider` string — <p>The cloud service provider associated with this finding type aggregation. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
      - `cloudAccountId` string — The cloud account ID for the finding type aggregation.
      - `cloudOrgId` string — The cloud organization ID for the finding type aggregation.
      - `cloudRegion` string — <p>The cloud Region associated with this finding type aggregation. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
      - `cloudPartition` string — <p>The cloud infrastructure partition associated with this finding type aggregation. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
    - `imageLayerAggregation` object — An object that contains details about an aggregation response based on container image layers.
      - `repository` string, required — The repository the layer resides in.
      - `resourceId` string, required — The resource ID of the container image layer.
      - `layerHash` string, required — The layer hash.
      - `accountId` string, required — The ID of the Amazon Web Services account that owns the container image hosting the layer image.
      - `cloudProvider` string — <p>The cloud service provider associated with this image layer aggregation. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
      - `cloudAccountId` string — The cloud account ID for the image layer aggregation.
      - `cloudOrgId` string — The cloud organization ID for the image layer aggregation.
      - `cloudRegion` string — <p>The cloud Region associated with this image layer aggregation. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
      - `cloudPartition` string — <p>The cloud infrastructure partition associated with this image layer aggregation. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
      - `severityCounts` object — An object that represents the count of matched findings per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
    - `packageAggregation` object — An object that contains details about an aggregation response based on operating system package type.
      - `packageName` string, required — The name of the operating system package.
      - `accountId` string — The ID of the Amazon Web Services account associated with the findings.
      - `severityCounts` object — An object that contains the count of matched findings per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
    - `repositoryAggregation` object — An object that contains details about an aggregation response based on Amazon ECR repositories.
      - `repository` string, required — The name of the repository associated with the findings.
      - `accountId` string — The ID of the Amazon Web Services account associated with the findings.
      - `cloudProvider` 'AWS' | 'AZURE' — <p>The cloud service provider associated with this repository aggregation. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
      - `cloudPartition` string — <p>The cloud infrastructure partition associated with this repository aggregation. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
      - `cloudRegion` string — <p>The cloud Region associated with this repository aggregation. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
      - `cloudOrgId` string — The cloud organization ID for the repository aggregation.
      - `cloudAccountId` string — The cloud account ID for the repository aggregation.
      - `severityCounts` object — An object that represent the count of matched findings per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `affectedImages` integer — The number of container images impacted by the findings.
    - `titleAggregation` object — An object that contains details about an aggregation response based on finding title.
      - `title` string, required — The title that the findings were aggregated on.
      - `vulnerabilityId` string — The vulnerability ID of the finding.
      - `accountId` string — The ID of the Amazon Web Services account associated with the findings.
      - `severityCounts` object — An object that represent the count of matched findings per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
    - `lambdaLayerAggregation` object — An aggregation of findings by Amazon Web Services Lambda layer.
      - `functionName` string, required — The names of the Amazon Web Services Lambda functions associated with the layers.
      - `resourceId` string, required — The Resource ID of the Amazon Web Services Lambda function layer.
      - `layerArn` string, required — The Amazon Resource Name (ARN) of the Amazon Web Services Lambda function layer.
      - `accountId` string, required — The account ID of the Amazon Web Services Lambda function layer.
      - `severityCounts` object — An object that contains the counts of aggregated finding per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
    - `lambdaFunctionAggregation` object — An aggregation of findings by Amazon Web Services Lambda function.
      - `resourceId` string, required — The resource IDs included in the aggregation results.
      - `functionName` string — The Amazon Web Services Lambda function names included in the aggregation results.
      - `runtime` string — The runtimes included in the aggregation results.
      - `lambdaTags` object — The tags included in the aggregation results.
      - `accountId` string — The ID of the Amazon Web Services account that owns the Amazon Web Services Lambda function.
      - `severityCounts` object — An object that contains the counts of aggregated finding per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `lastModifiedAt` string, date-time — The date that the Amazon Web Services Lambda function included in the aggregation results was last changed.
    - `codeRepositoryAggregation` object — An object that contains details about an aggregation response based on code repositories.
      - `projectNames` string, required — The names of the projects associated with the code repository.
      - `providerType` string — The type of repository provider for the code repository.
      - `severityCounts` SeverityCounts — An object that contains the counts of aggregated finding per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `exploitAvailableActiveFindingsCount` integer — The number of active findings that have an exploit available for the code repository.
      - `fixAvailableActiveFindingsCount` integer — The number of active findings that have a fix available for the code repository.
      - `accountId` string — The Amazon Web Services account ID associated with the code repository.
      - `resourceId` string — The resource ID of the code repository.
    - `vmInstanceAggregation` object — An object that contains details about an aggregation response based on VM instances.
      - `resourceId` string, required — The resource ID for the VM instance.
      - `cloudProvider` 'AWS' | 'AZURE' — <p>The cloud service provider associated with this VM instance aggregation. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
      - `cloudAccountId` string — The cloud account ID for the VM instance aggregation.
      - `cloudPartition` string — <p>The cloud infrastructure partition associated with this VM instance aggregation. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
      - `cloudRegion` string — <p>The cloud Region associated with this VM instance aggregation. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
      - `cloudOrgId` string — The cloud organization ID for the VM instance aggregation.
      - `vmImageReference` string — The VM image reference for the VM instance.
      - `operatingSystem` string — The operating system of the VM instance.
      - `tags` object — The tags attached to the VM instance.
      - `accountId` string — The account ID associated with the VM instance.
      - `severityCounts` SeverityCounts — An object that contains the counts of aggregated finding per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `networkFindings` integer — The number of network findings for the VM instance. This field applies only to Amazon Web Services resources.
      - `exploitAvailableActiveFindingsCount` integer — The number of active findings with an exploit available for the VM instance.
      - `fixAvailableActiveFindingsCount` integer — The number of active findings with a fix available for the VM instance.
    - `containerImageAggregation` object — An object that contains details about an aggregation response based on container images.
      - `resourceId` string, required — The resource ID for the container image.
      - `cloudProvider` 'AWS' | 'AZURE' — <p>The cloud service provider associated with this container image aggregation. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
      - `cloudAccountId` string — The cloud account ID for the container image aggregation.
      - `cloudPartition` string — <p>The cloud infrastructure partition associated with this container image aggregation. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
      - `cloudRegion` string — <p>The cloud Region associated with this container image aggregation. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
      - `cloudOrgId` string — The cloud organization ID for the container image aggregation.
      - `imageDigest` string — The image digest for the container image.
      - `repository` string — The repository for the container image.
      - `registry` string — The registry for the container image.
      - `architecture` string — The architecture of the container image.
      - `imageTags` NonEmptyString[] — The image tags attached to the container image.
      - `accountId` string — The account ID associated with the container image.
      - `severityCounts` SeverityCounts — An object that contains the counts of aggregated finding per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `lastInUseAt` string, date-time — The last time the container image was in use.
      - `inUseCount` integer — The number of times the container image is in use.
      - `exploitAvailableActiveFindingsCount` integer — The number of active findings with an exploit available for the container image.
      - `fixAvailableActiveFindingsCount` integer — The number of active findings with a fix available for the container image.
    - `serverlessFunctionAggregation` object — An object that contains details about an aggregation response based on serverless functions.
      - `resourceId` string, required — The resource ID for the serverless function.
      - `cloudProvider` 'AWS' | 'AZURE' — <p>The cloud service provider associated with this serverless function aggregation. Valid values:</p> <ul> <li> <p> <code>AWS</code> – Findings from Amazon Web Services resources.</p> </li> <li> <p> <code>AZURE</code> – Findings from Microsoft Azure resources.</p> </li> </ul>
      - `cloudAccountId` string — The cloud account ID for the serverless function aggregation.
      - `cloudPartition` string — <p>The cloud infrastructure partition associated with this serverless function aggregation. Valid values:</p> <ul> <li> <p> <code>aws</code> – Amazon Web Services commercial Regions.</p> </li> <li> <p> <code>aws-cn</code> – Amazon Web Services China Regions.</p> </li> <li> <p> <code>aws-us-gov</code> – Amazon Web Services GovCloud (US) Regions.</p> </li> <li> <p> <code>AzureCloud</code> – Azure commercial Regions.</p> </li> </ul>
      - `cloudRegion` string — <p>The cloud Region associated with this serverless function aggregation. The value format depends on the cloud provider:</p> <ul> <li> <p>An Amazon Web Services Region, such as <code>us-east-1</code>.</p> </li> <li> <p>An Azure region, such as <code>eastus</code>.</p> </li> </ul>
      - `cloudOrgId` string — The cloud organization ID for the serverless function aggregation.
      - `functionName` string — The name of the serverless function.
      - `runtime` string — The runtime of the serverless function.
      - `tags` object — The tags attached to the serverless function.
      - `accountId` string — The account ID associated with the serverless function.
      - `severityCounts` SeverityCounts — An object that contains the counts of aggregated finding per severity.
        - `all` integer — The total count of findings from all severities.
        - `medium` integer — The total count of medium severity findings.
        - `high` integer — The total count of high severity findings.
        - `critical` integer — The total count of critical severity findings.
      - `lastModifiedAt` string, date-time — The date and time the serverless function was last modified.
      - `exploitAvailableActiveFindingsCount` integer — The number of active findings with an exploit available for the serverless function.
      - `fixAvailableActiveFindingsCount` integer — The number of active findings with a fix available for the serverless function.
  - `nextToken` string — 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 <code>NextToken</code> value returned from the previous request to continue listing results after the first page.

## Other responses

- `480` — ValidationException
- `481` — ThrottlingException
- `482` — InternalServerException

---

[API](https://skmtc.net/aws/apis/inspector2.md) · [All operations](https://skmtc.net/aws/apis/inspector2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/aws/inspector2/versions/c51110c7cd43/schema)
