ApplicationSummary

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

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

Name Type Description
ApplicationName object
ApplicationARN object
ApplicationStatus object
ApplicationVersionId object
RuntimeEnvironment object
ApplicationMode object
View JSON Schema on GitHub

JSON Schema

amazon-managed-apache-flink-application-summary-schema.json Raw ↑
{
  "$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-application-summary-schema.json",
  "title": "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"
  ]
}