ApplicationCodeConfiguration

Describes code configuration for an application.

Apache FlinkBig DataReal-Time ProcessingStreaming Analytics

Properties

Name Type Description
CodeContent object
CodeContentType object
View JSON Schema on GitHub

JSON Schema

amazon-managed-apache-flink-application-code-configuration-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-code-configuration-schema.json",
  "title": "ApplicationCodeConfiguration",
  "description": "Describes code configuration for an application.",
  "type": "object",
  "properties": {
    "CodeContent": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CodeContent"
        },
        {
          "description": "The location and type of the application code."
        }
      ]
    },
    "CodeContentType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CodeContentType"
        },
        {
          "description": "Specifies whether the code content is in text or zip format."
        }
      ]
    }
  },
  "required": [
    "CodeContentType"
  ]
}