I need to find all the files with a specific prefix. For example:
raw/client/Hist/2017/*/*/Tracking_*.zip
I tried this line of code but it does not work:
import boto3
client = boto3.client("s3", aws_access_key_id=aws_access_key_id, aws_secret_access_key=aws_secret_access_key)
client.list_objects(Bucket="myBucket", Prefix="raw/client/Hist/2017/*/*/Tracking_*.zip")