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