/** * 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 QuickSight { namespace Model { /** *

The parameters for Teradata.

See Also:

AWS * API Reference

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

Host.

*/ inline const Aws::String& GetHost() const{ return m_host; } /** *

Host.

*/ inline bool HostHasBeenSet() const { return m_hostHasBeenSet; } /** *

Host.

*/ inline void SetHost(const Aws::String& value) { m_hostHasBeenSet = true; m_host = value; } /** *

Host.

*/ inline void SetHost(Aws::String&& value) { m_hostHasBeenSet = true; m_host = std::move(value); } /** *

Host.

*/ inline void SetHost(const char* value) { m_hostHasBeenSet = true; m_host.assign(value); } /** *

Host.

*/ inline TeradataParameters& WithHost(const Aws::String& value) { SetHost(value); return *this;} /** *

Host.

*/ inline TeradataParameters& WithHost(Aws::String&& value) { SetHost(std::move(value)); return *this;} /** *

Host.

*/ inline TeradataParameters& WithHost(const char* value) { SetHost(value); return *this;} /** *

Port.

*/ inline int GetPort() const{ return m_port; } /** *

Port.

*/ inline bool PortHasBeenSet() const { return m_portHasBeenSet; } /** *

Port.

*/ inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; } /** *

Port.

*/ inline TeradataParameters& WithPort(int value) { SetPort(value); return *this;} /** *

Database.

*/ inline const Aws::String& GetDatabase() const{ return m_database; } /** *

Database.

*/ inline bool DatabaseHasBeenSet() const { return m_databaseHasBeenSet; } /** *

Database.

*/ inline void SetDatabase(const Aws::String& value) { m_databaseHasBeenSet = true; m_database = value; } /** *

Database.

*/ inline void SetDatabase(Aws::String&& value) { m_databaseHasBeenSet = true; m_database = std::move(value); } /** *

Database.

*/ inline void SetDatabase(const char* value) { m_databaseHasBeenSet = true; m_database.assign(value); } /** *

Database.

*/ inline TeradataParameters& WithDatabase(const Aws::String& value) { SetDatabase(value); return *this;} /** *

Database.

*/ inline TeradataParameters& WithDatabase(Aws::String&& value) { SetDatabase(std::move(value)); return *this;} /** *

Database.

*/ inline TeradataParameters& WithDatabase(const char* value) { SetDatabase(value); return *this;} private: Aws::String m_host; bool m_hostHasBeenSet = false; int m_port; bool m_portHasBeenSet = false; Aws::String m_database; bool m_databaseHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws