AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateLedgerRequest.h
1
6#pragma once
7#include <aws/qldb/QLDB_EXPORTS.h>
8#include <aws/qldb/QLDBRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace QLDB
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_QLDB_API UpdateLedgerRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "UpdateLedger"; }
31
32 AWS_QLDB_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetName() const{ return m_name; }
40 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
41 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
42 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
43 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
44 inline UpdateLedgerRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
45 inline UpdateLedgerRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
46 inline UpdateLedgerRequest& WithName(const char* value) { SetName(value); return *this;}
48
50
58 inline bool GetDeletionProtection() const{ return m_deletionProtection; }
59 inline bool DeletionProtectionHasBeenSet() const { return m_deletionProtectionHasBeenSet; }
60 inline void SetDeletionProtection(bool value) { m_deletionProtectionHasBeenSet = true; m_deletionProtection = value; }
61 inline UpdateLedgerRequest& WithDeletionProtection(bool value) { SetDeletionProtection(value); return *this;}
63
65
93 inline const Aws::String& GetKmsKey() const{ return m_kmsKey; }
94 inline bool KmsKeyHasBeenSet() const { return m_kmsKeyHasBeenSet; }
95 inline void SetKmsKey(const Aws::String& value) { m_kmsKeyHasBeenSet = true; m_kmsKey = value; }
96 inline void SetKmsKey(Aws::String&& value) { m_kmsKeyHasBeenSet = true; m_kmsKey = std::move(value); }
97 inline void SetKmsKey(const char* value) { m_kmsKeyHasBeenSet = true; m_kmsKey.assign(value); }
98 inline UpdateLedgerRequest& WithKmsKey(const Aws::String& value) { SetKmsKey(value); return *this;}
99 inline UpdateLedgerRequest& WithKmsKey(Aws::String&& value) { SetKmsKey(std::move(value)); return *this;}
100 inline UpdateLedgerRequest& WithKmsKey(const char* value) { SetKmsKey(value); return *this;}
102 private:
103
104 Aws::String m_name;
105 bool m_nameHasBeenSet = false;
106
107 bool m_deletionProtection;
108 bool m_deletionProtectionHasBeenSet = false;
109
110 Aws::String m_kmsKey;
111 bool m_kmsKeyHasBeenSet = false;
112 };
113
114} // namespace Model
115} // namespace QLDB
116} // namespace Aws
void SetName(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
void SetKmsKey(const Aws::String &value)
AWS_QLDB_API Aws::String SerializePayload() const override
UpdateLedgerRequest & WithName(Aws::String &&value)
UpdateLedgerRequest & WithKmsKey(const Aws::String &value)
UpdateLedgerRequest & WithName(const Aws::String &value)
UpdateLedgerRequest & WithKmsKey(const char *value)
UpdateLedgerRequest & WithKmsKey(Aws::String &&value)
const Aws::String & GetKmsKey() const
UpdateLedgerRequest & WithName(const char *value)
UpdateLedgerRequest & WithDeletionProtection(bool value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String