s3Client = $s3Client; $this->lambdaClient = $lambdaClient; $this->codeDeployClient = $codeDeployClient; } /** * @return S3Client */ public function getS3Client() { return $this->s3Client; } /** * @return LambdaClient */ public function getLambdaClient() { return $this->lambdaClient; } /** * @return CodeDeployClient */ public function getCodeDeployClient() { return $this->codeDeployClient; } /** * @return array */ public function getClients() { return [ $this->s3Client, $this->lambdaClient, $this->codeDeployClient ]; } }