Tagging S3 Uploads

I'm uploading files to S3 via FileUpload::make()->disk('s3'), but I can't find a way to tag the uploads. If I manually upload them I use a syntax like that:
Storage::disk('s3')->put($path, $pdf->output(), ['Tagging' => 'type=gdpr']);

Is there a way to use that Tagging in the context of FileUpload::make()?
Was this page helpful?