Amazon MSK · JSON Structure

Msk Api S3 Structure

S3 schema from Amazon MSK API

Type: object Properties: 3 Required: 1
BroadcastingMedia ProcessingMedia

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

Properties

Bucket Enabled Prefix

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-msk/refs/heads/main/json-structure/msk-api-s3-structure.json",
  "name": "S3",
  "type": "object",
  "description": "S3 schema from Amazon MSK API",
  "properties": {
    "Bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "bucket"
          }
        }
      ]
    },
    "Enabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__boolean"
        },
        {
          "xml": {
            "name": "enabled"
          }
        }
      ]
    },
    "Prefix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "prefix"
          }
        }
      ]
    }
  },
  "required": [
    "Enabled"
  ]
}