/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The parameters for MariaDB.See Also:
AWS
* API Reference
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 MariaDbParameters& WithHost(const Aws::String& value) { SetHost(value); return *this;} /** *Host.
*/ inline MariaDbParameters& WithHost(Aws::String&& value) { SetHost(std::move(value)); return *this;} /** *Host.
*/ inline MariaDbParameters& 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 MariaDbParameters& 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 MariaDbParameters& WithDatabase(const Aws::String& value) { SetDatabase(value); return *this;} /** *Database.
*/ inline MariaDbParameters& WithDatabase(Aws::String&& value) { SetDatabase(std::move(value)); return *this;} /** *Database.
*/ inline MariaDbParameters& 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