subfunctions/ALE_cleanup_single.py [196:202]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    if 'aws-s3-log-collection-' not in str(bucket["Name"]):
                        logging.info("Parsed out buckets created by Assisted Log Enabler for AWS in " + aws_region)
                        logging.info("Checking remaining buckets to see if logs were enabled by Assisted Log Enabler for AWS in " + aws_region)
                        logging.info("GetBucketLogging API Call for " + bucket["Name"])
                        s3temp=s3.get_bucket_logging(Bucket=bucket["Name"])
                        if 'aws-s3-log-collection-' in str(s3temp):
                            removal_list.append(bucket["Name"])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



subfunctions/ALE_cleanup_single.py [204:210]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    if 'aws-s3-log-collection-' not in str(bucket["Name"]):
                        logging.info("Parsed out buckets created by Assisted Log Enabler for AWS in " + aws_region)
                        logging.info("Checking remaining buckets to see if logs were enabled by Assisted Log Enabler for AWS in " + aws_region)
                        logging.info("GetBucketLogging API Call for " + bucket["Name"])
                        s3temp=s3.get_bucket_logging(Bucket=bucket["Name"])
                        if 'aws-s3-log-collection-' in str(s3temp):
                            removal_list.append(bucket["Name"])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



