sseAlgorithm = $input['SSEAlgorithm'] ?? null; $this->kmsMasterKeyId = $input['KMSMasterKeyID'] ?? null; } public static function create($input): self { return $input instanceof self ? $input : new self($input); } public function getKmsMasterKeyId(): ?string { return $this->kmsMasterKeyId; } /** * @return ServerSideEncryption::* */ public function getSseAlgorithm(): string { return $this->sseAlgorithm; } }