{ "$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-properties-schema.json", "title": "DestinationProperties", "description": "Contains the Amazon Resource Name (ARN) of the resource to publish to, such as an S3 bucket, and the ARN of the KMS key to use to encrypt published findings.", "type": "object", "properties": { "DestinationArn": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "destinationArn" }, "description": "

The ARN of the resource to publish to.

To specify an S3 bucket folder use the following format: arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/

" } ] }, "KmsKeyArn": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "kmsKeyArn" }, "description": "The ARN of the KMS key to use for encryption." } ] } } }