public function S3Url::setKey in AmazonS3 7.2
Set the S3 object key.
This automatically prepends a slash to the path.
Parameters
string $key:
File
- src/
S3Url.php, line 68
Class
- S3Url
- Represents an s3:// stream URL.
Namespace
Drupal\amazons3Code
public function setKey($key) {
$this
->setPath('/' . $key);
}