/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTAnalytics { namespace Model { /** *

Configuration information for coordination with Glue, a fully managed * extract, transform and load (ETL) service.

See Also:

AWS * API Reference

*/ class GlueConfiguration { public: AWS_IOTANALYTICS_API GlueConfiguration(); AWS_IOTANALYTICS_API GlueConfiguration(Aws::Utils::Json::JsonView jsonValue); AWS_IOTANALYTICS_API GlueConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the table in your Glue Data Catalog that is used to perform the * ETL operations. An Glue Data Catalog table contains partitioned data and * descriptions of data sources and targets.

*/ inline const Aws::String& GetTableName() const{ return m_tableName; } /** *

The name of the table in your Glue Data Catalog that is used to perform the * ETL operations. An Glue Data Catalog table contains partitioned data and * descriptions of data sources and targets.

*/ inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; } /** *

The name of the table in your Glue Data Catalog that is used to perform the * ETL operations. An Glue Data Catalog table contains partitioned data and * descriptions of data sources and targets.

*/ inline void SetTableName(const Aws::String& value) { m_tableNameHasBeenSet = true; m_tableName = value; } /** *

The name of the table in your Glue Data Catalog that is used to perform the * ETL operations. An Glue Data Catalog table contains partitioned data and * descriptions of data sources and targets.

*/ inline void SetTableName(Aws::String&& value) { m_tableNameHasBeenSet = true; m_tableName = std::move(value); } /** *

The name of the table in your Glue Data Catalog that is used to perform the * ETL operations. An Glue Data Catalog table contains partitioned data and * descriptions of data sources and targets.

*/ inline void SetTableName(const char* value) { m_tableNameHasBeenSet = true; m_tableName.assign(value); } /** *

The name of the table in your Glue Data Catalog that is used to perform the * ETL operations. An Glue Data Catalog table contains partitioned data and * descriptions of data sources and targets.

*/ inline GlueConfiguration& WithTableName(const Aws::String& value) { SetTableName(value); return *this;} /** *

The name of the table in your Glue Data Catalog that is used to perform the * ETL operations. An Glue Data Catalog table contains partitioned data and * descriptions of data sources and targets.

*/ inline GlueConfiguration& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;} /** *

The name of the table in your Glue Data Catalog that is used to perform the * ETL operations. An Glue Data Catalog table contains partitioned data and * descriptions of data sources and targets.

*/ inline GlueConfiguration& WithTableName(const char* value) { SetTableName(value); return *this;} /** *

The name of the database in your Glue Data Catalog in which the table is * located. An Glue Data Catalog database contains metadata tables.

*/ inline const Aws::String& GetDatabaseName() const{ return m_databaseName; } /** *

The name of the database in your Glue Data Catalog in which the table is * located. An Glue Data Catalog database contains metadata tables.

*/ inline bool DatabaseNameHasBeenSet() const { return m_databaseNameHasBeenSet; } /** *

The name of the database in your Glue Data Catalog in which the table is * located. An Glue Data Catalog database contains metadata tables.

*/ inline void SetDatabaseName(const Aws::String& value) { m_databaseNameHasBeenSet = true; m_databaseName = value; } /** *

The name of the database in your Glue Data Catalog in which the table is * located. An Glue Data Catalog database contains metadata tables.

*/ inline void SetDatabaseName(Aws::String&& value) { m_databaseNameHasBeenSet = true; m_databaseName = std::move(value); } /** *

The name of the database in your Glue Data Catalog in which the table is * located. An Glue Data Catalog database contains metadata tables.

*/ inline void SetDatabaseName(const char* value) { m_databaseNameHasBeenSet = true; m_databaseName.assign(value); } /** *

The name of the database in your Glue Data Catalog in which the table is * located. An Glue Data Catalog database contains metadata tables.

*/ inline GlueConfiguration& WithDatabaseName(const Aws::String& value) { SetDatabaseName(value); return *this;} /** *

The name of the database in your Glue Data Catalog in which the table is * located. An Glue Data Catalog database contains metadata tables.

*/ inline GlueConfiguration& WithDatabaseName(Aws::String&& value) { SetDatabaseName(std::move(value)); return *this;} /** *

The name of the database in your Glue Data Catalog in which the table is * located. An Glue Data Catalog database contains metadata tables.

*/ inline GlueConfiguration& WithDatabaseName(const char* value) { SetDatabaseName(value); return *this;} private: Aws::String m_tableName; bool m_tableNameHasBeenSet = false; Aws::String m_databaseName; bool m_databaseNameHasBeenSet = false; }; } // namespace Model } // namespace IoTAnalytics } // namespace Aws