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

setTagging() public method

This implementation of the PUT operation uses the tagging subresource to add a set of tags to an existing bucket.
public setTagging ( string $tagging ) : boolean
$tagging string A XML Document which defines configuration
return boolean Returns true on succes or false if failure.
    public function setTagging($tagging)
    {
        $this->throwExceptionIfNotInitialized();
        return $this->getS3()->bucket->setTagging($this->bucketName, $tagging);
    }