AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
FlowTraceNodeInputField.h
1
6#pragma once
7#include <aws/bedrock-agent-runtime/BedrockAgentRuntime_EXPORTS.h>
8#include <aws/bedrock-agent-runtime/model/FlowTraceNodeInputContent.h>
9#include <aws/core/utils/memory/stl/AWSString.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 BedrockAgentRuntime
23{
24namespace Model
25{
26
37 {
38 public:
39 AWS_BEDROCKAGENTRUNTIME_API FlowTraceNodeInputField() = default;
40 AWS_BEDROCKAGENTRUNTIME_API FlowTraceNodeInputField(Aws::Utils::Json::JsonView jsonValue);
41 AWS_BEDROCKAGENTRUNTIME_API FlowTraceNodeInputField& operator=(Aws::Utils::Json::JsonView jsonValue);
42 AWS_BEDROCKAGENTRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
49 inline const FlowTraceNodeInputContent& GetContent() const { return m_content; }
50 inline bool ContentHasBeenSet() const { return m_contentHasBeenSet; }
51 template<typename ContentT = FlowTraceNodeInputContent>
52 void SetContent(ContentT&& value) { m_contentHasBeenSet = true; m_content = std::forward<ContentT>(value); }
53 template<typename ContentT = FlowTraceNodeInputContent>
54 FlowTraceNodeInputField& WithContent(ContentT&& value) { SetContent(std::forward<ContentT>(value)); return *this;}
56
58
61 inline const Aws::String& GetNodeInputName() const { return m_nodeInputName; }
62 inline bool NodeInputNameHasBeenSet() const { return m_nodeInputNameHasBeenSet; }
63 template<typename NodeInputNameT = Aws::String>
64 void SetNodeInputName(NodeInputNameT&& value) { m_nodeInputNameHasBeenSet = true; m_nodeInputName = std::forward<NodeInputNameT>(value); }
65 template<typename NodeInputNameT = Aws::String>
66 FlowTraceNodeInputField& WithNodeInputName(NodeInputNameT&& value) { SetNodeInputName(std::forward<NodeInputNameT>(value)); return *this;}
68 private:
69
71 bool m_contentHasBeenSet = false;
72
73 Aws::String m_nodeInputName;
74 bool m_nodeInputNameHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace BedrockAgentRuntime
79} // namespace Aws
FlowTraceNodeInputField & WithNodeInputName(NodeInputNameT &&value)
AWS_BEDROCKAGENTRUNTIME_API FlowTraceNodeInputField()=default
AWS_BEDROCKAGENTRUNTIME_API FlowTraceNodeInputField(Aws::Utils::Json::JsonView jsonValue)
FlowTraceNodeInputField & WithContent(ContentT &&value)
AWS_BEDROCKAGENTRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_BEDROCKAGENTRUNTIME_API FlowTraceNodeInputField & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue