Property key-value pairs passed into an application.
{ "$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-property-group-schema.json", "title": "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" ] }