AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ApiParameter.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
35 {
36 public:
37 AWS_BEDROCKAGENTRUNTIME_API ApiParameter();
38 AWS_BEDROCKAGENTRUNTIME_API ApiParameter(Aws::Utils::Json::JsonView jsonValue);
39 AWS_BEDROCKAGENTRUNTIME_API ApiParameter& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_BEDROCKAGENTRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetName() const{ return m_name; }
48 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
49 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
50 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
51 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
52 inline ApiParameter& WithName(const Aws::String& value) { SetName(value); return *this;}
53 inline ApiParameter& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
54 inline ApiParameter& WithName(const char* value) { SetName(value); return *this;}
56
58
61 inline const Aws::String& GetType() const{ return m_type; }
62 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
63 inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; }
64 inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
65 inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); }
66 inline ApiParameter& WithType(const Aws::String& value) { SetType(value); return *this;}
67 inline ApiParameter& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;}
68 inline ApiParameter& WithType(const char* value) { SetType(value); return *this;}
70
72
75 inline const Aws::String& GetValue() const{ return m_value; }
76 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
77 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
78 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
79 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
80 inline ApiParameter& WithValue(const Aws::String& value) { SetValue(value); return *this;}
81 inline ApiParameter& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
82 inline ApiParameter& WithValue(const char* value) { SetValue(value); return *this;}
84 private:
85
86 Aws::String m_name;
87 bool m_nameHasBeenSet = false;
88
89 Aws::String m_type;
90 bool m_typeHasBeenSet = false;
91
92 Aws::String m_value;
93 bool m_valueHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace BedrockAgentRuntime
98} // namespace Aws
ApiParameter & WithType(Aws::String &&value)
ApiParameter & WithValue(const Aws::String &value)
ApiParameter & WithName(const char *value)
void SetType(const Aws::String &value)
ApiParameter & WithValue(Aws::String &&value)
ApiParameter & WithName(const Aws::String &value)
AWS_BEDROCKAGENTRUNTIME_API ApiParameter(Aws::Utils::Json::JsonView jsonValue)
void SetName(const Aws::String &value)
AWS_BEDROCKAGENTRUNTIME_API ApiParameter()
ApiParameter & WithType(const char *value)
void SetValue(const Aws::String &value)
ApiParameter & WithValue(const char *value)
AWS_BEDROCKAGENTRUNTIME_API ApiParameter & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_BEDROCKAGENTRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const
ApiParameter & WithType(const Aws::String &value)
ApiParameter & WithName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue