S3RecordingDetails

Details about an S3 recording Config used in a contact.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
bucketArn object
keyTemplate object
View JSON Schema on GitHub

JSON Schema

ground-station-s3-recording-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-s3-recording-details-schema.json",
  "title": "S3RecordingDetails",
  "description": "Details about an S3 recording <code>Config</code> used in a contact.",
  "type": "object",
  "properties": {
    "bucketArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BucketArn"
        },
        {
          "description": "ARN of the bucket used."
        }
      ]
    },
    "keyTemplate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Key template used for the S3 Recording Configuration"
        }
      ]
    }
  }
}