{ "$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" ] }