Amazon Managed Apache Flink S3 Application Code Location Description Structure

Describes the location of an application's code stored in an S3 bucket.

Type: object Properties: 3 Required: 2
Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

S3ApplicationCodeLocationDescription is a JSON Structure definition published by Amazon Managed Service for Apache Flink, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

BucketARN FileKey ObjectVersion

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-managed-apache-flink/refs/heads/main/json-structure/amazon-managed-apache-flink-s3-application-code-location-description-structure.json",
  "name": "S3ApplicationCodeLocationDescription",
  "description": "Describes the location of an application's code stored in an S3 bucket.",
  "type": "object",
  "properties": {
    "BucketARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BucketARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) for the S3 bucket containing the application code."
        }
      ]
    },
    "FileKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FileKey"
        },
        {
          "description": "The file key for the object containing the application code."
        }
      ]
    },
    "ObjectVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ObjectVersion"
        },
        {
          "description": "The version of the object containing the application code."
        }
      ]
    }
  },
  "required": [
    "BucketARN",
    "FileKey"
  ]
}