AWS Kinesis · Schema

MonitoringConfiguration

Describes configuration parameters for Amazon CloudWatch logging for an application. For more information about CloudWatch logging, see Monitoring.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
ConfigurationType object
MetricsLevel object
LogLevel object
View JSON Schema on GitHub

JSON Schema

kinesis-monitoringconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonitoringConfiguration",
  "title": "MonitoringConfiguration",
  "type": "object",
  "required": [
    "ConfigurationType"
  ],
  "properties": {
    "ConfigurationType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ConfigurationType"
        },
        {
          "description": "Describes whether to use the default CloudWatch logging configuration for an application. You must set this property to <code>CUSTOM</code> in order to set the <code>LogLevel</code> or <code>MetricsLevel</code> parameters."
        }
      ]
    },
    "MetricsLevel": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MetricsLevel"
        },
        {
          "description": "Describes the granularity of the CloudWatch Logs for an application. The <code>Parallelism</code> level is not recommended for applications with a Parallelism over 64 due to excessive costs."
        }
      ]
    },
    "LogLevel": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LogLevel"
        },
        {
          "description": "Describes the verbosity of the CloudWatch Logs for an application."
        }
      ]
    }
  },
  "description": "Describes configuration parameters for Amazon CloudWatch logging for an application. For more information about CloudWatch logging, see <a href=\"https://docs.aws.amazon.com/kinesisanalytics/latest/java/monitoring-overview.html\">Monitoring</a>."
}