Get Log Delivery Configuration
cognitoidentityprovider_get_log_delivery_configuration | R Documentation |
Gets the logging configuration of a user pool¶
Description¶
Gets the logging configuration of a user pool.
Usage¶
Arguments¶
UserPoolId
[required] The ID of the user pool that has the logging configuration that you want to view.
Value¶
A list with the following syntax:
list(
LogDeliveryConfiguration = list(
UserPoolId = "string",
LogConfigurations = list(
list(
LogLevel = "ERROR"|"INFO",
EventSource = "userNotification"|"userAuthEvents",
CloudWatchLogsConfiguration = list(
LogGroupArn = "string"
),
S3Configuration = list(
BucketArn = "string"
),
FirehoseConfiguration = list(
StreamArn = "string"
)
)
)
)
)