/**
  * S3Exporter constructor.
  * @param string $s3ObjectPath Ex: 's3://mybucket/my/object.txt'
  * @param S3Client $s3Client
  * @param LoggerInterface $logger
  * @param bool $randomizeOutputFileName
  */
 public function __construct($s3ObjectPath, S3Client $s3Client, LoggerInterface $logger, $randomizeOutputFileName = true)
 {
     $this->s3Client = $s3Client;
     parent::__construct($s3ObjectPath, $logger, $randomizeOutputFileName);
 }
 /**
  * FileSystemExporter constructor.
  * @param LoggerInterface $logger
  */
 public function __construct($exportPath, LoggerInterface $logger, $randomizeOutputFileName = true)
 {
     parent::__construct($exportPath, $logger, $randomizeOutputFileName);
 }