/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Destination for scheduled query.See Also:
AWS
* API Reference
Timestream database name.
*/ inline const Aws::String& GetDatabaseName() const{ return m_databaseName; } /** *Timestream database name.
*/ inline bool DatabaseNameHasBeenSet() const { return m_databaseNameHasBeenSet; } /** *Timestream database name.
*/ inline void SetDatabaseName(const Aws::String& value) { m_databaseNameHasBeenSet = true; m_databaseName = value; } /** *Timestream database name.
*/ inline void SetDatabaseName(Aws::String&& value) { m_databaseNameHasBeenSet = true; m_databaseName = std::move(value); } /** *Timestream database name.
*/ inline void SetDatabaseName(const char* value) { m_databaseNameHasBeenSet = true; m_databaseName.assign(value); } /** *Timestream database name.
*/ inline TimestreamDestination& WithDatabaseName(const Aws::String& value) { SetDatabaseName(value); return *this;} /** *Timestream database name.
*/ inline TimestreamDestination& WithDatabaseName(Aws::String&& value) { SetDatabaseName(std::move(value)); return *this;} /** *Timestream database name.
*/ inline TimestreamDestination& WithDatabaseName(const char* value) { SetDatabaseName(value); return *this;} /** *Timestream table name.
*/ inline const Aws::String& GetTableName() const{ return m_tableName; } /** *Timestream table name.
*/ inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; } /** *Timestream table name.
*/ inline void SetTableName(const Aws::String& value) { m_tableNameHasBeenSet = true; m_tableName = value; } /** *Timestream table name.
*/ inline void SetTableName(Aws::String&& value) { m_tableNameHasBeenSet = true; m_tableName = std::move(value); } /** *Timestream table name.
*/ inline void SetTableName(const char* value) { m_tableNameHasBeenSet = true; m_tableName.assign(value); } /** *Timestream table name.
*/ inline TimestreamDestination& WithTableName(const Aws::String& value) { SetTableName(value); return *this;} /** *Timestream table name.
*/ inline TimestreamDestination& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;} /** *Timestream table name.
*/ inline TimestreamDestination& WithTableName(const char* value) { SetTableName(value); return *this;} private: Aws::String m_databaseName; bool m_databaseNameHasBeenSet = false; Aws::String m_tableName; bool m_tableNameHasBeenSet = false; }; } // namespace Model } // namespace TimestreamQuery } // namespace Aws