This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import sys | |
import boto3 | |
import time | |
## boto3 client | |
logs = boto3.client('logs', region_name='eu-west-1') | |
## Define log group and log stream. Default log group for glue logs and logstream defined dynamically upon job run. | |
log_group = "my_custom_log_group" |