"""Amazon CloudWatch connector.""" import boto3 from video import config def get_cloudwatch_client(): """Get CloudWatch client. Returns: boto3.client.CloudWatch: CloudWatch client. """ return boto3.client( 'cloudwatch', region_name=config.AWS_REGION, )