Add header



examples/aws/hello_world_header.py
def lambda_handler(event, context):
    return {
        'statusCode': 200,
        'headers': { 'Content-Type': 'text/html' },
        'body': 'Hello World!'
    }