Amazon Managed Apache Flink Application Summary Structure

Provides application summary information, including the application Amazon Resource Name (ARN), name, and status.

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

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

Properties

ApplicationName ApplicationARN ApplicationStatus ApplicationVersionId RuntimeEnvironment ApplicationMode

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-application-summary-structure.json",
  "name": "ApplicationSummary",
  "description": "Provides application summary information, including the application Amazon Resource Name (ARN), name, and status.",
  "type": "object",
  "properties": {
    "ApplicationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationName"
        },
        {
          "description": "The name of the application."
        }
      ]
    },
    "ApplicationARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The ARN of the application."
        }
      ]
    },
    "ApplicationStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationStatus"
        },
        {
          "description": "The status of the application."
        }
      ]
    },
    "ApplicationVersionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationVersionId"
        },
        {
          "description": "Provides the current application version."
        }
      ]
    },
    "RuntimeEnvironment": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RuntimeEnvironment"
        },
        {
          "description": "The runtime environment for the application."
        }
      ]
    },
    "ApplicationMode": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationMode"
        },
        {
          "description": "For a Kinesis Data Analytics for Apache Flink application, the mode is <code>STREAMING</code>. For a Kinesis Data Analytics Studio notebook, it is <code>INTERACTIVE</code>."
        }
      ]
    }
  },
  "required": [
    "ApplicationName",
    "ApplicationARN",
    "ApplicationStatus",
    "ApplicationVersionId",
    "RuntimeEnvironment"
  ]
}