AWS Kinesis · Schema

S3ContentLocationUpdate

Describes an update for the Amazon S3 code content location for an application.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
BucketARNUpdate object
FileKeyUpdate object
ObjectVersionUpdate object
View JSON Schema on GitHub

JSON Schema

kinesis-s3contentlocationupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/S3ContentLocationUpdate",
  "title": "S3ContentLocationUpdate",
  "type": "object",
  "properties": {
    "BucketARNUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BucketARN"
        },
        {
          "description": "The new Amazon Resource Name (ARN) for the S3 bucket containing the application code."
        }
      ]
    },
    "FileKeyUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FileKey"
        },
        {
          "description": "The new file key for the object containing the application code."
        }
      ]
    },
    "ObjectVersionUpdate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ObjectVersion"
        },
        {
          "description": "The new version of the object containing the application code."
        }
      ]
    }
  },
  "description": "Describes an update for the Amazon S3 code content location for an application."
}