AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DataCatalogConfig.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_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 SageMaker
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_SAGEMAKER_API DataCatalogConfig();
36 AWS_SAGEMAKER_API DataCatalogConfig(Aws::Utils::Json::JsonView jsonValue);
38 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetTableName() const{ return m_tableName; }
46 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
47 inline void SetTableName(const Aws::String& value) { m_tableNameHasBeenSet = true; m_tableName = value; }
48 inline void SetTableName(Aws::String&& value) { m_tableNameHasBeenSet = true; m_tableName = std::move(value); }
49 inline void SetTableName(const char* value) { m_tableNameHasBeenSet = true; m_tableName.assign(value); }
50 inline DataCatalogConfig& WithTableName(const Aws::String& value) { SetTableName(value); return *this;}
51 inline DataCatalogConfig& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;}
52 inline DataCatalogConfig& WithTableName(const char* value) { SetTableName(value); return *this;}
54
56
59 inline const Aws::String& GetCatalog() const{ return m_catalog; }
60 inline bool CatalogHasBeenSet() const { return m_catalogHasBeenSet; }
61 inline void SetCatalog(const Aws::String& value) { m_catalogHasBeenSet = true; m_catalog = value; }
62 inline void SetCatalog(Aws::String&& value) { m_catalogHasBeenSet = true; m_catalog = std::move(value); }
63 inline void SetCatalog(const char* value) { m_catalogHasBeenSet = true; m_catalog.assign(value); }
64 inline DataCatalogConfig& WithCatalog(const Aws::String& value) { SetCatalog(value); return *this;}
65 inline DataCatalogConfig& WithCatalog(Aws::String&& value) { SetCatalog(std::move(value)); return *this;}
66 inline DataCatalogConfig& WithCatalog(const char* value) { SetCatalog(value); return *this;}
68
70
73 inline const Aws::String& GetDatabase() const{ return m_database; }
74 inline bool DatabaseHasBeenSet() const { return m_databaseHasBeenSet; }
75 inline void SetDatabase(const Aws::String& value) { m_databaseHasBeenSet = true; m_database = value; }
76 inline void SetDatabase(Aws::String&& value) { m_databaseHasBeenSet = true; m_database = std::move(value); }
77 inline void SetDatabase(const char* value) { m_databaseHasBeenSet = true; m_database.assign(value); }
78 inline DataCatalogConfig& WithDatabase(const Aws::String& value) { SetDatabase(value); return *this;}
79 inline DataCatalogConfig& WithDatabase(Aws::String&& value) { SetDatabase(std::move(value)); return *this;}
80 inline DataCatalogConfig& WithDatabase(const char* value) { SetDatabase(value); return *this;}
82 private:
83
84 Aws::String m_tableName;
85 bool m_tableNameHasBeenSet = false;
86
87 Aws::String m_catalog;
88 bool m_catalogHasBeenSet = false;
89
90 Aws::String m_database;
91 bool m_databaseHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace SageMaker
96} // namespace Aws
DataCatalogConfig & WithCatalog(const char *value)
DataCatalogConfig & WithDatabase(const char *value)
const Aws::String & GetTableName() const
DataCatalogConfig & WithTableName(Aws::String &&value)
DataCatalogConfig & WithCatalog(const Aws::String &value)
void SetCatalog(const Aws::String &value)
const Aws::String & GetDatabase() const
DataCatalogConfig & WithDatabase(const Aws::String &value)
DataCatalogConfig & WithDatabase(Aws::String &&value)
AWS_SAGEMAKER_API DataCatalogConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
DataCatalogConfig & WithCatalog(Aws::String &&value)
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SAGEMAKER_API DataCatalogConfig(Aws::Utils::Json::JsonView jsonValue)
void SetDatabase(const Aws::String &value)
void SetTableName(const Aws::String &value)
DataCatalogConfig & WithTableName(const Aws::String &value)
DataCatalogConfig & WithTableName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue