Amazon Managed Apache Flink Add Application Output Request Structure

AddApplicationOutputRequest schema from Amazon Managed Service for Apache Flink API

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

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

Properties

ApplicationName CurrentApplicationVersionId Output

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-output-request-structure.json",
  "name": "AddApplicationOutputRequest",
  "description": "AddApplicationOutputRequest 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 output configuration."
        }
      ]
    },
    "CurrentApplicationVersionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationVersionId"
        },
        {
          "description": "The version of the application to which you want to add the output 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. "
        }
      ]
    },
    "Output": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Output"
        },
        {
          "description": "An array of objects, each describing one output configuration. In the output configuration, you specify the name of an in-application stream, a destination (that is, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an Amazon Lambda function), and record the formation to use when writing to the destination."
        }
      ]
    }
  },
  "required": [
    "ApplicationName",
    "CurrentApplicationVersionId",
    "Output"
  ]
}