/** * 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 the AWS Glue ETL (extract, * transform and load) service.

See Also:

AWS * API Reference

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

The name of the table in your AWS Glue Data Catalog which is used to perform * the ETL (extract, transform and load) operations. (An AWS 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 AWS Glue Data Catalog which is used to perform * the ETL (extract, transform and load) operations. (An AWS 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 AWS Glue Data Catalog which is used to perform * the ETL (extract, transform and load) operations. (An AWS 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 AWS Glue Data Catalog which is used to perform * the ETL (extract, transform and load) operations. (An AWS 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 AWS Glue Data Catalog which is used to perform * the ETL (extract, transform and load) operations. (An AWS 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 AWS Glue Data Catalog which is used to perform * the ETL (extract, transform and load) operations. (An AWS 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 AWS Glue Data Catalog which is used to perform * the ETL (extract, transform and load) operations. (An AWS 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 AWS Glue Data Catalog which is used to perform * the ETL (extract, transform and load) operations. (An AWS 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 AWS Glue Data Catalog in which the table is * located. (An AWS Glue Data Catalog database contains Glue Data tables.)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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