Amazon_S3_And_CloudFront::get_buckets PHP Method

get_buckets() public method

Get a list of buckets from S3
public get_buckets ( ) : array | WP_Error
return array | WP_Error - list of buckets
    function get_buckets()
    {
        try {
            $result = $this->get_s3client()->listBuckets();
        } catch (Exception $e) {
            return new WP_Error('exception', $e->getMessage());
        }
        return $result['Buckets'];
    }
Amazon_S3_And_CloudFront