AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateConfiguredTableRequest.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/cleanrooms/CleanRoomsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/cleanrooms/model/AnalysisMethod.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12#include <aws/cleanrooms/model/SelectedAnalysisMethod.h>
13#include <utility>
14
15namespace Aws
16{
17namespace CleanRooms
18{
19namespace Model
20{
21
25 {
26 public:
27 AWS_CLEANROOMS_API UpdateConfiguredTableRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "UpdateConfiguredTable"; }
34
35 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
36
37
39
43 inline const Aws::String& GetConfiguredTableIdentifier() const { return m_configuredTableIdentifier; }
44 inline bool ConfiguredTableIdentifierHasBeenSet() const { return m_configuredTableIdentifierHasBeenSet; }
45 template<typename ConfiguredTableIdentifierT = Aws::String>
46 void SetConfiguredTableIdentifier(ConfiguredTableIdentifierT&& value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier = std::forward<ConfiguredTableIdentifierT>(value); }
47 template<typename ConfiguredTableIdentifierT = Aws::String>
48 UpdateConfiguredTableRequest& WithConfiguredTableIdentifier(ConfiguredTableIdentifierT&& value) { SetConfiguredTableIdentifier(std::forward<ConfiguredTableIdentifierT>(value)); return *this;}
50
52
55 inline const Aws::String& GetName() const { return m_name; }
56 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
57 template<typename NameT = Aws::String>
58 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
59 template<typename NameT = Aws::String>
60 UpdateConfiguredTableRequest& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
62
64
67 inline const Aws::String& GetDescription() const { return m_description; }
68 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
69 template<typename DescriptionT = Aws::String>
70 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
71 template<typename DescriptionT = Aws::String>
72 UpdateConfiguredTableRequest& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
74
76
83 inline AnalysisMethod GetAnalysisMethod() const { return m_analysisMethod; }
84 inline bool AnalysisMethodHasBeenSet() const { return m_analysisMethodHasBeenSet; }
85 inline void SetAnalysisMethod(AnalysisMethod value) { m_analysisMethodHasBeenSet = true; m_analysisMethod = value; }
88
90
93 inline const Aws::Vector<SelectedAnalysisMethod>& GetSelectedAnalysisMethods() const { return m_selectedAnalysisMethods; }
94 inline bool SelectedAnalysisMethodsHasBeenSet() const { return m_selectedAnalysisMethodsHasBeenSet; }
95 template<typename SelectedAnalysisMethodsT = Aws::Vector<SelectedAnalysisMethod>>
96 void SetSelectedAnalysisMethods(SelectedAnalysisMethodsT&& value) { m_selectedAnalysisMethodsHasBeenSet = true; m_selectedAnalysisMethods = std::forward<SelectedAnalysisMethodsT>(value); }
97 template<typename SelectedAnalysisMethodsT = Aws::Vector<SelectedAnalysisMethod>>
98 UpdateConfiguredTableRequest& WithSelectedAnalysisMethods(SelectedAnalysisMethodsT&& value) { SetSelectedAnalysisMethods(std::forward<SelectedAnalysisMethodsT>(value)); return *this;}
99 inline UpdateConfiguredTableRequest& AddSelectedAnalysisMethods(SelectedAnalysisMethod value) { m_selectedAnalysisMethodsHasBeenSet = true; m_selectedAnalysisMethods.push_back(value); return *this; }
101 private:
102
103 Aws::String m_configuredTableIdentifier;
104 bool m_configuredTableIdentifierHasBeenSet = false;
105
106 Aws::String m_name;
107 bool m_nameHasBeenSet = false;
108
109 Aws::String m_description;
110 bool m_descriptionHasBeenSet = false;
111
112 AnalysisMethod m_analysisMethod{AnalysisMethod::NOT_SET};
113 bool m_analysisMethodHasBeenSet = false;
114
115 Aws::Vector<SelectedAnalysisMethod> m_selectedAnalysisMethods;
116 bool m_selectedAnalysisMethodsHasBeenSet = false;
117 };
118
119} // namespace Model
120} // namespace CleanRooms
121} // namespace Aws
AWS_CLEANROOMS_API UpdateConfiguredTableRequest()=default
UpdateConfiguredTableRequest & AddSelectedAnalysisMethods(SelectedAnalysisMethod value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
void SetConfiguredTableIdentifier(ConfiguredTableIdentifierT &&value)
UpdateConfiguredTableRequest & WithDescription(DescriptionT &&value)
const Aws::Vector< SelectedAnalysisMethod > & GetSelectedAnalysisMethods() const
UpdateConfiguredTableRequest & WithAnalysisMethod(AnalysisMethod value)
UpdateConfiguredTableRequest & WithConfiguredTableIdentifier(ConfiguredTableIdentifierT &&value)
UpdateConfiguredTableRequest & WithName(NameT &&value)
UpdateConfiguredTableRequest & WithSelectedAnalysisMethods(SelectedAnalysisMethodsT &&value)
void SetSelectedAnalysisMethods(SelectedAnalysisMethodsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector