Amazon Managed Apache Flink Add Application Input Processing Configuration Request Structure

AddApplicationInputProcessingConfigurationRequest schema from Amazon Managed Service for Apache Flink API

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

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

Properties

ApplicationName CurrentApplicationVersionId InputId InputProcessingConfiguration

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-add-application-input-processing-configuration-request-structure.json",
  "name": "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 <a>DescribeApplication</a> operation to get the current application version. If the version specified is not the current version, the <code>ConcurrentModificationException</code> 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 <a>DescribeApplication</a> operation."
        }
      ]
    },
    "InputProcessingConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/InputProcessingConfiguration"
        },
        {
          "description": "The <a>InputProcessingConfiguration</a> to add to the application."
        }
      ]
    }
  },
  "required": [
    "ApplicationName",
    "CurrentApplicationVersionId",
    "InputId",
    "InputProcessingConfiguration"
  ]
}