AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ModelVersionEvaluation.h
1
6#pragma once
7#include <aws/frauddetector/FraudDetector_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/frauddetector/model/PredictionExplanations.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 FraudDetector
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_FRAUDDETECTOR_API ModelVersionEvaluation();
36 AWS_FRAUDDETECTOR_API ModelVersionEvaluation(Aws::Utils::Json::JsonView jsonValue);
38 AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetOutputVariableName() const{ return m_outputVariableName; }
46 inline bool OutputVariableNameHasBeenSet() const { return m_outputVariableNameHasBeenSet; }
47 inline void SetOutputVariableName(const Aws::String& value) { m_outputVariableNameHasBeenSet = true; m_outputVariableName = value; }
48 inline void SetOutputVariableName(Aws::String&& value) { m_outputVariableNameHasBeenSet = true; m_outputVariableName = std::move(value); }
49 inline void SetOutputVariableName(const char* value) { m_outputVariableNameHasBeenSet = true; m_outputVariableName.assign(value); }
51 inline ModelVersionEvaluation& WithOutputVariableName(Aws::String&& value) { SetOutputVariableName(std::move(value)); return *this;}
52 inline ModelVersionEvaluation& WithOutputVariableName(const char* value) { SetOutputVariableName(value); return *this;}
54
56
59 inline const Aws::String& GetEvaluationScore() const{ return m_evaluationScore; }
60 inline bool EvaluationScoreHasBeenSet() const { return m_evaluationScoreHasBeenSet; }
61 inline void SetEvaluationScore(const Aws::String& value) { m_evaluationScoreHasBeenSet = true; m_evaluationScore = value; }
62 inline void SetEvaluationScore(Aws::String&& value) { m_evaluationScoreHasBeenSet = true; m_evaluationScore = std::move(value); }
63 inline void SetEvaluationScore(const char* value) { m_evaluationScoreHasBeenSet = true; m_evaluationScore.assign(value); }
64 inline ModelVersionEvaluation& WithEvaluationScore(const Aws::String& value) { SetEvaluationScore(value); return *this;}
65 inline ModelVersionEvaluation& WithEvaluationScore(Aws::String&& value) { SetEvaluationScore(std::move(value)); return *this;}
66 inline ModelVersionEvaluation& WithEvaluationScore(const char* value) { SetEvaluationScore(value); return *this;}
68
70
73 inline const PredictionExplanations& GetPredictionExplanations() const{ return m_predictionExplanations; }
74 inline bool PredictionExplanationsHasBeenSet() const { return m_predictionExplanationsHasBeenSet; }
75 inline void SetPredictionExplanations(const PredictionExplanations& value) { m_predictionExplanationsHasBeenSet = true; m_predictionExplanations = value; }
76 inline void SetPredictionExplanations(PredictionExplanations&& value) { m_predictionExplanationsHasBeenSet = true; m_predictionExplanations = std::move(value); }
80 private:
81
82 Aws::String m_outputVariableName;
83 bool m_outputVariableNameHasBeenSet = false;
84
85 Aws::String m_evaluationScore;
86 bool m_evaluationScoreHasBeenSet = false;
87
88 PredictionExplanations m_predictionExplanations;
89 bool m_predictionExplanationsHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace FraudDetector
94} // namespace Aws
ModelVersionEvaluation & WithPredictionExplanations(PredictionExplanations &&value)
ModelVersionEvaluation & WithEvaluationScore(Aws::String &&value)
ModelVersionEvaluation & WithOutputVariableName(const Aws::String &value)
void SetPredictionExplanations(const PredictionExplanations &value)
ModelVersionEvaluation & WithEvaluationScore(const Aws::String &value)
ModelVersionEvaluation & WithEvaluationScore(const char *value)
AWS_FRAUDDETECTOR_API ModelVersionEvaluation & operator=(Aws::Utils::Json::JsonView jsonValue)
ModelVersionEvaluation & WithPredictionExplanations(const PredictionExplanations &value)
ModelVersionEvaluation & WithOutputVariableName(Aws::String &&value)
AWS_FRAUDDETECTOR_API ModelVersionEvaluation(Aws::Utils::Json::JsonView jsonValue)
AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const
const PredictionExplanations & GetPredictionExplanations() const
ModelVersionEvaluation & WithOutputVariableName(const char *value)
void SetPredictionExplanations(PredictionExplanations &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue