AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
ProtectedQueryInputParameters.h
1
6#pragma once
7#include <aws/cleanroomsml/CleanRoomsML_EXPORTS.h>
8#include <aws/cleanroomsml/model/ProtectedQuerySQLParameters.h>
9#include <aws/cleanroomsml/model/ComputeConfiguration.h>
10#include <aws/cleanroomsml/model/ResultFormat.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace CleanRoomsML
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_CLEANROOMSML_API ProtectedQueryInputParameters() = default;
40 AWS_CLEANROOMSML_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
45 inline const ProtectedQuerySQLParameters& GetSqlParameters() const { return m_sqlParameters; }
46 inline bool SqlParametersHasBeenSet() const { return m_sqlParametersHasBeenSet; }
47 template<typename SqlParametersT = ProtectedQuerySQLParameters>
48 void SetSqlParameters(SqlParametersT&& value) { m_sqlParametersHasBeenSet = true; m_sqlParameters = std::forward<SqlParametersT>(value); }
49 template<typename SqlParametersT = ProtectedQuerySQLParameters>
50 ProtectedQueryInputParameters& WithSqlParameters(SqlParametersT&& value) { SetSqlParameters(std::forward<SqlParametersT>(value)); return *this;}
52
54
58 inline const ComputeConfiguration& GetComputeConfiguration() const { return m_computeConfiguration; }
59 inline bool ComputeConfigurationHasBeenSet() const { return m_computeConfigurationHasBeenSet; }
60 template<typename ComputeConfigurationT = ComputeConfiguration>
61 void SetComputeConfiguration(ComputeConfigurationT&& value) { m_computeConfigurationHasBeenSet = true; m_computeConfiguration = std::forward<ComputeConfigurationT>(value); }
62 template<typename ComputeConfigurationT = ComputeConfiguration>
63 ProtectedQueryInputParameters& WithComputeConfiguration(ComputeConfigurationT&& value) { SetComputeConfiguration(std::forward<ComputeConfigurationT>(value)); return *this;}
65
67
71 inline ResultFormat GetResultFormat() const { return m_resultFormat; }
72 inline bool ResultFormatHasBeenSet() const { return m_resultFormatHasBeenSet; }
73 inline void SetResultFormat(ResultFormat value) { m_resultFormatHasBeenSet = true; m_resultFormat = value; }
76 private:
77
78 ProtectedQuerySQLParameters m_sqlParameters;
79 bool m_sqlParametersHasBeenSet = false;
80
81 ComputeConfiguration m_computeConfiguration;
82 bool m_computeConfigurationHasBeenSet = false;
83
84 ResultFormat m_resultFormat{ResultFormat::NOT_SET};
85 bool m_resultFormatHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace CleanRoomsML
90} // namespace Aws
AWS_CLEANROOMSML_API ProtectedQueryInputParameters(Aws::Utils::Json::JsonView jsonValue)
AWS_CLEANROOMSML_API ProtectedQueryInputParameters()=default
AWS_CLEANROOMSML_API ProtectedQueryInputParameters & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CLEANROOMSML_API Aws::Utils::Json::JsonValue Jsonize() const
ProtectedQueryInputParameters & WithSqlParameters(SqlParametersT &&value)
ProtectedQueryInputParameters & WithResultFormat(ResultFormat value)
ProtectedQueryInputParameters & WithComputeConfiguration(ComputeConfigurationT &&value)
Aws::Utils::Json::JsonValue JsonValue