Amazon GuardDuty · Schema

Destination

Contains information about the publishing destination, including the ID, type, and status.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
DestinationId object
DestinationType object
Status object
View JSON Schema on GitHub

JSON Schema

guardduty-destination-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-destination-schema.json",
  "title": "Destination",
  "description": "Contains information about the publishing destination, including the ID, type, and status.",
  "type": "object",
  "properties": {
    "DestinationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "destinationId"
          },
          "description": "The unique ID of the publishing destination."
        }
      ]
    },
    "DestinationType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DestinationType"
        },
        {
          "xml": {
            "name": "destinationType"
          },
          "description": "The type of resource used for the publishing destination. Currently, only Amazon S3 buckets are supported."
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PublishingStatus"
        },
        {
          "xml": {
            "name": "status"
          },
          "description": "The status of the publishing destination."
        }
      ]
    }
  },
  "required": [
    "DestinationId",
    "DestinationType",
    "Status"
  ]
}