AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
HudiTarget.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.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 Glue
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_GLUE_API HudiTarget();
36 AWS_GLUE_API HudiTarget(Aws::Utils::Json::JsonView jsonValue);
39
40
42
48 inline const Aws::Vector<Aws::String>& GetPaths() const{ return m_paths; }
49 inline bool PathsHasBeenSet() const { return m_pathsHasBeenSet; }
50 inline void SetPaths(const Aws::Vector<Aws::String>& value) { m_pathsHasBeenSet = true; m_paths = value; }
51 inline void SetPaths(Aws::Vector<Aws::String>&& value) { m_pathsHasBeenSet = true; m_paths = std::move(value); }
52 inline HudiTarget& WithPaths(const Aws::Vector<Aws::String>& value) { SetPaths(value); return *this;}
53 inline HudiTarget& WithPaths(Aws::Vector<Aws::String>&& value) { SetPaths(std::move(value)); return *this;}
54 inline HudiTarget& AddPaths(const Aws::String& value) { m_pathsHasBeenSet = true; m_paths.push_back(value); return *this; }
55 inline HudiTarget& AddPaths(Aws::String&& value) { m_pathsHasBeenSet = true; m_paths.push_back(std::move(value)); return *this; }
56 inline HudiTarget& AddPaths(const char* value) { m_pathsHasBeenSet = true; m_paths.push_back(value); return *this; }
58
60
65 inline const Aws::String& GetConnectionName() const{ return m_connectionName; }
66 inline bool ConnectionNameHasBeenSet() const { return m_connectionNameHasBeenSet; }
67 inline void SetConnectionName(const Aws::String& value) { m_connectionNameHasBeenSet = true; m_connectionName = value; }
68 inline void SetConnectionName(Aws::String&& value) { m_connectionNameHasBeenSet = true; m_connectionName = std::move(value); }
69 inline void SetConnectionName(const char* value) { m_connectionNameHasBeenSet = true; m_connectionName.assign(value); }
70 inline HudiTarget& WithConnectionName(const Aws::String& value) { SetConnectionName(value); return *this;}
71 inline HudiTarget& WithConnectionName(Aws::String&& value) { SetConnectionName(std::move(value)); return *this;}
72 inline HudiTarget& WithConnectionName(const char* value) { SetConnectionName(value); return *this;}
74
76
82 inline const Aws::Vector<Aws::String>& GetExclusions() const{ return m_exclusions; }
83 inline bool ExclusionsHasBeenSet() const { return m_exclusionsHasBeenSet; }
84 inline void SetExclusions(const Aws::Vector<Aws::String>& value) { m_exclusionsHasBeenSet = true; m_exclusions = value; }
85 inline void SetExclusions(Aws::Vector<Aws::String>&& value) { m_exclusionsHasBeenSet = true; m_exclusions = std::move(value); }
86 inline HudiTarget& WithExclusions(const Aws::Vector<Aws::String>& value) { SetExclusions(value); return *this;}
87 inline HudiTarget& WithExclusions(Aws::Vector<Aws::String>&& value) { SetExclusions(std::move(value)); return *this;}
88 inline HudiTarget& AddExclusions(const Aws::String& value) { m_exclusionsHasBeenSet = true; m_exclusions.push_back(value); return *this; }
89 inline HudiTarget& AddExclusions(Aws::String&& value) { m_exclusionsHasBeenSet = true; m_exclusions.push_back(std::move(value)); return *this; }
90 inline HudiTarget& AddExclusions(const char* value) { m_exclusionsHasBeenSet = true; m_exclusions.push_back(value); return *this; }
92
94
99 inline int GetMaximumTraversalDepth() const{ return m_maximumTraversalDepth; }
100 inline bool MaximumTraversalDepthHasBeenSet() const { return m_maximumTraversalDepthHasBeenSet; }
101 inline void SetMaximumTraversalDepth(int value) { m_maximumTraversalDepthHasBeenSet = true; m_maximumTraversalDepth = value; }
102 inline HudiTarget& WithMaximumTraversalDepth(int value) { SetMaximumTraversalDepth(value); return *this;}
104 private:
105
107 bool m_pathsHasBeenSet = false;
108
109 Aws::String m_connectionName;
110 bool m_connectionNameHasBeenSet = false;
111
112 Aws::Vector<Aws::String> m_exclusions;
113 bool m_exclusionsHasBeenSet = false;
114
115 int m_maximumTraversalDepth;
116 bool m_maximumTraversalDepthHasBeenSet = false;
117 };
118
119} // namespace Model
120} // namespace Glue
121} // namespace Aws
const Aws::Vector< Aws::String > & GetPaths() const
Definition HudiTarget.h:48
bool ConnectionNameHasBeenSet() const
Definition HudiTarget.h:66
HudiTarget & WithPaths(Aws::Vector< Aws::String > &&value)
Definition HudiTarget.h:53
HudiTarget & WithExclusions(const Aws::Vector< Aws::String > &value)
Definition HudiTarget.h:86
void SetConnectionName(const Aws::String &value)
Definition HudiTarget.h:67
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
HudiTarget & AddPaths(const Aws::String &value)
Definition HudiTarget.h:54
AWS_GLUE_API HudiTarget(Aws::Utils::Json::JsonView jsonValue)
HudiTarget & WithConnectionName(const Aws::String &value)
Definition HudiTarget.h:70
HudiTarget & AddExclusions(const Aws::String &value)
Definition HudiTarget.h:88
void SetConnectionName(Aws::String &&value)
Definition HudiTarget.h:68
HudiTarget & AddExclusions(const char *value)
Definition HudiTarget.h:90
HudiTarget & WithConnectionName(const char *value)
Definition HudiTarget.h:72
const Aws::String & GetConnectionName() const
Definition HudiTarget.h:65
void SetPaths(const Aws::Vector< Aws::String > &value)
Definition HudiTarget.h:50
int GetMaximumTraversalDepth() const
Definition HudiTarget.h:99
void SetMaximumTraversalDepth(int value)
Definition HudiTarget.h:101
const Aws::Vector< Aws::String > & GetExclusions() const
Definition HudiTarget.h:82
AWS_GLUE_API HudiTarget & operator=(Aws::Utils::Json::JsonView jsonValue)
HudiTarget & WithConnectionName(Aws::String &&value)
Definition HudiTarget.h:71
void SetConnectionName(const char *value)
Definition HudiTarget.h:69
HudiTarget & AddPaths(const char *value)
Definition HudiTarget.h:56
HudiTarget & WithPaths(const Aws::Vector< Aws::String > &value)
Definition HudiTarget.h:52
HudiTarget & AddExclusions(Aws::String &&value)
Definition HudiTarget.h:89
bool MaximumTraversalDepthHasBeenSet() const
Definition HudiTarget.h:100
HudiTarget & AddPaths(Aws::String &&value)
Definition HudiTarget.h:55
void SetPaths(Aws::Vector< Aws::String > &&value)
Definition HudiTarget.h:51
HudiTarget & WithExclusions(Aws::Vector< Aws::String > &&value)
Definition HudiTarget.h:87
bool ExclusionsHasBeenSet() const
Definition HudiTarget.h:83
void SetExclusions(Aws::Vector< Aws::String > &&value)
Definition HudiTarget.h:85
HudiTarget & WithMaximumTraversalDepth(int value)
Definition HudiTarget.h:102
void SetExclusions(const Aws::Vector< Aws::String > &value)
Definition HudiTarget.h:84
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue