Webiny\Component\Amazon\Bridge\S3\S3::getListBucketsIterator PHP Method

getListBucketsIterator() public method

Get array of buckets Available keys: Name, CreationDate
public getListBucketsIterator ( array $params = [] ) : mixed
$params array
return mixed
    public function getListBucketsIterator(array $params = [])
    {
        return $this->instance->getListBucketsIterator($params);
    }

Usage Example

示例#1
0
文件: S3.php 项目: Webiny/Framework
 /**
  * Get array of buckets
  * Available keys: Name, CreationDate
  *
  * @return mixed
  */
 public function getListBucketsIterator()
 {
     return $this->instance->getListBucketsIterator();
 }