restoreObject() public method

Restores an archived copy of an object back into Amazon S3
public restoreObject ( string $bucket, string $key, integer $days ) : mixed
$bucket string
$key string
$days integer
return mixed
Ejemplo n.º 1
0
 /**
  * Restores an archived copy of an object back into Amazon S3
  *
  * @param string $bucket
  * @param string $key
  * @param int    $days
  *
  * @internal param array $args
  *
  * @return mixed
  */
 public function restoreObject($bucket, $key, $days)
 {
     return $this->instance->restoreObject($bucket, $key, $days);
 }