Interface CfnApplicationV2.MonitoringConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationV2.MonitoringConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationV2
@Stability(Stable)
public static interface CfnApplicationV2.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.kinesisanalytics.*; MonitoringConfigurationProperty monitoringConfigurationProperty = MonitoringConfigurationProperty.builder() .configurationType("configurationType") // the properties below are optional .logLevel("logLevel") .metricsLevel("metricsLevel") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationV2.MonitoringConfigurationProperty
static final class
An implementation forCfnApplicationV2.MonitoringConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Describes whether to use the default CloudWatch logging configuration for an application.default String
Describes the verbosity of the CloudWatch Logs for an application.default String
Describes the granularity of the CloudWatch Logs for an application.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigurationType
Describes whether to use the default CloudWatch logging configuration for an application.You must set this property to
CUSTOM
in order to set theLogLevel
orMetricsLevel
parameters.- See Also:
-
getLogLevel
Describes the verbosity of the CloudWatch Logs for an application.- See Also:
-
getMetricsLevel
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.- See Also:
-
builder
-