Class: Aws::CognitoIdentityProvider::Types::CloudWatchLogsConfigurationType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::CloudWatchLogsConfigurationType
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Configuration for the CloudWatch log group destination of user pool detailed activity logging, or of user activity log export with advanced security features.
This data type is a request parameter of SetLogDeliveryConfiguration and a response parameter of GetLogDeliveryConfiguration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_group_arn ⇒ String
The Amazon Resource Name (arn) of a CloudWatch Logs log group where your user pool sends logs.
Instance Attribute Details
#log_group_arn ⇒ String
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 Key Management Service and must be in the same Amazon Web Services 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 Amazon Web Services services.
2961 2962 2963 2964 2965 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 2961 class CloudWatchLogsConfigurationType < Struct.new( :log_group_arn) SENSITIVE = [] include Aws::Structure end |