AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
PredefinedAttributeSearchCriteria.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/connect/model/StringCondition.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 Connect
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_CONNECT_API PredefinedAttributeSearchCriteria() = default;
39 AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::Vector<PredefinedAttributeSearchCriteria>& GetOrConditions() const { return m_orConditions; }
48 inline bool OrConditionsHasBeenSet() const { return m_orConditionsHasBeenSet; }
49 template<typename OrConditionsT = Aws::Vector<PredefinedAttributeSearchCriteria>>
50 void SetOrConditions(OrConditionsT&& value) { m_orConditionsHasBeenSet = true; m_orConditions = std::forward<OrConditionsT>(value); }
51 template<typename OrConditionsT = Aws::Vector<PredefinedAttributeSearchCriteria>>
52 PredefinedAttributeSearchCriteria& WithOrConditions(OrConditionsT&& value) { SetOrConditions(std::forward<OrConditionsT>(value)); return *this;}
53 template<typename OrConditionsT = PredefinedAttributeSearchCriteria>
54 PredefinedAttributeSearchCriteria& AddOrConditions(OrConditionsT&& value) { m_orConditionsHasBeenSet = true; m_orConditions.emplace_back(std::forward<OrConditionsT>(value)); return *this; }
56
58
62 inline const Aws::Vector<PredefinedAttributeSearchCriteria>& GetAndConditions() const { return m_andConditions; }
63 inline bool AndConditionsHasBeenSet() const { return m_andConditionsHasBeenSet; }
64 template<typename AndConditionsT = Aws::Vector<PredefinedAttributeSearchCriteria>>
65 void SetAndConditions(AndConditionsT&& value) { m_andConditionsHasBeenSet = true; m_andConditions = std::forward<AndConditionsT>(value); }
66 template<typename AndConditionsT = Aws::Vector<PredefinedAttributeSearchCriteria>>
67 PredefinedAttributeSearchCriteria& WithAndConditions(AndConditionsT&& value) { SetAndConditions(std::forward<AndConditionsT>(value)); return *this;}
68 template<typename AndConditionsT = PredefinedAttributeSearchCriteria>
69 PredefinedAttributeSearchCriteria& AddAndConditions(AndConditionsT&& value) { m_andConditionsHasBeenSet = true; m_andConditions.emplace_back(std::forward<AndConditionsT>(value)); return *this; }
71
73
74 inline const StringCondition& GetStringCondition() const { return m_stringCondition; }
75 inline bool StringConditionHasBeenSet() const { return m_stringConditionHasBeenSet; }
76 template<typename StringConditionT = StringCondition>
77 void SetStringCondition(StringConditionT&& value) { m_stringConditionHasBeenSet = true; m_stringCondition = std::forward<StringConditionT>(value); }
78 template<typename StringConditionT = StringCondition>
79 PredefinedAttributeSearchCriteria& WithStringCondition(StringConditionT&& value) { SetStringCondition(std::forward<StringConditionT>(value)); return *this;}
81 private:
82
84 bool m_orConditionsHasBeenSet = false;
85
87 bool m_andConditionsHasBeenSet = false;
88
89 StringCondition m_stringCondition;
90 bool m_stringConditionHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace Connect
95} // namespace Aws
AWS_CONNECT_API PredefinedAttributeSearchCriteria(Aws::Utils::Json::JsonView jsonValue)
AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
PredefinedAttributeSearchCriteria & WithOrConditions(OrConditionsT &&value)
PredefinedAttributeSearchCriteria & WithAndConditions(AndConditionsT &&value)
const Aws::Vector< PredefinedAttributeSearchCriteria > & GetAndConditions() const
const Aws::Vector< PredefinedAttributeSearchCriteria > & GetOrConditions() const
AWS_CONNECT_API PredefinedAttributeSearchCriteria & operator=(Aws::Utils::Json::JsonView jsonValue)
PredefinedAttributeSearchCriteria & WithStringCondition(StringConditionT &&value)
PredefinedAttributeSearchCriteria & AddOrConditions(OrConditionsT &&value)
PredefinedAttributeSearchCriteria & AddAndConditions(AndConditionsT &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue