AWS SDK for C++

AWS SDK for C++ Version 1.11.611

Loading...
Searching...
No Matches
SecurityProfileSearchCriteria.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
37 {
38 public:
39 AWS_CONNECT_API SecurityProfileSearchCriteria() = default;
42 AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
50 inline const Aws::Vector<SecurityProfileSearchCriteria>& GetOrConditions() const { return m_orConditions; }
51 inline bool OrConditionsHasBeenSet() const { return m_orConditionsHasBeenSet; }
52 template<typename OrConditionsT = Aws::Vector<SecurityProfileSearchCriteria>>
53 void SetOrConditions(OrConditionsT&& value) { m_orConditionsHasBeenSet = true; m_orConditions = std::forward<OrConditionsT>(value); }
54 template<typename OrConditionsT = Aws::Vector<SecurityProfileSearchCriteria>>
55 SecurityProfileSearchCriteria& WithOrConditions(OrConditionsT&& value) { SetOrConditions(std::forward<OrConditionsT>(value)); return *this;}
56 template<typename OrConditionsT = SecurityProfileSearchCriteria>
57 SecurityProfileSearchCriteria& AddOrConditions(OrConditionsT&& value) { m_orConditionsHasBeenSet = true; m_orConditions.emplace_back(std::forward<OrConditionsT>(value)); return *this; }
59
61
65 inline const Aws::Vector<SecurityProfileSearchCriteria>& GetAndConditions() const { return m_andConditions; }
66 inline bool AndConditionsHasBeenSet() const { return m_andConditionsHasBeenSet; }
67 template<typename AndConditionsT = Aws::Vector<SecurityProfileSearchCriteria>>
68 void SetAndConditions(AndConditionsT&& value) { m_andConditionsHasBeenSet = true; m_andConditions = std::forward<AndConditionsT>(value); }
69 template<typename AndConditionsT = Aws::Vector<SecurityProfileSearchCriteria>>
70 SecurityProfileSearchCriteria& WithAndConditions(AndConditionsT&& value) { SetAndConditions(std::forward<AndConditionsT>(value)); return *this;}
71 template<typename AndConditionsT = SecurityProfileSearchCriteria>
72 SecurityProfileSearchCriteria& AddAndConditions(AndConditionsT&& value) { m_andConditionsHasBeenSet = true; m_andConditions.emplace_back(std::forward<AndConditionsT>(value)); return *this; }
74
76
77 inline const StringCondition& GetStringCondition() const { return m_stringCondition; }
78 inline bool StringConditionHasBeenSet() const { return m_stringConditionHasBeenSet; }
79 template<typename StringConditionT = StringCondition>
80 void SetStringCondition(StringConditionT&& value) { m_stringConditionHasBeenSet = true; m_stringCondition = std::forward<StringConditionT>(value); }
81 template<typename StringConditionT = StringCondition>
82 SecurityProfileSearchCriteria& WithStringCondition(StringConditionT&& value) { SetStringCondition(std::forward<StringConditionT>(value)); return *this;}
84 private:
85
87 bool m_orConditionsHasBeenSet = false;
88
90 bool m_andConditionsHasBeenSet = false;
91
92 StringCondition m_stringCondition;
93 bool m_stringConditionHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace Connect
98} // namespace Aws
SecurityProfileSearchCriteria & WithAndConditions(AndConditionsT &&value)
SecurityProfileSearchCriteria & AddOrConditions(OrConditionsT &&value)
const Aws::Vector< SecurityProfileSearchCriteria > & GetAndConditions() const
SecurityProfileSearchCriteria & AddAndConditions(AndConditionsT &&value)
AWS_CONNECT_API SecurityProfileSearchCriteria & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CONNECT_API SecurityProfileSearchCriteria(Aws::Utils::Json::JsonView jsonValue)
SecurityProfileSearchCriteria & WithStringCondition(StringConditionT &&value)
const Aws::Vector< SecurityProfileSearchCriteria > & GetOrConditions() const
AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
SecurityProfileSearchCriteria & WithOrConditions(OrConditionsT &&value)
AWS_CONNECT_API SecurityProfileSearchCriteria()=default
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue