Scalr\Service\Aws\S3\Handler\BucketHandler::deleteTagging PHP Метод

deleteTagging() публичный Метод

This implementation of the DELETE operation uses the tagging subresource to remove a tag set from the specified bucket. To use this operation, you must have permission to perform the s3:PutBucketTagging action. By default, the bucket owner has this permission and can grant this permission to others.
public deleteTagging ( BucketData | string $bucketName ) : boolean
$bucketName Scalr\Service\Aws\S3\DataType\BucketData | string A bucket name.
Результат boolean Returns true on success or throws an exception.
    public function deleteTagging($bucketName)
    {
        if ($bucketName instanceof BucketData) {
            $bucketName = $bucketName->bucketName;
        }
        return $this->getS3()->getApiHandler()->deleteBucketTagging($bucketName);
    }