/** * 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 of the Glue Data Catalog that you use for Apache Flink SQL * queries and table API transforms that you write in an application.

See * Also:

AWS * API Reference

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

The Amazon Resource Name (ARN) of the database.

*/ inline const Aws::String& GetDatabaseARN() const{ return m_databaseARN; } /** *

The Amazon Resource Name (ARN) of the database.

*/ inline bool DatabaseARNHasBeenSet() const { return m_databaseARNHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the database.

*/ inline void SetDatabaseARN(const Aws::String& value) { m_databaseARNHasBeenSet = true; m_databaseARN = value; } /** *

The Amazon Resource Name (ARN) of the database.

*/ inline void SetDatabaseARN(Aws::String&& value) { m_databaseARNHasBeenSet = true; m_databaseARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the database.

*/ inline void SetDatabaseARN(const char* value) { m_databaseARNHasBeenSet = true; m_databaseARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the database.

*/ inline GlueDataCatalogConfiguration& WithDatabaseARN(const Aws::String& value) { SetDatabaseARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the database.

*/ inline GlueDataCatalogConfiguration& WithDatabaseARN(Aws::String&& value) { SetDatabaseARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the database.

*/ inline GlueDataCatalogConfiguration& WithDatabaseARN(const char* value) { SetDatabaseARN(value); return *this;} private: Aws::String m_databaseARN; bool m_databaseARNHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws