AWS SDK for C++

AWS SDK for C++ Version 1.11.860

Loading...
Searching...
No Matches
BetweenConfiguration.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/glue/Glue_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Glue {
20namespace Model {
21
29 public:
30 AWS_GLUE_API BetweenConfiguration() = default;
34
36
40 inline const Aws::String& GetLowBoundKey() const { return m_lowBoundKey; }
41 inline bool LowBoundKeyHasBeenSet() const { return m_lowBoundKeyHasBeenSet; }
42 template <typename LowBoundKeyT = Aws::String>
43 void SetLowBoundKey(LowBoundKeyT&& value) {
44 m_lowBoundKeyHasBeenSet = true;
45 m_lowBoundKey = std::forward<LowBoundKeyT>(value);
46 }
47 template <typename LowBoundKeyT = Aws::String>
48 BetweenConfiguration& WithLowBoundKey(LowBoundKeyT&& value) {
49 SetLowBoundKey(std::forward<LowBoundKeyT>(value));
50 return *this;
51 }
53
55
59 inline const Aws::String& GetHighBoundKey() const { return m_highBoundKey; }
60 inline bool HighBoundKeyHasBeenSet() const { return m_highBoundKeyHasBeenSet; }
61 template <typename HighBoundKeyT = Aws::String>
62 void SetHighBoundKey(HighBoundKeyT&& value) {
63 m_highBoundKeyHasBeenSet = true;
64 m_highBoundKey = std::forward<HighBoundKeyT>(value);
65 }
66 template <typename HighBoundKeyT = Aws::String>
67 BetweenConfiguration& WithHighBoundKey(HighBoundKeyT&& value) {
68 SetHighBoundKey(std::forward<HighBoundKeyT>(value));
69 return *this;
70 }
72
74
77 inline const Aws::String& GetTemplate() const { return m_template; }
78 inline bool TemplateHasBeenSet() const { return m_templateHasBeenSet; }
79 template <typename TemplateT = Aws::String>
80 void SetTemplate(TemplateT&& value) {
81 m_templateHasBeenSet = true;
82 m_template = std::forward<TemplateT>(value);
83 }
84 template <typename TemplateT = Aws::String>
85 BetweenConfiguration& WithTemplate(TemplateT&& value) {
86 SetTemplate(std::forward<TemplateT>(value));
87 return *this;
88 }
90 private:
91 Aws::String m_lowBoundKey;
92
93 Aws::String m_highBoundKey;
94
95 Aws::String m_template;
96 bool m_lowBoundKeyHasBeenSet = false;
97 bool m_highBoundKeyHasBeenSet = false;
98 bool m_templateHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace Glue
103} // namespace Aws
BetweenConfiguration & WithHighBoundKey(HighBoundKeyT &&value)
BetweenConfiguration & WithLowBoundKey(LowBoundKeyT &&value)
const Aws::String & GetLowBoundKey() const
AWS_GLUE_API BetweenConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_GLUE_API BetweenConfiguration()=default
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GLUE_API BetweenConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
BetweenConfiguration & WithTemplate(TemplateT &&value)
void SetHighBoundKey(HighBoundKeyT &&value)
const Aws::String & GetHighBoundKey() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue