AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
EvaluationBedrockModel.h
1
6#pragma once
7#include <aws/bedrock/Bedrock_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Bedrock
22{
23namespace Model
24{
25
43 {
44 public:
45 AWS_BEDROCK_API EvaluationBedrockModel();
48 AWS_BEDROCK_API Aws::Utils::Json::JsonValue Jsonize() const;
49
50
52
55 inline const Aws::String& GetModelIdentifier() const{ return m_modelIdentifier; }
56 inline bool ModelIdentifierHasBeenSet() const { return m_modelIdentifierHasBeenSet; }
57 inline void SetModelIdentifier(const Aws::String& value) { m_modelIdentifierHasBeenSet = true; m_modelIdentifier = value; }
58 inline void SetModelIdentifier(Aws::String&& value) { m_modelIdentifierHasBeenSet = true; m_modelIdentifier = std::move(value); }
59 inline void SetModelIdentifier(const char* value) { m_modelIdentifierHasBeenSet = true; m_modelIdentifier.assign(value); }
60 inline EvaluationBedrockModel& WithModelIdentifier(const Aws::String& value) { SetModelIdentifier(value); return *this;}
61 inline EvaluationBedrockModel& WithModelIdentifier(Aws::String&& value) { SetModelIdentifier(std::move(value)); return *this;}
62 inline EvaluationBedrockModel& WithModelIdentifier(const char* value) { SetModelIdentifier(value); return *this;}
64
66
70 inline const Aws::String& GetInferenceParams() const{ return m_inferenceParams; }
71 inline bool InferenceParamsHasBeenSet() const { return m_inferenceParamsHasBeenSet; }
72 inline void SetInferenceParams(const Aws::String& value) { m_inferenceParamsHasBeenSet = true; m_inferenceParams = value; }
73 inline void SetInferenceParams(Aws::String&& value) { m_inferenceParamsHasBeenSet = true; m_inferenceParams = std::move(value); }
74 inline void SetInferenceParams(const char* value) { m_inferenceParamsHasBeenSet = true; m_inferenceParams.assign(value); }
75 inline EvaluationBedrockModel& WithInferenceParams(const Aws::String& value) { SetInferenceParams(value); return *this;}
76 inline EvaluationBedrockModel& WithInferenceParams(Aws::String&& value) { SetInferenceParams(std::move(value)); return *this;}
77 inline EvaluationBedrockModel& WithInferenceParams(const char* value) { SetInferenceParams(value); return *this;}
79 private:
80
81 Aws::String m_modelIdentifier;
82 bool m_modelIdentifierHasBeenSet = false;
83
84 Aws::String m_inferenceParams;
85 bool m_inferenceParamsHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace Bedrock
90} // namespace Aws
AWS_BEDROCK_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_BEDROCK_API EvaluationBedrockModel(Aws::Utils::Json::JsonView jsonValue)
EvaluationBedrockModel & WithModelIdentifier(const Aws::String &value)
void SetModelIdentifier(const Aws::String &value)
void SetInferenceParams(const Aws::String &value)
EvaluationBedrockModel & WithInferenceParams(const Aws::String &value)
EvaluationBedrockModel & WithModelIdentifier(const char *value)
AWS_BEDROCK_API EvaluationBedrockModel & operator=(Aws::Utils::Json::JsonView jsonValue)
EvaluationBedrockModel & WithInferenceParams(Aws::String &&value)
EvaluationBedrockModel & WithModelIdentifier(Aws::String &&value)
EvaluationBedrockModel & WithInferenceParams(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue