AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FlowNodeInput.h
1
6#pragma once
7#include <aws/bedrock-agent/BedrockAgent_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/bedrock-agent/model/FlowNodeIODataType.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 BedrockAgent
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_BEDROCKAGENT_API FlowNodeInput();
36 AWS_BEDROCKAGENT_API FlowNodeInput(Aws::Utils::Json::JsonView jsonValue);
37 AWS_BEDROCKAGENT_API FlowNodeInput& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
48 inline const Aws::String& GetExpression() const{ return m_expression; }
49 inline bool ExpressionHasBeenSet() const { return m_expressionHasBeenSet; }
50 inline void SetExpression(const Aws::String& value) { m_expressionHasBeenSet = true; m_expression = value; }
51 inline void SetExpression(Aws::String&& value) { m_expressionHasBeenSet = true; m_expression = std::move(value); }
52 inline void SetExpression(const char* value) { m_expressionHasBeenSet = true; m_expression.assign(value); }
53 inline FlowNodeInput& WithExpression(const Aws::String& value) { SetExpression(value); return *this;}
54 inline FlowNodeInput& WithExpression(Aws::String&& value) { SetExpression(std::move(value)); return *this;}
55 inline FlowNodeInput& WithExpression(const char* value) { SetExpression(value); return *this;}
57
59
62 inline const Aws::String& GetName() const{ return m_name; }
63 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
64 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
65 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
66 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
67 inline FlowNodeInput& WithName(const Aws::String& value) { SetName(value); return *this;}
68 inline FlowNodeInput& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
69 inline FlowNodeInput& WithName(const char* value) { SetName(value); return *this;}
71
73
77 inline const FlowNodeIODataType& GetType() const{ return m_type; }
78 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
79 inline void SetType(const FlowNodeIODataType& value) { m_typeHasBeenSet = true; m_type = value; }
80 inline void SetType(FlowNodeIODataType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
81 inline FlowNodeInput& WithType(const FlowNodeIODataType& value) { SetType(value); return *this;}
82 inline FlowNodeInput& WithType(FlowNodeIODataType&& value) { SetType(std::move(value)); return *this;}
84 private:
85
86 Aws::String m_expression;
87 bool m_expressionHasBeenSet = false;
88
89 Aws::String m_name;
90 bool m_nameHasBeenSet = false;
91
92 FlowNodeIODataType m_type;
93 bool m_typeHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace BedrockAgent
98} // namespace Aws
FlowNodeInput & WithExpression(Aws::String &&value)
void SetName(const Aws::String &value)
AWS_BEDROCKAGENT_API FlowNodeInput & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetName(Aws::String &&value)
AWS_BEDROCKAGENT_API FlowNodeInput()
void SetType(FlowNodeIODataType &&value)
void SetExpression(const char *value)
const Aws::String & GetExpression() const
void SetExpression(Aws::String &&value)
const FlowNodeIODataType & GetType() const
const Aws::String & GetName() const
FlowNodeInput & WithName(Aws::String &&value)
FlowNodeInput & WithType(FlowNodeIODataType &&value)
FlowNodeInput & WithExpression(const char *value)
void SetExpression(const Aws::String &value)
FlowNodeInput & WithExpression(const Aws::String &value)
AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const
void SetType(const FlowNodeIODataType &value)
FlowNodeInput & WithName(const Aws::String &value)
FlowNodeInput & WithName(const char *value)
FlowNodeInput & WithType(const FlowNodeIODataType &value)
AWS_BEDROCKAGENT_API FlowNodeInput(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue