AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ConditionFlowNodeConfiguration.h
1
6#pragma once
7#include <aws/bedrock-agent/BedrockAgent_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/bedrock-agent/model/FlowCondition.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
37 {
38 public:
39 AWS_BEDROCKAGENT_API ConditionFlowNodeConfiguration();
42 AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
50 inline const Aws::Vector<FlowCondition>& GetConditions() const{ return m_conditions; }
51 inline bool ConditionsHasBeenSet() const { return m_conditionsHasBeenSet; }
52 inline void SetConditions(const Aws::Vector<FlowCondition>& value) { m_conditionsHasBeenSet = true; m_conditions = value; }
53 inline void SetConditions(Aws::Vector<FlowCondition>&& value) { m_conditionsHasBeenSet = true; m_conditions = std::move(value); }
56 inline ConditionFlowNodeConfiguration& AddConditions(const FlowCondition& value) { m_conditionsHasBeenSet = true; m_conditions.push_back(value); return *this; }
57 inline ConditionFlowNodeConfiguration& AddConditions(FlowCondition&& value) { m_conditionsHasBeenSet = true; m_conditions.push_back(std::move(value)); return *this; }
59 private:
60
61 Aws::Vector<FlowCondition> m_conditions;
62 bool m_conditionsHasBeenSet = false;
63 };
64
65} // namespace Model
66} // namespace BedrockAgent
67} // namespace Aws
ConditionFlowNodeConfiguration & AddConditions(FlowCondition &&value)
void SetConditions(const Aws::Vector< FlowCondition > &value)
AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_BEDROCKAGENT_API ConditionFlowNodeConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
ConditionFlowNodeConfiguration & AddConditions(const FlowCondition &value)
ConditionFlowNodeConfiguration & WithConditions(Aws::Vector< FlowCondition > &&value)
ConditionFlowNodeConfiguration & WithConditions(const Aws::Vector< FlowCondition > &value)
AWS_BEDROCKAGENT_API ConditionFlowNodeConfiguration(Aws::Utils::Json::JsonView jsonValue)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue