ListFindingsReportsResponse

The structure representing the ListFindingsReportsResponse.

AmazonApplication PerformanceProfilingDevOpsMachine Learning

Properties

Name Type Description
findingsReportSummaries object
nextToken object
View JSON Schema on GitHub

JSON Schema

amazon-codeguru-profiler-list-findings-reports-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-profiler/refs/heads/main/json-schema/amazon-codeguru-profiler-list-findings-reports-response-schema.json",
  "title": "ListFindingsReportsResponse",
  "description": "The structure representing the ListFindingsReportsResponse.",
  "type": "object",
  "properties": {
    "findingsReportSummaries": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FindingsReportSummaries"
        },
        {
          "description": "The list of analysis results summaries."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "The <code>nextToken</code> value to include in a future <code>ListFindingsReports</code> request. When the results of a <code>ListFindingsReports</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return."
        }
      ]
    }
  },
  "required": [
    "findingsReportSummaries"
  ]
}