/** * 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 { /** *

Updates to 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 CatalogConfigurationUpdate { public: AWS_KINESISANALYTICSV2_API CatalogConfigurationUpdate(); AWS_KINESISANALYTICSV2_API CatalogConfigurationUpdate(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API CatalogConfigurationUpdate& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Updates to 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.

*/ inline const GlueDataCatalogConfigurationUpdate& GetGlueDataCatalogConfigurationUpdate() const{ return m_glueDataCatalogConfigurationUpdate; } /** *

Updates to 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.

*/ inline bool GlueDataCatalogConfigurationUpdateHasBeenSet() const { return m_glueDataCatalogConfigurationUpdateHasBeenSet; } /** *

Updates to 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.

*/ inline void SetGlueDataCatalogConfigurationUpdate(const GlueDataCatalogConfigurationUpdate& value) { m_glueDataCatalogConfigurationUpdateHasBeenSet = true; m_glueDataCatalogConfigurationUpdate = value; } /** *

Updates to 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.

*/ inline void SetGlueDataCatalogConfigurationUpdate(GlueDataCatalogConfigurationUpdate&& value) { m_glueDataCatalogConfigurationUpdateHasBeenSet = true; m_glueDataCatalogConfigurationUpdate = std::move(value); } /** *

Updates to 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.

*/ inline CatalogConfigurationUpdate& WithGlueDataCatalogConfigurationUpdate(const GlueDataCatalogConfigurationUpdate& value) { SetGlueDataCatalogConfigurationUpdate(value); return *this;} /** *

Updates to 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.

*/ inline CatalogConfigurationUpdate& WithGlueDataCatalogConfigurationUpdate(GlueDataCatalogConfigurationUpdate&& value) { SetGlueDataCatalogConfigurationUpdate(std::move(value)); return *this;} private: GlueDataCatalogConfigurationUpdate m_glueDataCatalogConfigurationUpdate; bool m_glueDataCatalogConfigurationUpdateHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws