AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
NotInExpression.h
1
6#pragma once
7#include <aws/datazone/DataZone_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.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 DataZone
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_DATAZONE_API NotInExpression();
37 AWS_DATAZONE_API NotInExpression(Aws::Utils::Json::JsonView jsonValue);
39 AWS_DATAZONE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetColumnName() const{ return m_columnName; }
47 inline bool ColumnNameHasBeenSet() const { return m_columnNameHasBeenSet; }
48 inline void SetColumnName(const Aws::String& value) { m_columnNameHasBeenSet = true; m_columnName = value; }
49 inline void SetColumnName(Aws::String&& value) { m_columnNameHasBeenSet = true; m_columnName = std::move(value); }
50 inline void SetColumnName(const char* value) { m_columnNameHasBeenSet = true; m_columnName.assign(value); }
51 inline NotInExpression& WithColumnName(const Aws::String& value) { SetColumnName(value); return *this;}
52 inline NotInExpression& WithColumnName(Aws::String&& value) { SetColumnName(std::move(value)); return *this;}
53 inline NotInExpression& WithColumnName(const char* value) { SetColumnName(value); return *this;}
55
57
60 inline const Aws::Vector<Aws::String>& GetValues() const{ return m_values; }
61 inline bool ValuesHasBeenSet() const { return m_valuesHasBeenSet; }
62 inline void SetValues(const Aws::Vector<Aws::String>& value) { m_valuesHasBeenSet = true; m_values = value; }
63 inline void SetValues(Aws::Vector<Aws::String>&& value) { m_valuesHasBeenSet = true; m_values = std::move(value); }
64 inline NotInExpression& WithValues(const Aws::Vector<Aws::String>& value) { SetValues(value); return *this;}
65 inline NotInExpression& WithValues(Aws::Vector<Aws::String>&& value) { SetValues(std::move(value)); return *this;}
66 inline NotInExpression& AddValues(const Aws::String& value) { m_valuesHasBeenSet = true; m_values.push_back(value); return *this; }
67 inline NotInExpression& AddValues(Aws::String&& value) { m_valuesHasBeenSet = true; m_values.push_back(std::move(value)); return *this; }
68 inline NotInExpression& AddValues(const char* value) { m_valuesHasBeenSet = true; m_values.push_back(value); return *this; }
70 private:
71
72 Aws::String m_columnName;
73 bool m_columnNameHasBeenSet = false;
74
76 bool m_valuesHasBeenSet = false;
77 };
78
79} // namespace Model
80} // namespace DataZone
81} // namespace Aws
void SetColumnName(Aws::String &&value)
NotInExpression & AddValues(const Aws::String &value)
NotInExpression & WithValues(Aws::Vector< Aws::String > &&value)
void SetValues(const Aws::Vector< Aws::String > &value)
AWS_DATAZONE_API NotInExpression(Aws::Utils::Json::JsonView jsonValue)
NotInExpression & WithValues(const Aws::Vector< Aws::String > &value)
const Aws::String & GetColumnName() const
void SetValues(Aws::Vector< Aws::String > &&value)
NotInExpression & WithColumnName(const char *value)
const Aws::Vector< Aws::String > & GetValues() const
void SetColumnName(const Aws::String &value)
NotInExpression & WithColumnName(const Aws::String &value)
NotInExpression & AddValues(Aws::String &&value)
NotInExpression & AddValues(const char *value)
NotInExpression & WithColumnName(Aws::String &&value)
AWS_DATAZONE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_DATAZONE_API NotInExpression & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetColumnName(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