AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DataQualityAnalyzerResult.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSMap.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace Glue
23{
24namespace Model
25{
26
34 {
35 public:
40
41
43
46 inline const Aws::String& GetName() const{ return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
49 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
50 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
51 inline DataQualityAnalyzerResult& WithName(const Aws::String& value) { SetName(value); return *this;}
52 inline DataQualityAnalyzerResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
53 inline DataQualityAnalyzerResult& WithName(const char* value) { SetName(value); return *this;}
55
57
60 inline const Aws::String& GetDescription() const{ return m_description; }
61 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
62 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
63 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
64 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
65 inline DataQualityAnalyzerResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
66 inline DataQualityAnalyzerResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
67 inline DataQualityAnalyzerResult& WithDescription(const char* value) { SetDescription(value); return *this;}
69
71
74 inline const Aws::String& GetEvaluationMessage() const{ return m_evaluationMessage; }
75 inline bool EvaluationMessageHasBeenSet() const { return m_evaluationMessageHasBeenSet; }
76 inline void SetEvaluationMessage(const Aws::String& value) { m_evaluationMessageHasBeenSet = true; m_evaluationMessage = value; }
77 inline void SetEvaluationMessage(Aws::String&& value) { m_evaluationMessageHasBeenSet = true; m_evaluationMessage = std::move(value); }
78 inline void SetEvaluationMessage(const char* value) { m_evaluationMessageHasBeenSet = true; m_evaluationMessage.assign(value); }
80 inline DataQualityAnalyzerResult& WithEvaluationMessage(Aws::String&& value) { SetEvaluationMessage(std::move(value)); return *this;}
81 inline DataQualityAnalyzerResult& WithEvaluationMessage(const char* value) { SetEvaluationMessage(value); return *this;}
83
85
88 inline const Aws::Map<Aws::String, double>& GetEvaluatedMetrics() const{ return m_evaluatedMetrics; }
89 inline bool EvaluatedMetricsHasBeenSet() const { return m_evaluatedMetricsHasBeenSet; }
90 inline void SetEvaluatedMetrics(const Aws::Map<Aws::String, double>& value) { m_evaluatedMetricsHasBeenSet = true; m_evaluatedMetrics = value; }
91 inline void SetEvaluatedMetrics(Aws::Map<Aws::String, double>&& value) { m_evaluatedMetricsHasBeenSet = true; m_evaluatedMetrics = std::move(value); }
94 inline DataQualityAnalyzerResult& AddEvaluatedMetrics(const Aws::String& key, double value) { m_evaluatedMetricsHasBeenSet = true; m_evaluatedMetrics.emplace(key, value); return *this; }
95 inline DataQualityAnalyzerResult& AddEvaluatedMetrics(Aws::String&& key, double value) { m_evaluatedMetricsHasBeenSet = true; m_evaluatedMetrics.emplace(std::move(key), value); return *this; }
96 inline DataQualityAnalyzerResult& AddEvaluatedMetrics(const char* key, double value) { m_evaluatedMetricsHasBeenSet = true; m_evaluatedMetrics.emplace(key, value); return *this; }
98 private:
99
100 Aws::String m_name;
101 bool m_nameHasBeenSet = false;
102
103 Aws::String m_description;
104 bool m_descriptionHasBeenSet = false;
105
106 Aws::String m_evaluationMessage;
107 bool m_evaluationMessageHasBeenSet = false;
108
109 Aws::Map<Aws::String, double> m_evaluatedMetrics;
110 bool m_evaluatedMetricsHasBeenSet = false;
111 };
112
113} // namespace Model
114} // namespace Glue
115} // namespace Aws
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
DataQualityAnalyzerResult & WithEvaluationMessage(const char *value)
DataQualityAnalyzerResult & WithDescription(Aws::String &&value)
DataQualityAnalyzerResult & WithDescription(const Aws::String &value)
AWS_GLUE_API DataQualityAnalyzerResult(Aws::Utils::Json::JsonView jsonValue)
DataQualityAnalyzerResult & WithName(const char *value)
const Aws::Map< Aws::String, double > & GetEvaluatedMetrics() const
DataQualityAnalyzerResult & AddEvaluatedMetrics(Aws::String &&key, double value)
DataQualityAnalyzerResult & WithEvaluationMessage(Aws::String &&value)
DataQualityAnalyzerResult & WithName(Aws::String &&value)
DataQualityAnalyzerResult & WithName(const Aws::String &value)
DataQualityAnalyzerResult & WithEvaluationMessage(const Aws::String &value)
DataQualityAnalyzerResult & AddEvaluatedMetrics(const Aws::String &key, double value)
DataQualityAnalyzerResult & WithEvaluatedMetrics(Aws::Map< Aws::String, double > &&value)
DataQualityAnalyzerResult & WithDescription(const char *value)
AWS_GLUE_API DataQualityAnalyzerResult & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetEvaluatedMetrics(Aws::Map< Aws::String, double > &&value)
DataQualityAnalyzerResult & AddEvaluatedMetrics(const char *key, double value)
DataQualityAnalyzerResult & WithEvaluatedMetrics(const Aws::Map< Aws::String, double > &value)
void SetEvaluatedMetrics(const Aws::Map< Aws::String, double > &value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue