/** * 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 KinesisAnalyticsV2 { namespace Model { /** *

The configuration parameters for the default Amazon Glue database. You use * this database for SQL queries that you write in a Kinesis Data Analytics Studio * notebook.

See Also:

AWS * API Reference

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

The configuration parameters for the default Amazon Glue database. You use * this database for Apache Flink SQL queries and table API transforms that you * write in a Kinesis Data Analytics Studio notebook.

*/ inline const GlueDataCatalogConfiguration& GetGlueDataCatalogConfiguration() const{ return m_glueDataCatalogConfiguration; } /** *

The configuration parameters for the default Amazon Glue database. You use * this database for Apache Flink SQL queries and table API transforms that you * write in a Kinesis Data Analytics Studio notebook.

*/ inline bool GlueDataCatalogConfigurationHasBeenSet() const { return m_glueDataCatalogConfigurationHasBeenSet; } /** *

The configuration parameters for the default Amazon Glue database. You use * this database for Apache Flink SQL queries and table API transforms that you * write in a Kinesis Data Analytics Studio notebook.

*/ inline void SetGlueDataCatalogConfiguration(const GlueDataCatalogConfiguration& value) { m_glueDataCatalogConfigurationHasBeenSet = true; m_glueDataCatalogConfiguration = value; } /** *

The configuration parameters for the default Amazon Glue database. You use * this database for Apache Flink SQL queries and table API transforms that you * write in a Kinesis Data Analytics Studio notebook.

*/ inline void SetGlueDataCatalogConfiguration(GlueDataCatalogConfiguration&& value) { m_glueDataCatalogConfigurationHasBeenSet = true; m_glueDataCatalogConfiguration = std::move(value); } /** *

The configuration parameters for the default Amazon Glue database. You use * this database for Apache Flink SQL queries and table API transforms that you * write in a Kinesis Data Analytics Studio notebook.

*/ inline CatalogConfiguration& WithGlueDataCatalogConfiguration(const GlueDataCatalogConfiguration& value) { SetGlueDataCatalogConfiguration(value); return *this;} /** *

The configuration parameters for the default Amazon Glue database. You use * this database for Apache Flink SQL queries and table API transforms that you * write in a Kinesis Data Analytics Studio notebook.

*/ inline CatalogConfiguration& WithGlueDataCatalogConfiguration(GlueDataCatalogConfiguration&& value) { SetGlueDataCatalogConfiguration(std::move(value)); return *this;} private: GlueDataCatalogConfiguration m_glueDataCatalogConfiguration; bool m_glueDataCatalogConfigurationHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws