AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
DataQualityTargetTable.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
28 public:
29 AWS_GLUE_API DataQualityTargetTable() = default;
33
35
38 inline const Aws::String& GetTableName() const { return m_tableName; }
39 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
40 template <typename TableNameT = Aws::String>
41 void SetTableName(TableNameT&& value) {
42 m_tableNameHasBeenSet = true;
43 m_tableName = std::forward<TableNameT>(value);
44 }
45 template <typename TableNameT = Aws::String>
47 SetTableName(std::forward<TableNameT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetDatabaseName() const { return m_databaseName; }
57 inline bool DatabaseNameHasBeenSet() const { return m_databaseNameHasBeenSet; }
58 template <typename DatabaseNameT = Aws::String>
59 void SetDatabaseName(DatabaseNameT&& value) {
60 m_databaseNameHasBeenSet = true;
61 m_databaseName = std::forward<DatabaseNameT>(value);
62 }
63 template <typename DatabaseNameT = Aws::String>
64 DataQualityTargetTable& WithDatabaseName(DatabaseNameT&& value) {
65 SetDatabaseName(std::forward<DatabaseNameT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::String& GetCatalogId() const { return m_catalogId; }
75 inline bool CatalogIdHasBeenSet() const { return m_catalogIdHasBeenSet; }
76 template <typename CatalogIdT = Aws::String>
77 void SetCatalogId(CatalogIdT&& value) {
78 m_catalogIdHasBeenSet = true;
79 m_catalogId = std::forward<CatalogIdT>(value);
80 }
81 template <typename CatalogIdT = Aws::String>
83 SetCatalogId(std::forward<CatalogIdT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_tableName;
89
90 Aws::String m_databaseName;
91
92 Aws::String m_catalogId;
93 bool m_tableNameHasBeenSet = false;
94 bool m_databaseNameHasBeenSet = false;
95 bool m_catalogIdHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace Glue
100} // namespace Aws
DataQualityTargetTable & WithCatalogId(CatalogIdT &&value)
AWS_GLUE_API DataQualityTargetTable()=default
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
DataQualityTargetTable & WithTableName(TableNameT &&value)
DataQualityTargetTable & WithDatabaseName(DatabaseNameT &&value)
AWS_GLUE_API DataQualityTargetTable(Aws::Utils::Json::JsonView jsonValue)
AWS_GLUE_API DataQualityTargetTable & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue