Amazon Managed Apache Flink Property Group Structure

Property key-value pairs passed into an application.

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

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

Properties

PropertyGroupId PropertyMap

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-property-group-structure.json",
  "name": "PropertyGroup",
  "description": "Property key-value pairs passed into an application.",
  "type": "object",
  "properties": {
    "PropertyGroupId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Id"
        },
        {
          "description": "Describes the key of an application execution property key-value pair."
        }
      ]
    },
    "PropertyMap": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PropertyMap"
        },
        {
          "description": "Describes the value of an application execution property key-value pair."
        }
      ]
    }
  },
  "required": [
    "PropertyGroupId",
    "PropertyMap"
  ]
}