AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Parameter.h
1
6#pragma once
7#include <aws/bedrock-agent-runtime/BedrockAgentRuntime_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 BedrockAgentRuntime
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_BEDROCKAGENTRUNTIME_API Parameter();
35 AWS_BEDROCKAGENTRUNTIME_API Parameter(Aws::Utils::Json::JsonView jsonValue);
36 AWS_BEDROCKAGENTRUNTIME_API Parameter& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_BEDROCKAGENTRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetName() const{ return m_name; }
45 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
46 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
47 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
48 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
49 inline Parameter& WithName(const Aws::String& value) { SetName(value); return *this;}
50 inline Parameter& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
51 inline Parameter& WithName(const char* value) { SetName(value); return *this;}
53
55
58 inline const Aws::String& GetType() const{ return m_type; }
59 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
60 inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; }
61 inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
62 inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); }
63 inline Parameter& WithType(const Aws::String& value) { SetType(value); return *this;}
64 inline Parameter& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;}
65 inline Parameter& WithType(const char* value) { SetType(value); return *this;}
67
69
72 inline const Aws::String& GetValue() const{ return m_value; }
73 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
74 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
75 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
76 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
77 inline Parameter& WithValue(const Aws::String& value) { SetValue(value); return *this;}
78 inline Parameter& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
79 inline Parameter& WithValue(const char* value) { SetValue(value); return *this;}
81 private:
82
83 Aws::String m_name;
84 bool m_nameHasBeenSet = false;
85
86 Aws::String m_type;
87 bool m_typeHasBeenSet = false;
88
89 Aws::String m_value;
90 bool m_valueHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace BedrockAgentRuntime
95} // namespace Aws
const Aws::String & GetName() const
Definition Parameter.h:44
void SetName(Aws::String &&value)
Definition Parameter.h:47
AWS_BEDROCKAGENTRUNTIME_API Parameter()
void SetName(const Aws::String &value)
Definition Parameter.h:46
void SetValue(const Aws::String &value)
Definition Parameter.h:74
Parameter & WithName(const Aws::String &value)
Definition Parameter.h:49
Parameter & WithValue(const Aws::String &value)
Definition Parameter.h:77
Parameter & WithName(const char *value)
Definition Parameter.h:51
void SetType(const Aws::String &value)
Definition Parameter.h:60
Parameter & WithName(Aws::String &&value)
Definition Parameter.h:50
Parameter & WithType(const Aws::String &value)
Definition Parameter.h:63
AWS_BEDROCKAGENTRUNTIME_API Parameter(Aws::Utils::Json::JsonView jsonValue)
AWS_BEDROCKAGENTRUNTIME_API Parameter & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetType() const
Definition Parameter.h:58
Parameter & WithValue(const char *value)
Definition Parameter.h:79
Parameter & WithValue(Aws::String &&value)
Definition Parameter.h:78
Parameter & WithType(Aws::String &&value)
Definition Parameter.h:64
AWS_BEDROCKAGENTRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetValue() const
Definition Parameter.h:72
Parameter & WithType(const char *value)
Definition Parameter.h:65
void SetType(Aws::String &&value)
Definition Parameter.h:61
void SetValue(Aws::String &&value)
Definition Parameter.h:75
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue