Question
Logs were configured to be sent to AWS CloudWatch. However, the logs are not loading into AWS CloudWatch.
Environment
Logs: AWS CloudWatch
Answer
Please make sure that the log group name matches what you have defined in AWS.
Cause
validation error detected: Value 'arn:aws:logs:xxxx:log-group:xxxx:*' at 'logGroupName' failed to satisfy constraint: Member must satisfy regular expression pattern: [\.\-_/#A-Za-z0-9]+
Correct value (without the '*'): 'arn:aws:logs:xxxx:log-group:xxxx'
The above information can be found in Fivetran's Documentation.
Note: Log group name should follow the ^[.\-_/#A-Za-z0-9]+$
pattern.