AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ColumnSelector.h
1
6#pragma once
7#include <aws/databrew/GlueDataBrew_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace GlueDataBrew
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_GLUEDATABREW_API ColumnSelector();
37 AWS_GLUEDATABREW_API ColumnSelector(Aws::Utils::Json::JsonView jsonValue);
38 AWS_GLUEDATABREW_API ColumnSelector& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_GLUEDATABREW_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetRegex() const{ return m_regex; }
47 inline bool RegexHasBeenSet() const { return m_regexHasBeenSet; }
48 inline void SetRegex(const Aws::String& value) { m_regexHasBeenSet = true; m_regex = value; }
49 inline void SetRegex(Aws::String&& value) { m_regexHasBeenSet = true; m_regex = std::move(value); }
50 inline void SetRegex(const char* value) { m_regexHasBeenSet = true; m_regex.assign(value); }
51 inline ColumnSelector& WithRegex(const Aws::String& value) { SetRegex(value); return *this;}
52 inline ColumnSelector& WithRegex(Aws::String&& value) { SetRegex(std::move(value)); return *this;}
53 inline ColumnSelector& WithRegex(const char* value) { SetRegex(value); return *this;}
55
57
60 inline const Aws::String& GetName() const{ return m_name; }
61 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
62 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
63 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
64 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
65 inline ColumnSelector& WithName(const Aws::String& value) { SetName(value); return *this;}
66 inline ColumnSelector& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
67 inline ColumnSelector& WithName(const char* value) { SetName(value); return *this;}
69 private:
70
71 Aws::String m_regex;
72 bool m_regexHasBeenSet = false;
73
74 Aws::String m_name;
75 bool m_nameHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace GlueDataBrew
80} // namespace Aws
ColumnSelector & WithName(const Aws::String &value)
void SetRegex(const Aws::String &value)
const Aws::String & GetName() const
ColumnSelector & WithRegex(Aws::String &&value)
ColumnSelector & WithRegex(const Aws::String &value)
const Aws::String & GetRegex() const
AWS_GLUEDATABREW_API Aws::Utils::Json::JsonValue Jsonize() const
ColumnSelector & WithName(Aws::String &&value)
ColumnSelector & WithName(const char *value)
AWS_GLUEDATABREW_API ColumnSelector & operator=(Aws::Utils::Json::JsonView jsonValue)
ColumnSelector & WithRegex(const char *value)
AWS_GLUEDATABREW_API ColumnSelector(Aws::Utils::Json::JsonView jsonValue)
void SetName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue