Interface CfnApplication.MonitoringConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplication.MonitoringConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnApplication

@Stability(Stable) public static interface CfnApplication.MonitoringConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisanalyticsv2.*;
 MonitoringConfigurationProperty monitoringConfigurationProperty = MonitoringConfigurationProperty.builder()
         .configurationType("configurationType")
         // the properties below are optional
         .logLevel("logLevel")
         .metricsLevel("metricsLevel")
         .build();
 

See Also: