Amazon Ground Station · JSON Structure

Ground Station S3 Recording Config Structure

Information about an S3 recording Config.

Type: object Properties: 3 Required: 2
Data ProcessingIoTSatellite CommunicationsSpace Technology

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

Properties

bucketArn prefix roleArn

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-ground-station/refs/heads/main/json-structure/ground-station-s3-recording-config-structure.json",
  "name": "S3RecordingConfig",
  "description": "Information about an S3 recording <code>Config</code>.",
  "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"
  ]
}