Interface CfnLogDeliveryConfiguration.CloudWatchLogsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLogDeliveryConfiguration.CloudWatchLogsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnLogDeliveryConfiguration
@Stability(Stable)
public static interface CfnLogDeliveryConfiguration.CloudWatchLogsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for the CloudWatch log group destination of user pool detailed activity logging, or of user activity log export with advanced security features.
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.*; CloudWatchLogsConfigurationProperty cloudWatchLogsConfigurationProperty = CloudWatchLogsConfigurationProperty.builder() .logGroupArn("logGroupArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnLogDeliveryConfiguration.CloudWatchLogsConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogGroupArn
The Amazon Resource Name (arn) of a CloudWatch Logs log group where your user pool sends logs.The log group must not be encrypted with AWS Key Management Service and must be in the same AWS account as your user pool.
To send logs to log groups with a resource policy of a size greater than 5120 characters, configure a log group with a path that starts with
/aws/vendedlogs
. For more information, see Enabling logging from certain AWS services .- See Also:
-
builder
@Stability(Stable) static CfnLogDeliveryConfiguration.CloudWatchLogsConfigurationProperty.Builder builder()
-