Amazon GuardDuty · Schema

GetFindingsRequest

GetFindingsRequest schema from Amazon GuardDuty API

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
FindingIds object
SortCriteria object
View JSON Schema on GitHub

JSON Schema

guardduty-get-findings-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-get-findings-request-schema.json",
  "title": "GetFindingsRequest",
  "description": "GetFindingsRequest schema from Amazon GuardDuty API",
  "type": "object",
  "properties": {
    "FindingIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FindingIds"
        },
        {
          "xml": {
            "name": "findingIds"
          },
          "description": "The IDs of the findings that you want to retrieve."
        }
      ]
    },
    "SortCriteria": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SortCriteria"
        },
        {
          "xml": {
            "name": "sortCriteria"
          },
          "description": "Represents the criteria used for sorting findings."
        }
      ]
    }
  },
  "required": [
    "FindingIds"
  ]
}