Amazon GuardDuty · JSON Structure

Guardduty Destination Structure

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

Type: object Properties: 3 Required: 3
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Destination is a JSON Structure definition published by Amazon GuardDuty, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DestinationId DestinationType Status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-structure/guardduty-destination-structure.json",
  "name": "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"
  ]
}