def s3_delete_object()

in app/source/dragen/src/scheduler/aws_utils.py [0:0]


def s3_delete_object(bucket, obj_path):
    client = boto3.client('s3')
    resp = client.delete_objects(
        Bucket=bucket,
        Delete={
            'Objects': [
                {'Key': obj_path}
            ]
        }
    )
    return resp