public static interface CfnApplication.MonitoringConfigurationProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplication.MonitoringConfigurationProperty.Builder
A builder for
CfnApplication.MonitoringConfigurationProperty |
static class |
CfnApplication.MonitoringConfigurationProperty.Jsii$Proxy
An implementation for
CfnApplication.MonitoringConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplication.MonitoringConfigurationProperty.Builder |
builder() |
java.lang.String |
getConfigurationType()
Describes whether to use the default CloudWatch logging configuration for an application.
|
default java.lang.String |
getLogLevel()
Describes the verbosity of the CloudWatch Logs for an application.
|
default java.lang.String |
getMetricsLevel()
Describes the granularity of the CloudWatch Logs for an application.
|
java.lang.String getConfigurationType()
You must set this property to CUSTOM
in order to set the LogLevel
or MetricsLevel
parameters.
default java.lang.String getLogLevel()
default java.lang.String getMetricsLevel()
The Parallelism
level is not recommended for applications with a Parallelism over 64 due to excessive costs.
static CfnApplication.MonitoringConfigurationProperty.Builder builder()