interface MonitoringConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.MonitoringConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplication_MonitoringConfigurationProperty |
Java | software.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.MonitoringConfigurationProperty |
Python | aws_cdk.aws_kinesisanalyticsv2.CfnApplication.MonitoringConfigurationProperty |
TypeScript | aws-cdk-lib » aws_kinesisanalyticsv2 » CfnApplication » MonitoringConfigurationProperty |
Describes configuration parameters for Amazon CloudWatch logging for a Java-based Kinesis Data Analytics application.
For more information about CloudWatch logging, see Monitoring .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisanalyticsv2 as kinesisanalyticsv2 } from 'aws-cdk-lib';
const monitoringConfigurationProperty: kinesisanalyticsv2.CfnApplication.MonitoringConfigurationProperty = {
configurationType: 'configurationType',
// the properties below are optional
logLevel: 'logLevel',
metricsLevel: 'metricsLevel',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | Describes whether to use the default CloudWatch logging configuration for an application. |
| log | string | Describes the verbosity of the CloudWatch Logs for an application. |
| metrics | string | Describes the granularity of the CloudWatch Logs for an application. |
configurationType
Type:
string
Describes whether to use the default CloudWatch logging configuration for an application.
You must set this property to CUSTOM in order to set the LogLevel or MetricsLevel parameters.
logLevel?
Type:
string
(optional)
Describes the verbosity of the CloudWatch Logs for an application.
metricsLevel?
Type:
string
(optional)
Describes the granularity of the CloudWatch Logs for an application.
The Parallelism level is not recommended for applications with a Parallelism over 64 due to excessive costs.

.NET
Go
Java
Python
TypeScript