Scalr\Service\Aws\S3\DataType\BucketData::deleteTagging PHP Method

deleteTagging() public method

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 ( ) : boolean
return boolean Returns true on success or throws an exception.
    public function deleteTagging()
    {
        $this->throwExceptionIfNotInitialized();
        return $this->getS3()->bucket->deleteTagging($this->bucketName);
    }