Scalr\Service\Aws\S3\Handler\BucketHandler::getTagging PHP Method

getTagging() public method

This implementation of the GET operation uses the tagging subresource to return the tag set associated with the bucket.
public getTagging ( string $bucketName ) : string
$bucketName string A bucket name.
return string Returns XML document
    public function getTagging($bucketName)
    {
        if ($bucketName instanceof BucketData) {
            $bucketName = $bucketName->bucketName;
        }
        return $this->getS3()->getApiHandler()->getBucketTagging($bucketName);
    }