{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-structure/ground-station-s3-recording-config-structure.json", "name": "S3RecordingConfig", "description": "Information about an S3 recording Config.", "type": "object", "properties": { "bucketArn": { "allOf": [ { "$ref": "#/components/schemas/BucketArn" }, { "description": "ARN of the bucket to record to." } ] }, "prefix": { "allOf": [ { "$ref": "#/components/schemas/S3KeyPrefix" }, { "description": "S3 Key prefix to prefice data files." } ] }, "roleArn": { "allOf": [ { "$ref": "#/components/schemas/RoleArn" }, { "description": "ARN of the role Ground Station assumes to write data to the bucket." } ] } }, "required": [ "bucketArn", "roleArn" ] }