AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
InvalidLoopBoundaryFlowValidationDetails.h
1
6#pragma once
7#include <aws/bedrock-agent/BedrockAgent_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 BedrockAgent
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_BEDROCKAGENT_API InvalidLoopBoundaryFlowValidationDetails() = default;
38 AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetConnection() const { return m_connection; }
46 inline bool ConnectionHasBeenSet() const { return m_connectionHasBeenSet; }
47 template<typename ConnectionT = Aws::String>
48 void SetConnection(ConnectionT&& value) { m_connectionHasBeenSet = true; m_connection = std::forward<ConnectionT>(value); }
49 template<typename ConnectionT = Aws::String>
50 InvalidLoopBoundaryFlowValidationDetails& WithConnection(ConnectionT&& value) { SetConnection(std::forward<ConnectionT>(value)); return *this;}
52
54
58 inline const Aws::String& GetSource() const { return m_source; }
59 inline bool SourceHasBeenSet() const { return m_sourceHasBeenSet; }
60 template<typename SourceT = Aws::String>
61 void SetSource(SourceT&& value) { m_sourceHasBeenSet = true; m_source = std::forward<SourceT>(value); }
62 template<typename SourceT = Aws::String>
63 InvalidLoopBoundaryFlowValidationDetails& WithSource(SourceT&& value) { SetSource(std::forward<SourceT>(value)); return *this;}
65
67
71 inline const Aws::String& GetTarget() const { return m_target; }
72 inline bool TargetHasBeenSet() const { return m_targetHasBeenSet; }
73 template<typename TargetT = Aws::String>
74 void SetTarget(TargetT&& value) { m_targetHasBeenSet = true; m_target = std::forward<TargetT>(value); }
75 template<typename TargetT = Aws::String>
76 InvalidLoopBoundaryFlowValidationDetails& WithTarget(TargetT&& value) { SetTarget(std::forward<TargetT>(value)); return *this;}
78 private:
79
80 Aws::String m_connection;
81 bool m_connectionHasBeenSet = false;
82
83 Aws::String m_source;
84 bool m_sourceHasBeenSet = false;
85
86 Aws::String m_target;
87 bool m_targetHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace BedrockAgent
92} // namespace Aws
InvalidLoopBoundaryFlowValidationDetails & WithConnection(ConnectionT &&value)
AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_BEDROCKAGENT_API InvalidLoopBoundaryFlowValidationDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_BEDROCKAGENT_API InvalidLoopBoundaryFlowValidationDetails(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue