AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
ConfiguredTableSummary.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/cleanrooms/model/AnalysisMethod.h>
12#include <aws/cleanrooms/model/ConfiguredTableAnalysisRuleType.h>
13#include <aws/cleanrooms/model/SelectedAnalysisMethod.h>
14#include <utility>
15
16namespace Aws
17{
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23 class JsonView;
24} // namespace Json
25} // namespace Utils
26namespace CleanRooms
27{
28namespace Model
29{
30
38 {
39 public:
40 AWS_CLEANROOMS_API ConfiguredTableSummary() = default;
43 AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const;
44
45
47
50 inline const Aws::String& GetId() const { return m_id; }
51 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
52 template<typename IdT = Aws::String>
53 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
54 template<typename IdT = Aws::String>
55 ConfiguredTableSummary& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
57
59
62 inline const Aws::String& GetArn() const { return m_arn; }
63 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
64 template<typename ArnT = Aws::String>
65 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
66 template<typename ArnT = Aws::String>
67 ConfiguredTableSummary& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
69
71
74 inline const Aws::String& GetName() const { return m_name; }
75 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
76 template<typename NameT = Aws::String>
77 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
78 template<typename NameT = Aws::String>
79 ConfiguredTableSummary& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
81
83
86 inline const Aws::Utils::DateTime& GetCreateTime() const { return m_createTime; }
87 inline bool CreateTimeHasBeenSet() const { return m_createTimeHasBeenSet; }
88 template<typename CreateTimeT = Aws::Utils::DateTime>
89 void SetCreateTime(CreateTimeT&& value) { m_createTimeHasBeenSet = true; m_createTime = std::forward<CreateTimeT>(value); }
90 template<typename CreateTimeT = Aws::Utils::DateTime>
91 ConfiguredTableSummary& WithCreateTime(CreateTimeT&& value) { SetCreateTime(std::forward<CreateTimeT>(value)); return *this;}
93
95
98 inline const Aws::Utils::DateTime& GetUpdateTime() const { return m_updateTime; }
99 inline bool UpdateTimeHasBeenSet() const { return m_updateTimeHasBeenSet; }
100 template<typename UpdateTimeT = Aws::Utils::DateTime>
101 void SetUpdateTime(UpdateTimeT&& value) { m_updateTimeHasBeenSet = true; m_updateTime = std::forward<UpdateTimeT>(value); }
102 template<typename UpdateTimeT = Aws::Utils::DateTime>
103 ConfiguredTableSummary& WithUpdateTime(UpdateTimeT&& value) { SetUpdateTime(std::forward<UpdateTimeT>(value)); return *this;}
105
107
110 inline const Aws::Vector<ConfiguredTableAnalysisRuleType>& GetAnalysisRuleTypes() const { return m_analysisRuleTypes; }
111 inline bool AnalysisRuleTypesHasBeenSet() const { return m_analysisRuleTypesHasBeenSet; }
112 template<typename AnalysisRuleTypesT = Aws::Vector<ConfiguredTableAnalysisRuleType>>
113 void SetAnalysisRuleTypes(AnalysisRuleTypesT&& value) { m_analysisRuleTypesHasBeenSet = true; m_analysisRuleTypes = std::forward<AnalysisRuleTypesT>(value); }
114 template<typename AnalysisRuleTypesT = Aws::Vector<ConfiguredTableAnalysisRuleType>>
115 ConfiguredTableSummary& WithAnalysisRuleTypes(AnalysisRuleTypesT&& value) { SetAnalysisRuleTypes(std::forward<AnalysisRuleTypesT>(value)); return *this;}
116 inline ConfiguredTableSummary& AddAnalysisRuleTypes(ConfiguredTableAnalysisRuleType value) { m_analysisRuleTypesHasBeenSet = true; m_analysisRuleTypes.push_back(value); return *this; }
118
120
127 inline AnalysisMethod GetAnalysisMethod() const { return m_analysisMethod; }
128 inline bool AnalysisMethodHasBeenSet() const { return m_analysisMethodHasBeenSet; }
129 inline void SetAnalysisMethod(AnalysisMethod value) { m_analysisMethodHasBeenSet = true; m_analysisMethod = value; }
132
134
137 inline const Aws::Vector<SelectedAnalysisMethod>& GetSelectedAnalysisMethods() const { return m_selectedAnalysisMethods; }
138 inline bool SelectedAnalysisMethodsHasBeenSet() const { return m_selectedAnalysisMethodsHasBeenSet; }
139 template<typename SelectedAnalysisMethodsT = Aws::Vector<SelectedAnalysisMethod>>
140 void SetSelectedAnalysisMethods(SelectedAnalysisMethodsT&& value) { m_selectedAnalysisMethodsHasBeenSet = true; m_selectedAnalysisMethods = std::forward<SelectedAnalysisMethodsT>(value); }
141 template<typename SelectedAnalysisMethodsT = Aws::Vector<SelectedAnalysisMethod>>
142 ConfiguredTableSummary& WithSelectedAnalysisMethods(SelectedAnalysisMethodsT&& value) { SetSelectedAnalysisMethods(std::forward<SelectedAnalysisMethodsT>(value)); return *this;}
143 inline ConfiguredTableSummary& AddSelectedAnalysisMethods(SelectedAnalysisMethod value) { m_selectedAnalysisMethodsHasBeenSet = true; m_selectedAnalysisMethods.push_back(value); return *this; }
145 private:
146
147 Aws::String m_id;
148 bool m_idHasBeenSet = false;
149
150 Aws::String m_arn;
151 bool m_arnHasBeenSet = false;
152
153 Aws::String m_name;
154 bool m_nameHasBeenSet = false;
155
156 Aws::Utils::DateTime m_createTime{};
157 bool m_createTimeHasBeenSet = false;
158
159 Aws::Utils::DateTime m_updateTime{};
160 bool m_updateTimeHasBeenSet = false;
161
163 bool m_analysisRuleTypesHasBeenSet = false;
164
165 AnalysisMethod m_analysisMethod{AnalysisMethod::NOT_SET};
166 bool m_analysisMethodHasBeenSet = false;
167
168 Aws::Vector<SelectedAnalysisMethod> m_selectedAnalysisMethods;
169 bool m_selectedAnalysisMethodsHasBeenSet = false;
170 };
171
172} // namespace Model
173} // namespace CleanRooms
174} // namespace Aws
AWS_CLEANROOMS_API ConfiguredTableSummary()=default
ConfiguredTableSummary & WithCreateTime(CreateTimeT &&value)
const Aws::Vector< SelectedAnalysisMethod > & GetSelectedAnalysisMethods() const
AWS_CLEANROOMS_API ConfiguredTableSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
ConfiguredTableSummary & WithUpdateTime(UpdateTimeT &&value)
void SetSelectedAnalysisMethods(SelectedAnalysisMethodsT &&value)
ConfiguredTableSummary & WithId(IdT &&value)
ConfiguredTableSummary & WithArn(ArnT &&value)
const Aws::Vector< ConfiguredTableAnalysisRuleType > & GetAnalysisRuleTypes() const
const Aws::Utils::DateTime & GetCreateTime() const
ConfiguredTableSummary & AddAnalysisRuleTypes(ConfiguredTableAnalysisRuleType value)
AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const
ConfiguredTableSummary & WithAnalysisMethod(AnalysisMethod value)
void SetAnalysisRuleTypes(AnalysisRuleTypesT &&value)
ConfiguredTableSummary & WithAnalysisRuleTypes(AnalysisRuleTypesT &&value)
ConfiguredTableSummary & WithName(NameT &&value)
ConfiguredTableSummary & AddSelectedAnalysisMethods(SelectedAnalysisMethod value)
ConfiguredTableSummary & WithSelectedAnalysisMethods(SelectedAnalysisMethodsT &&value)
const Aws::Utils::DateTime & GetUpdateTime() const
AWS_CLEANROOMS_API ConfiguredTableSummary(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue