From 3e3ab3df31b466954b642b096d1912ca0ac921aa Mon Sep 17 00:00:00 2001
From: Nikita Vasilenko <60759112+NikeVas@users.noreply.github.com>
Date: Thu, 26 Dec 2024 01:09:44 +0300
Subject: [PATCH] Fix typedef GetObjectResponseReceivedHandler

In this alias, the result is obtained using copy, but in other places using const&
---
 .../src/aws-cpp-sdk-s3/include/aws/s3/S3ServiceClientModel.h    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/generated/src/aws-cpp-sdk-s3/include/aws/s3/S3ServiceClientModel.h b/generated/src/aws-cpp-sdk-s3/include/aws/s3/S3ServiceClientModel.h
index c5bddb4513d..c548a759996 100644
--- a/generated/src/aws-cpp-sdk-s3/include/aws/s3/S3ServiceClientModel.h
+++ b/generated/src/aws-cpp-sdk-s3/include/aws/s3/S3ServiceClientModel.h
@@ -474,7 +474,7 @@ namespace Aws
     typedef std::function<void(const S3Client*, const Model::GetBucketTaggingRequest&, const Model::GetBucketTaggingOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > GetBucketTaggingResponseReceivedHandler;
     typedef std::function<void(const S3Client*, const Model::GetBucketVersioningRequest&, const Model::GetBucketVersioningOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > GetBucketVersioningResponseReceivedHandler;
     typedef std::function<void(const S3Client*, const Model::GetBucketWebsiteRequest&, const Model::GetBucketWebsiteOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > GetBucketWebsiteResponseReceivedHandler;
-    typedef std::function<void(const S3Client*, const Model::GetObjectRequest&, Model::GetObjectOutcome, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > GetObjectResponseReceivedHandler;
+    typedef std::function<void(const S3Client*, const Model::GetObjectRequest&, const Model::GetObjectOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > GetObjectResponseReceivedHandler;
     typedef std::function<void(const S3Client*, const Model::GetObjectAclRequest&, const Model::GetObjectAclOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > GetObjectAclResponseReceivedHandler;
     typedef std::function<void(const S3Client*, const Model::GetObjectAttributesRequest&, const Model::GetObjectAttributesOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > GetObjectAttributesResponseReceivedHandler;
     typedef std::function<void(const S3Client*, const Model::GetObjectLegalHoldRequest&, const Model::GetObjectLegalHoldOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > GetObjectLegalHoldResponseReceivedHandler;