AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetObjectLegalHoldResult.h
1
6#pragma once
7#include <aws/s3-crt/S3Crt_EXPORTS.h>
8#include <aws/s3-crt/model/ObjectLockLegalHold.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Xml
20{
21 class XmlDocument;
22} // namespace Xml
23} // namespace Utils
24namespace S3Crt
25{
26namespace Model
27{
29 {
30 public:
31 AWS_S3CRT_API GetObjectLegalHoldResult();
34
35
37
40 inline const ObjectLockLegalHold& GetLegalHold() const{ return m_legalHold; }
41 inline void SetLegalHold(const ObjectLockLegalHold& value) { m_legalHold = value; }
42 inline void SetLegalHold(ObjectLockLegalHold&& value) { m_legalHold = std::move(value); }
43 inline GetObjectLegalHoldResult& WithLegalHold(const ObjectLockLegalHold& value) { SetLegalHold(value); return *this;}
44 inline GetObjectLegalHoldResult& WithLegalHold(ObjectLockLegalHold&& value) { SetLegalHold(std::move(value)); return *this;}
46
48
49 inline const Aws::String& GetRequestId() const{ return m_requestId; }
50 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
51 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
52 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
53 inline GetObjectLegalHoldResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
54 inline GetObjectLegalHoldResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
55 inline GetObjectLegalHoldResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
57 private:
58
59 ObjectLockLegalHold m_legalHold;
60
61 Aws::String m_requestId;
62 };
63
64} // namespace Model
65} // namespace S3Crt
66} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Xml::XmlDocument XmlDocument