Interface CfnApplication.CloudWatchLoggingConfigurationProperty

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

@Stability(Stable) public static interface CfnApplication.CloudWatchLoggingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The Amazon CloudWatch configuration for monitoring logs.

You can configure your jobs to send log information to CloudWatch.

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.emrserverless.*;
 CloudWatchLoggingConfigurationProperty cloudWatchLoggingConfigurationProperty = CloudWatchLoggingConfigurationProperty.builder()
         .enabled(false)
         .encryptionKeyArn("encryptionKeyArn")
         .logGroupName("logGroupName")
         .logStreamNamePrefix("logStreamNamePrefix")
         .logTypeMap(List.of(LogTypeMapKeyValuePairProperty.builder()
                 .key("key")
                 .value(List.of("value"))
                 .build()))
         .build();
 

See Also: