accessKey = $accessKey; } /** * @return string */ public function getAccessKey() { return $this->accessKey; } /** * The identifier of an access key used for s3 bucket authentication. * * @param string $accessKeyId */ public function setAccessKeyId($accessKeyId) { $this->accessKeyId = $accessKeyId; } /** * @return string */ public function getAccessKeyId() { return $this->accessKeyId; } /** * The optional version identifier for the access key. You can use this to * keep track of different iterations of your access key. * * @param string $accessKeyVersion */ public function setAccessKeyVersion($accessKeyVersion) { $this->accessKeyVersion = $accessKeyVersion; } /** * @return string */ public function getAccessKeyVersion() { return $this->accessKeyVersion; } /** * The name of the cloud region of your origin. This is a free-form field with * the name of the region your cloud uses to host your origin. For example, * "us-east-1" for AWS or "us-ashburn-1" for OCI. * * @param string $originRegion */ public function setOriginRegion($originRegion) { $this->originRegion = $originRegion; } /** * @return string */ public function getOriginRegion() { return $this->originRegion; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AWSV4Signature::class, 'Google_Service_Compute_AWSV4Signature');