{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-s3-content-location-update-schema.json", "title": "S3ContentLocationUpdate", "description": "Describes an update for the Amazon S3 code content location for an application.", "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." } ] } } }