Interface CfnLogDeliveryConfiguration.LogConfigurationProperty

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

@Stability(Stable) public static interface CfnLogDeliveryConfiguration.LogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The logging parameters of a user pool.

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.cognito.*;
 LogConfigurationProperty logConfigurationProperty = LogConfigurationProperty.builder()
         .cloudWatchLogsConfiguration(CloudWatchLogsConfigurationProperty.builder()
                 .logGroupArn("logGroupArn")
                 .build())
         .eventSource("eventSource")
         .logLevel("logLevel")
         .build();
 

See Also: