AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ByteMatchSet.h
1
6#pragma once
7#include <aws/waf-regional/WAFRegional_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/waf-regional/model/ByteMatchTuple.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace WAFRegional
24{
25namespace Model
26{
27
51 {
52 public:
53 AWS_WAFREGIONAL_API ByteMatchSet();
54 AWS_WAFREGIONAL_API ByteMatchSet(Aws::Utils::Json::JsonView jsonValue);
55 AWS_WAFREGIONAL_API ByteMatchSet& operator=(Aws::Utils::Json::JsonView jsonValue);
56 AWS_WAFREGIONAL_API Aws::Utils::Json::JsonValue Jsonize() const;
57
58
60
70 inline const Aws::String& GetByteMatchSetId() const{ return m_byteMatchSetId; }
71 inline bool ByteMatchSetIdHasBeenSet() const { return m_byteMatchSetIdHasBeenSet; }
72 inline void SetByteMatchSetId(const Aws::String& value) { m_byteMatchSetIdHasBeenSet = true; m_byteMatchSetId = value; }
73 inline void SetByteMatchSetId(Aws::String&& value) { m_byteMatchSetIdHasBeenSet = true; m_byteMatchSetId = std::move(value); }
74 inline void SetByteMatchSetId(const char* value) { m_byteMatchSetIdHasBeenSet = true; m_byteMatchSetId.assign(value); }
75 inline ByteMatchSet& WithByteMatchSetId(const Aws::String& value) { SetByteMatchSetId(value); return *this;}
76 inline ByteMatchSet& WithByteMatchSetId(Aws::String&& value) { SetByteMatchSetId(std::move(value)); return *this;}
77 inline ByteMatchSet& WithByteMatchSetId(const char* value) { SetByteMatchSetId(value); return *this;}
79
81
85 inline const Aws::String& GetName() const{ return m_name; }
86 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
87 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
88 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
89 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
90 inline ByteMatchSet& WithName(const Aws::String& value) { SetName(value); return *this;}
91 inline ByteMatchSet& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
92 inline ByteMatchSet& WithName(const char* value) { SetName(value); return *this;}
94
96
101 inline const Aws::Vector<ByteMatchTuple>& GetByteMatchTuples() const{ return m_byteMatchTuples; }
102 inline bool ByteMatchTuplesHasBeenSet() const { return m_byteMatchTuplesHasBeenSet; }
103 inline void SetByteMatchTuples(const Aws::Vector<ByteMatchTuple>& value) { m_byteMatchTuplesHasBeenSet = true; m_byteMatchTuples = value; }
104 inline void SetByteMatchTuples(Aws::Vector<ByteMatchTuple>&& value) { m_byteMatchTuplesHasBeenSet = true; m_byteMatchTuples = std::move(value); }
106 inline ByteMatchSet& WithByteMatchTuples(Aws::Vector<ByteMatchTuple>&& value) { SetByteMatchTuples(std::move(value)); return *this;}
107 inline ByteMatchSet& AddByteMatchTuples(const ByteMatchTuple& value) { m_byteMatchTuplesHasBeenSet = true; m_byteMatchTuples.push_back(value); return *this; }
108 inline ByteMatchSet& AddByteMatchTuples(ByteMatchTuple&& value) { m_byteMatchTuplesHasBeenSet = true; m_byteMatchTuples.push_back(std::move(value)); return *this; }
110 private:
111
112 Aws::String m_byteMatchSetId;
113 bool m_byteMatchSetIdHasBeenSet = false;
114
115 Aws::String m_name;
116 bool m_nameHasBeenSet = false;
117
118 Aws::Vector<ByteMatchTuple> m_byteMatchTuples;
119 bool m_byteMatchTuplesHasBeenSet = false;
120 };
121
122} // namespace Model
123} // namespace WAFRegional
124} // namespace Aws
ByteMatchSet & AddByteMatchTuples(const ByteMatchTuple &value)
ByteMatchSet & WithByteMatchTuples(Aws::Vector< ByteMatchTuple > &&value)
void SetByteMatchTuples(Aws::Vector< ByteMatchTuple > &&value)
const Aws::Vector< ByteMatchTuple > & GetByteMatchTuples() const
void SetByteMatchSetId(const Aws::String &value)
ByteMatchSet & AddByteMatchTuples(ByteMatchTuple &&value)
ByteMatchSet & WithName(const Aws::String &value)
void SetName(const Aws::String &value)
ByteMatchSet & WithByteMatchTuples(const Aws::Vector< ByteMatchTuple > &value)
AWS_WAFREGIONAL_API ByteMatchSet()
AWS_WAFREGIONAL_API ByteMatchSet(Aws::Utils::Json::JsonView jsonValue)
ByteMatchSet & WithName(const char *value)
ByteMatchSet & WithName(Aws::String &&value)
ByteMatchSet & WithByteMatchSetId(const char *value)
void SetByteMatchSetId(Aws::String &&value)
ByteMatchSet & WithByteMatchSetId(Aws::String &&value)
const Aws::String & GetByteMatchSetId() const
void SetByteMatchTuples(const Aws::Vector< ByteMatchTuple > &value)
const Aws::String & GetName() const
AWS_WAFREGIONAL_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_WAFREGIONAL_API ByteMatchSet & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetByteMatchSetId(const char *value)
ByteMatchSet & WithByteMatchSetId(const Aws::String &value)
void SetName(Aws::String &&value)
void SetName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue