/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include 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
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