I have a range of json files stored in an S3 bucket on AWS.
I wish to use AWS lambda python service to parse this json and send the parsed results to an AWS RDS MySQL d
s3 = boto3.client('s3') response = s3.get_object(Bucket=bucket, Key=key) emailcontent = response['Body'].read().decode('utf-8')