AWS SDK for C++

AWS SDK for C++ Version 1.11.851

Loading...
Searching...
No Matches
UpdateIntermediateTableRequest.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRoomsRequest.h>
8#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
9#include <aws/cleanrooms/model/IntermediateTableColumn.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12
13#include <utility>
14
15namespace Aws {
16namespace CleanRooms {
17namespace Model {
18
22 public:
23 AWS_CLEANROOMS_API UpdateIntermediateTableRequest() = default;
24
25 // Service request name is the Operation name which will send this request out,
26 // each operation should has unique request name, so that we can get operation's name from this request.
27 // Note: this is not true for response, multiple operations may have the same response name,
28 // so we can not get operation's name from response.
29 inline virtual const char* GetServiceRequestName() const override { return "UpdateIntermediateTable"; }
30
31 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
32
34
37 inline const Aws::String& GetIntermediateTableIdentifier() const { return m_intermediateTableIdentifier; }
38 inline bool IntermediateTableIdentifierHasBeenSet() const { return m_intermediateTableIdentifierHasBeenSet; }
39 template <typename IntermediateTableIdentifierT = Aws::String>
40 void SetIntermediateTableIdentifier(IntermediateTableIdentifierT&& value) {
41 m_intermediateTableIdentifierHasBeenSet = true;
42 m_intermediateTableIdentifier = std::forward<IntermediateTableIdentifierT>(value);
43 }
44 template <typename IntermediateTableIdentifierT = Aws::String>
45 UpdateIntermediateTableRequest& WithIntermediateTableIdentifier(IntermediateTableIdentifierT&& value) {
46 SetIntermediateTableIdentifier(std::forward<IntermediateTableIdentifierT>(value));
47 return *this;
48 }
50
52
56 inline const Aws::String& GetMembershipIdentifier() const { return m_membershipIdentifier; }
57 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
58 template <typename MembershipIdentifierT = Aws::String>
59 void SetMembershipIdentifier(MembershipIdentifierT&& value) {
60 m_membershipIdentifierHasBeenSet = true;
61 m_membershipIdentifier = std::forward<MembershipIdentifierT>(value);
62 }
63 template <typename MembershipIdentifierT = Aws::String>
65 SetMembershipIdentifier(std::forward<MembershipIdentifierT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::String& GetDescription() const { return m_description; }
75 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
76 template <typename DescriptionT = Aws::String>
77 void SetDescription(DescriptionT&& value) {
78 m_descriptionHasBeenSet = true;
79 m_description = std::forward<DescriptionT>(value);
80 }
81 template <typename DescriptionT = Aws::String>
83 SetDescription(std::forward<DescriptionT>(value));
84 return *this;
85 }
87
89
93 inline const Aws::String& GetKmsKeyArn() const { return m_kmsKeyArn; }
94 inline bool KmsKeyArnHasBeenSet() const { return m_kmsKeyArnHasBeenSet; }
95 template <typename KmsKeyArnT = Aws::String>
96 void SetKmsKeyArn(KmsKeyArnT&& value) {
97 m_kmsKeyArnHasBeenSet = true;
98 m_kmsKeyArn = std::forward<KmsKeyArnT>(value);
99 }
100 template <typename KmsKeyArnT = Aws::String>
102 SetKmsKeyArn(std::forward<KmsKeyArnT>(value));
103 return *this;
104 }
106
108
112 inline const Aws::Vector<IntermediateTableColumn>& GetColumns() const { return m_columns; }
113 inline bool ColumnsHasBeenSet() const { return m_columnsHasBeenSet; }
114 template <typename ColumnsT = Aws::Vector<IntermediateTableColumn>>
115 void SetColumns(ColumnsT&& value) {
116 m_columnsHasBeenSet = true;
117 m_columns = std::forward<ColumnsT>(value);
118 }
119 template <typename ColumnsT = Aws::Vector<IntermediateTableColumn>>
121 SetColumns(std::forward<ColumnsT>(value));
122 return *this;
123 }
124 template <typename ColumnsT = IntermediateTableColumn>
126 m_columnsHasBeenSet = true;
127 m_columns.emplace_back(std::forward<ColumnsT>(value));
128 return *this;
129 }
131 private:
132 Aws::String m_intermediateTableIdentifier;
133
134 Aws::String m_membershipIdentifier;
135
136 Aws::String m_description;
137
138 Aws::String m_kmsKeyArn;
139
141 bool m_intermediateTableIdentifierHasBeenSet = false;
142 bool m_membershipIdentifierHasBeenSet = false;
143 bool m_descriptionHasBeenSet = false;
144 bool m_kmsKeyArnHasBeenSet = false;
145 bool m_columnsHasBeenSet = false;
146};
147
148} // namespace Model
149} // namespace CleanRooms
150} // namespace Aws
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
const Aws::Vector< IntermediateTableColumn > & GetColumns() const
UpdateIntermediateTableRequest & WithKmsKeyArn(KmsKeyArnT &&value)
void SetIntermediateTableIdentifier(IntermediateTableIdentifierT &&value)
UpdateIntermediateTableRequest & WithIntermediateTableIdentifier(IntermediateTableIdentifierT &&value)
UpdateIntermediateTableRequest & WithMembershipIdentifier(MembershipIdentifierT &&value)
UpdateIntermediateTableRequest & WithColumns(ColumnsT &&value)
UpdateIntermediateTableRequest & WithDescription(DescriptionT &&value)
AWS_CLEANROOMS_API UpdateIntermediateTableRequest()=default
UpdateIntermediateTableRequest & AddColumns(ColumnsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector