AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DataQualityTargetTable.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Glue
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_GLUE_API DataQualityTargetTable() = default;
38
39
41
44 inline const Aws::String& GetTableName() const { return m_tableName; }
45 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
46 template<typename TableNameT = Aws::String>
47 void SetTableName(TableNameT&& value) { m_tableNameHasBeenSet = true; m_tableName = std::forward<TableNameT>(value); }
48 template<typename TableNameT = Aws::String>
49 DataQualityTargetTable& WithTableName(TableNameT&& value) { SetTableName(std::forward<TableNameT>(value)); return *this;}
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) { m_databaseNameHasBeenSet = true; m_databaseName = std::forward<DatabaseNameT>(value); }
60 template<typename DatabaseNameT = Aws::String>
61 DataQualityTargetTable& WithDatabaseName(DatabaseNameT&& value) { SetDatabaseName(std::forward<DatabaseNameT>(value)); return *this;}
63
65
68 inline const Aws::String& GetCatalogId() const { return m_catalogId; }
69 inline bool CatalogIdHasBeenSet() const { return m_catalogIdHasBeenSet; }
70 template<typename CatalogIdT = Aws::String>
71 void SetCatalogId(CatalogIdT&& value) { m_catalogIdHasBeenSet = true; m_catalogId = std::forward<CatalogIdT>(value); }
72 template<typename CatalogIdT = Aws::String>
73 DataQualityTargetTable& WithCatalogId(CatalogIdT&& value) { SetCatalogId(std::forward<CatalogIdT>(value)); return *this;}
75 private:
76
77 Aws::String m_tableName;
78 bool m_tableNameHasBeenSet = false;
79
80 Aws::String m_databaseName;
81 bool m_databaseNameHasBeenSet = false;
82
83 Aws::String m_catalogId;
84 bool m_catalogIdHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace Glue
89} // 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