AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DatabaseList.h
1
6#pragma once
7#include <aws/firehose/Firehose_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 Firehose
23{
24namespace Model
25{
26
35 {
36 public:
37 AWS_FIREHOSE_API DatabaseList() = default;
38 AWS_FIREHOSE_API DatabaseList(Aws::Utils::Json::JsonView jsonValue);
40 AWS_FIREHOSE_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
49 inline const Aws::Vector<Aws::String>& GetInclude() const { return m_include; }
50 inline bool IncludeHasBeenSet() const { return m_includeHasBeenSet; }
51 template<typename IncludeT = Aws::Vector<Aws::String>>
52 void SetInclude(IncludeT&& value) { m_includeHasBeenSet = true; m_include = std::forward<IncludeT>(value); }
53 template<typename IncludeT = Aws::Vector<Aws::String>>
54 DatabaseList& WithInclude(IncludeT&& value) { SetInclude(std::forward<IncludeT>(value)); return *this;}
55 template<typename IncludeT = Aws::String>
56 DatabaseList& AddInclude(IncludeT&& value) { m_includeHasBeenSet = true; m_include.emplace_back(std::forward<IncludeT>(value)); return *this; }
58
60
65 inline const Aws::Vector<Aws::String>& GetExclude() const { return m_exclude; }
66 inline bool ExcludeHasBeenSet() const { return m_excludeHasBeenSet; }
67 template<typename ExcludeT = Aws::Vector<Aws::String>>
68 void SetExclude(ExcludeT&& value) { m_excludeHasBeenSet = true; m_exclude = std::forward<ExcludeT>(value); }
69 template<typename ExcludeT = Aws::Vector<Aws::String>>
70 DatabaseList& WithExclude(ExcludeT&& value) { SetExclude(std::forward<ExcludeT>(value)); return *this;}
71 template<typename ExcludeT = Aws::String>
72 DatabaseList& AddExclude(ExcludeT&& value) { m_excludeHasBeenSet = true; m_exclude.emplace_back(std::forward<ExcludeT>(value)); return *this; }
74 private:
75
77 bool m_includeHasBeenSet = false;
78
80 bool m_excludeHasBeenSet = false;
81 };
82
83} // namespace Model
84} // namespace Firehose
85} // namespace Aws
const Aws::Vector< Aws::String > & GetInclude() const
AWS_FIREHOSE_API DatabaseList(Aws::Utils::Json::JsonView jsonValue)
void SetInclude(IncludeT &&value)
DatabaseList & AddInclude(IncludeT &&value)
void SetExclude(ExcludeT &&value)
AWS_FIREHOSE_API DatabaseList & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_FIREHOSE_API Aws::Utils::Json::JsonValue Jsonize() const
DatabaseList & AddExclude(ExcludeT &&value)
DatabaseList & WithExclude(ExcludeT &&value)
DatabaseList & WithInclude(IncludeT &&value)
AWS_FIREHOSE_API DatabaseList()=default
const Aws::Vector< Aws::String > & GetExclude() const
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue