AWS Kinesis · Schema

PropertyGroup

Property key-value pairs passed into an application.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
PropertyGroupId object
PropertyMap object
View JSON Schema on GitHub

JSON Schema

kinesis-propertygroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PropertyGroup",
  "title": "PropertyGroup",
  "type": "object",
  "required": [
    "PropertyGroupId",
    "PropertyMap"
  ],
  "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."
        }
      ]
    }
  },
  "description": "Property key-value pairs passed into an application."
}