AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DatabaseTableList.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/firehose/Firehose_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace Firehose {
21namespace Model {
22
31 public:
32 AWS_FIREHOSE_API DatabaseTableList() = default;
33 AWS_FIREHOSE_API DatabaseTableList(Aws::Utils::Json::JsonView jsonValue);
35 AWS_FIREHOSE_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
43 inline const Aws::Vector<Aws::String>& GetInclude() const { return m_include; }
44 inline bool IncludeHasBeenSet() const { return m_includeHasBeenSet; }
45 template <typename IncludeT = Aws::Vector<Aws::String>>
46 void SetInclude(IncludeT&& value) {
47 m_includeHasBeenSet = true;
48 m_include = std::forward<IncludeT>(value);
49 }
50 template <typename IncludeT = Aws::Vector<Aws::String>>
51 DatabaseTableList& WithInclude(IncludeT&& value) {
52 SetInclude(std::forward<IncludeT>(value));
53 return *this;
54 }
55 template <typename IncludeT = Aws::String>
56 DatabaseTableList& AddInclude(IncludeT&& value) {
57 m_includeHasBeenSet = true;
58 m_include.emplace_back(std::forward<IncludeT>(value));
59 return *this;
60 }
62
64
69 inline const Aws::Vector<Aws::String>& GetExclude() const { return m_exclude; }
70 inline bool ExcludeHasBeenSet() const { return m_excludeHasBeenSet; }
71 template <typename ExcludeT = Aws::Vector<Aws::String>>
72 void SetExclude(ExcludeT&& value) {
73 m_excludeHasBeenSet = true;
74 m_exclude = std::forward<ExcludeT>(value);
75 }
76 template <typename ExcludeT = Aws::Vector<Aws::String>>
77 DatabaseTableList& WithExclude(ExcludeT&& value) {
78 SetExclude(std::forward<ExcludeT>(value));
79 return *this;
80 }
81 template <typename ExcludeT = Aws::String>
82 DatabaseTableList& AddExclude(ExcludeT&& value) {
83 m_excludeHasBeenSet = true;
84 m_exclude.emplace_back(std::forward<ExcludeT>(value));
85 return *this;
86 }
88 private:
90
92 bool m_includeHasBeenSet = false;
93 bool m_excludeHasBeenSet = false;
94};
95
96} // namespace Model
97} // namespace Firehose
98} // namespace Aws
DatabaseTableList & WithInclude(IncludeT &&value)
AWS_FIREHOSE_API DatabaseTableList(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Aws::String > & GetExclude() const
DatabaseTableList & AddExclude(ExcludeT &&value)
DatabaseTableList & AddInclude(IncludeT &&value)
const Aws::Vector< Aws::String > & GetInclude() const
AWS_FIREHOSE_API DatabaseTableList & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_FIREHOSE_API Aws::Utils::Json::JsonValue Jsonize() const
DatabaseTableList & WithExclude(ExcludeT &&value)
AWS_FIREHOSE_API DatabaseTableList()=default
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue