AWS Kinesis · Schema

S3ApplicationCodeLocationDescription

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

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
BucketARN object
FileKey object
ObjectVersion object
View JSON Schema on GitHub

JSON Schema

kinesis-s3applicationcodelocationdescription-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/S3ApplicationCodeLocationDescription",
  "title": "S3ApplicationCodeLocationDescription",
  "type": "object",
  "required": [
    "BucketARN",
    "FileKey"
  ],
  "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."
        }
      ]
    }
  },
  "description": "Describes the location of an application's code stored in an S3 bucket."
}