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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLogDeliveryConfiguration.LogConfigurationPropertystatic final classAn implementation forCfnLogDeliveryConfiguration.LogConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe CloudWatch logging destination of a user pool detailed activity logging configuration.default StringThe source of events that your user pool sends for detailed activity logging.default StringTheerrorlevelselection of logs that a user pool sends for detailed activity logging.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudWatchLogsConfiguration
The CloudWatch logging destination of a user pool detailed activity logging configuration.- See Also:
-
getEventSource
The source of events that your user pool sends for detailed activity logging.- See Also:
-
getLogLevel
Theerrorlevelselection of logs that a user pool sends for detailed activity logging.- See Also:
-
builder
-