diff options
author | dakovalkov <dakovalkov@yandex-team.com> | 2023-12-03 13:33:55 +0300 |
---|---|---|
committer | dakovalkov <dakovalkov@yandex-team.com> | 2023-12-03 14:04:39 +0300 |
commit | 2a718325637e5302334b6d0a6430f63168f8dbb3 (patch) | |
tree | 64be81080b7df9ec1d86d053a0c394ae53fcf1fe /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/GetObjectLegalHoldResult.h | |
parent | e0d94a470142d95c3007e9c5d80380994940664a (diff) | |
download | ydb-2a718325637e5302334b6d0a6430f63168f8dbb3.tar.gz |
Update contrib/libs/aws-sdk-cpp to 1.11.37
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/GetObjectLegalHoldResult.h')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/GetObjectLegalHoldResult.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/GetObjectLegalHoldResult.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/GetObjectLegalHoldResult.h index c69ac4c2c4..ce26a4251d 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/GetObjectLegalHoldResult.h +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/include/aws/s3/model/GetObjectLegalHoldResult.h @@ -24,36 +24,36 @@ namespace S3 { namespace Model { - class AWS_S3_API GetObjectLegalHoldResult + class GetObjectLegalHoldResult { public: - GetObjectLegalHoldResult(); - GetObjectLegalHoldResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); - GetObjectLegalHoldResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); + AWS_S3_API GetObjectLegalHoldResult(); + AWS_S3_API GetObjectLegalHoldResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); + AWS_S3_API GetObjectLegalHoldResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); /** - * <p>The current Legal Hold status for the specified object.</p> + * <p>The current legal hold status for the specified object.</p> */ inline const ObjectLockLegalHold& GetLegalHold() const{ return m_legalHold; } /** - * <p>The current Legal Hold status for the specified object.</p> + * <p>The current legal hold status for the specified object.</p> */ inline void SetLegalHold(const ObjectLockLegalHold& value) { m_legalHold = value; } /** - * <p>The current Legal Hold status for the specified object.</p> + * <p>The current legal hold status for the specified object.</p> */ inline void SetLegalHold(ObjectLockLegalHold&& value) { m_legalHold = std::move(value); } /** - * <p>The current Legal Hold status for the specified object.</p> + * <p>The current legal hold status for the specified object.</p> */ inline GetObjectLegalHoldResult& WithLegalHold(const ObjectLockLegalHold& value) { SetLegalHold(value); return *this;} /** - * <p>The current Legal Hold status for the specified object.</p> + * <p>The current legal hold status for the specified object.</p> */ inline GetObjectLegalHoldResult& WithLegalHold(ObjectLockLegalHold&& value) { SetLegalHold(std::move(value)); return *this;} |