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

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

This implementation of the GET operation uses the logging subresource to return the logging status of a bucket and the permissions users have to view and modify that status. To use GET, you must be the bucket owner.
public getLogging ( string $bucketName ) : string
$bucketName string A bucket name.
Результат string Returns XML document
    public function getLogging($bucketName)
    {
        if ($bucketName instanceof BucketData) {
            $bucketName = $bucketName->bucketName;
        }
        return $this->getS3()->getApiHandler()->getBucketLogging($bucketName);
    }