@Stability(value=Stable)
public static interface CfnEnvironment.LoggingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.mwaa.*;
LoggingConfigurationProperty loggingConfigurationProperty = LoggingConfigurationProperty.builder()
.dagProcessingLogs(ModuleLoggingConfigurationProperty.builder()
.cloudWatchLogGroupArn("cloudWatchLogGroupArn")
.enabled(false)
.logLevel("logLevel")
.build())
.schedulerLogs(ModuleLoggingConfigurationProperty.builder()
.cloudWatchLogGroupArn("cloudWatchLogGroupArn")
.enabled(false)
.logLevel("logLevel")
.build())
.taskLogs(ModuleLoggingConfigurationProperty.builder()
.cloudWatchLogGroupArn("cloudWatchLogGroupArn")
.enabled(false)
.logLevel("logLevel")
.build())
.webserverLogs(ModuleLoggingConfigurationProperty.builder()
.cloudWatchLogGroupArn("cloudWatchLogGroupArn")
.enabled(false)
.logLevel("logLevel")
.build())
.workerLogs(ModuleLoggingConfigurationProperty.builder()
.cloudWatchLogGroupArn("cloudWatchLogGroupArn")
.enabled(false)
.logLevel("logLevel")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEnvironment.LoggingConfigurationProperty.Builder
A builder for
CfnEnvironment.LoggingConfigurationProperty |
static class |
CfnEnvironment.LoggingConfigurationProperty.Jsii$Proxy
An implementation for
CfnEnvironment.LoggingConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEnvironment.LoggingConfigurationProperty.Builder |
builder() |
default Object |
getDagProcessingLogs()
Defines the processing logs sent to CloudWatch Logs and the logging level to send.
|
default Object |
getSchedulerLogs()
Defines the scheduler logs sent to CloudWatch Logs and the logging level to send.
|
default Object |
getTaskLogs()
Defines the task logs sent to CloudWatch Logs and the logging level to send.
|
default Object |
getWebserverLogs()
Defines the web server logs sent to CloudWatch Logs and the logging level to send.
|
default Object |
getWorkerLogs()
Defines the worker logs sent to CloudWatch Logs and the logging level to send.
|
@Stability(value=Stable) @Nullable default Object getDagProcessingLogs()
@Stability(value=Stable) @Nullable default Object getSchedulerLogs()
@Stability(value=Stable) @Nullable default Object getTaskLogs()
@Stability(value=Stable) @Nullable default Object getWebserverLogs()
@Stability(value=Stable) @Nullable default Object getWorkerLogs()
@Stability(value=Stable) static CfnEnvironment.LoggingConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.