Amazon GuardDuty · JSON Structure

Guardduty Describe Publishing Destination Response Structure

DescribePublishingDestinationResponse schema from Amazon GuardDuty API

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

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

Properties

DestinationId DestinationType Status PublishingFailureStartTimestamp DestinationProperties

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-describe-publishing-destination-response-structure.json",
  "name": "DescribePublishingDestinationResponse",
  "description": "DescribePublishingDestinationResponse schema from Amazon GuardDuty API",
  "type": "object",
  "properties": {
    "DestinationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "destinationId"
          },
          "description": "The ID of the publishing destination."
        }
      ]
    },
    "DestinationType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DestinationType"
        },
        {
          "xml": {
            "name": "destinationType"
          },
          "description": "The type of 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."
        }
      ]
    },
    "PublishingFailureStartTimestamp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "xml": {
            "name": "publishingFailureStartTimestamp"
          },
          "description": "The time, in epoch millisecond format, at which GuardDuty was first unable to publish findings to the destination."
        }
      ]
    },
    "DestinationProperties": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DestinationProperties"
        },
        {
          "xml": {
            "name": "destinationProperties"
          },
          "description": "A <code>DestinationProperties</code> object that includes the <code>DestinationArn</code> and <code>KmsKeyArn</code> of the publishing destination."
        }
      ]
    }
  },
  "required": [
    "DestinationId",
    "DestinationType",
    "Status",
    "PublishingFailureStartTimestamp",
    "DestinationProperties"
  ]
}