{ "$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-add-application-input-processing-configuration-request-schema.json", "title": "AddApplicationInputProcessingConfigurationRequest", "description": "AddApplicationInputProcessingConfigurationRequest schema from Amazon Managed Service for Apache Flink API", "type": "object", "properties": { "ApplicationName": { "allOf": [ { "$ref": "#/components/schemas/ApplicationName" }, { "description": "The name of the application to which you want to add the input processing configuration." } ] }, "CurrentApplicationVersionId": { "allOf": [ { "$ref": "#/components/schemas/ApplicationVersionId" }, { "description": "The version of the application to which you want to add the input processing configuration. You can use the DescribeApplication operation to get the current application version. If the version specified is not the current version, the ConcurrentModificationException is returned." } ] }, "InputId": { "allOf": [ { "$ref": "#/components/schemas/Id" }, { "description": "The ID of the input configuration to add the input processing configuration to. You can get a list of the input IDs for an application using the DescribeApplication operation." } ] }, "InputProcessingConfiguration": { "allOf": [ { "$ref": "#/components/schemas/InputProcessingConfiguration" }, { "description": "The InputProcessingConfiguration to add to the application." } ] } }, "required": [ "ApplicationName", "CurrentApplicationVersionId", "InputId", "InputProcessingConfiguration" ] }