/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The parameters for Presto.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 PrestoParameters& WithHost(const Aws::String& value) { SetHost(value); return *this;} /** *Host.
*/ inline PrestoParameters& WithHost(Aws::String&& value) { SetHost(std::move(value)); return *this;} /** *Host.
*/ inline PrestoParameters& 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 PrestoParameters& WithPort(int value) { SetPort(value); return *this;} /** *Catalog.
*/ inline const Aws::String& GetCatalog() const{ return m_catalog; } /** *Catalog.
*/ inline bool CatalogHasBeenSet() const { return m_catalogHasBeenSet; } /** *Catalog.
*/ inline void SetCatalog(const Aws::String& value) { m_catalogHasBeenSet = true; m_catalog = value; } /** *Catalog.
*/ inline void SetCatalog(Aws::String&& value) { m_catalogHasBeenSet = true; m_catalog = std::move(value); } /** *Catalog.
*/ inline void SetCatalog(const char* value) { m_catalogHasBeenSet = true; m_catalog.assign(value); } /** *Catalog.
*/ inline PrestoParameters& WithCatalog(const Aws::String& value) { SetCatalog(value); return *this;} /** *Catalog.
*/ inline PrestoParameters& WithCatalog(Aws::String&& value) { SetCatalog(std::move(value)); return *this;} /** *Catalog.
*/ inline PrestoParameters& WithCatalog(const char* value) { SetCatalog(value); return *this;} private: Aws::String m_host; bool m_hostHasBeenSet = false; int m_port; bool m_portHasBeenSet = false; Aws::String m_catalog; bool m_catalogHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws