Webiny\Component\Amazon\Bridge\S3\S3::getBucketAcl PHP 메소드

getBucketAcl() 공개 메소드

Get access control policy for the bucket
public getBucketAcl ( string $bucket ) : mixed
$bucket string
리턴 mixed
    public function getBucketAcl($bucket)
    {
        $params['Bucket'] = $bucket;
        return $this->instance->getBucketAcl($params);
    }

Usage Example

예제 #1
0
파일: S3.php 프로젝트: Webiny/Framework
 /**
  * Get access control policy for the bucket
  *
  * @param string $bucket
  *
  * @return mixed
  */
 public function getBucketAcl($bucket)
 {
     return $this->instance->getBucketAcl($bucket);
 }