AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FlowNodeOutput.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
34 {
35 public:
36 AWS_BEDROCKAGENT_API FlowNodeOutput();
37 AWS_BEDROCKAGENT_API FlowNodeOutput(Aws::Utils::Json::JsonView jsonValue);
38 AWS_BEDROCKAGENT_API FlowNodeOutput& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetName() const{ return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
49 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
50 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
51 inline FlowNodeOutput& WithName(const Aws::String& value) { SetName(value); return *this;}
52 inline FlowNodeOutput& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
53 inline FlowNodeOutput& WithName(const char* value) { SetName(value); return *this;}
55
57
61 inline const FlowNodeIODataType& GetType() const{ return m_type; }
62 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
63 inline void SetType(const FlowNodeIODataType& value) { m_typeHasBeenSet = true; m_type = value; }
64 inline void SetType(FlowNodeIODataType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
65 inline FlowNodeOutput& WithType(const FlowNodeIODataType& value) { SetType(value); return *this;}
66 inline FlowNodeOutput& WithType(FlowNodeIODataType&& value) { SetType(std::move(value)); return *this;}
68 private:
69
70 Aws::String m_name;
71 bool m_nameHasBeenSet = false;
72
73 FlowNodeIODataType m_type;
74 bool m_typeHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace BedrockAgent
79} // namespace Aws
void SetName(const Aws::String &value)
const FlowNodeIODataType & GetType() const
FlowNodeOutput & WithType(FlowNodeIODataType &&value)
FlowNodeOutput & WithName(Aws::String &&value)
FlowNodeOutput & WithName(const Aws::String &value)
FlowNodeOutput & WithName(const char *value)
AWS_BEDROCKAGENT_API FlowNodeOutput(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetName() const
void SetType(FlowNodeIODataType &&value)
void SetType(const FlowNodeIODataType &value)
FlowNodeOutput & WithType(const FlowNodeIODataType &value)
AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_BEDROCKAGENT_API FlowNodeOutput & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue