/** * 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 of the Glue Data Catalog that you use for SQL * queries that you write in a Kinesis Data Analytics Studio * notebook.

See Also:

AWS * API Reference

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

The updated Amazon Resource Name (ARN) of the database.

*/ inline const Aws::String& GetDatabaseARNUpdate() const{ return m_databaseARNUpdate; } /** *

The updated Amazon Resource Name (ARN) of the database.

*/ inline bool DatabaseARNUpdateHasBeenSet() const { return m_databaseARNUpdateHasBeenSet; } /** *

The updated Amazon Resource Name (ARN) of the database.

*/ inline void SetDatabaseARNUpdate(const Aws::String& value) { m_databaseARNUpdateHasBeenSet = true; m_databaseARNUpdate = value; } /** *

The updated Amazon Resource Name (ARN) of the database.

*/ inline void SetDatabaseARNUpdate(Aws::String&& value) { m_databaseARNUpdateHasBeenSet = true; m_databaseARNUpdate = std::move(value); } /** *

The updated Amazon Resource Name (ARN) of the database.

*/ inline void SetDatabaseARNUpdate(const char* value) { m_databaseARNUpdateHasBeenSet = true; m_databaseARNUpdate.assign(value); } /** *

The updated Amazon Resource Name (ARN) of the database.

*/ inline GlueDataCatalogConfigurationUpdate& WithDatabaseARNUpdate(const Aws::String& value) { SetDatabaseARNUpdate(value); return *this;} /** *

The updated Amazon Resource Name (ARN) of the database.

*/ inline GlueDataCatalogConfigurationUpdate& WithDatabaseARNUpdate(Aws::String&& value) { SetDatabaseARNUpdate(std::move(value)); return *this;} /** *

The updated Amazon Resource Name (ARN) of the database.

*/ inline GlueDataCatalogConfigurationUpdate& WithDatabaseARNUpdate(const char* value) { SetDatabaseARNUpdate(value); return *this;} private: Aws::String m_databaseARNUpdate; bool m_databaseARNUpdateHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws