Amazon GuardDuty · Schema

UpdateFindingsFeedbackRequest

UpdateFindingsFeedbackRequest schema from Amazon GuardDuty API

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
FindingIds object
Feedback object
Comments object
View JSON Schema on GitHub

JSON Schema

guardduty-update-findings-feedback-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-update-findings-feedback-request-schema.json",
  "title": "UpdateFindingsFeedbackRequest",
  "description": "UpdateFindingsFeedbackRequest 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 mark as useful or not useful."
        }
      ]
    },
    "Feedback": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Feedback"
        },
        {
          "xml": {
            "name": "feedback"
          },
          "description": "The feedback for the finding."
        }
      ]
    },
    "Comments": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "comments"
          },
          "description": "Additional feedback about the GuardDuty findings."
        }
      ]
    }
  },
  "required": [
    "FindingIds",
    "Feedback"
  ]
}