157 lines
3.6 KiB
C++
157 lines
3.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/quicksight/QuickSight_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace QuickSight
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Presto parameters.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/PrestoParameters">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_QUICKSIGHT_API PrestoParameters
|
|
{
|
|
public:
|
|
PrestoParameters();
|
|
PrestoParameters(Aws::Utils::Json::JsonView jsonValue);
|
|
PrestoParameters& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>Host.</p>
|
|
*/
|
|
inline const Aws::String& GetHost() const{ return m_host; }
|
|
|
|
/**
|
|
* <p>Host.</p>
|
|
*/
|
|
inline bool HostHasBeenSet() const { return m_hostHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Host.</p>
|
|
*/
|
|
inline void SetHost(const Aws::String& value) { m_hostHasBeenSet = true; m_host = value; }
|
|
|
|
/**
|
|
* <p>Host.</p>
|
|
*/
|
|
inline void SetHost(Aws::String&& value) { m_hostHasBeenSet = true; m_host = std::move(value); }
|
|
|
|
/**
|
|
* <p>Host.</p>
|
|
*/
|
|
inline void SetHost(const char* value) { m_hostHasBeenSet = true; m_host.assign(value); }
|
|
|
|
/**
|
|
* <p>Host.</p>
|
|
*/
|
|
inline PrestoParameters& WithHost(const Aws::String& value) { SetHost(value); return *this;}
|
|
|
|
/**
|
|
* <p>Host.</p>
|
|
*/
|
|
inline PrestoParameters& WithHost(Aws::String&& value) { SetHost(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Host.</p>
|
|
*/
|
|
inline PrestoParameters& WithHost(const char* value) { SetHost(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Port.</p>
|
|
*/
|
|
inline int GetPort() const{ return m_port; }
|
|
|
|
/**
|
|
* <p>Port.</p>
|
|
*/
|
|
inline bool PortHasBeenSet() const { return m_portHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Port.</p>
|
|
*/
|
|
inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; }
|
|
|
|
/**
|
|
* <p>Port.</p>
|
|
*/
|
|
inline PrestoParameters& WithPort(int value) { SetPort(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Catalog.</p>
|
|
*/
|
|
inline const Aws::String& GetCatalog() const{ return m_catalog; }
|
|
|
|
/**
|
|
* <p>Catalog.</p>
|
|
*/
|
|
inline bool CatalogHasBeenSet() const { return m_catalogHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Catalog.</p>
|
|
*/
|
|
inline void SetCatalog(const Aws::String& value) { m_catalogHasBeenSet = true; m_catalog = value; }
|
|
|
|
/**
|
|
* <p>Catalog.</p>
|
|
*/
|
|
inline void SetCatalog(Aws::String&& value) { m_catalogHasBeenSet = true; m_catalog = std::move(value); }
|
|
|
|
/**
|
|
* <p>Catalog.</p>
|
|
*/
|
|
inline void SetCatalog(const char* value) { m_catalogHasBeenSet = true; m_catalog.assign(value); }
|
|
|
|
/**
|
|
* <p>Catalog.</p>
|
|
*/
|
|
inline PrestoParameters& WithCatalog(const Aws::String& value) { SetCatalog(value); return *this;}
|
|
|
|
/**
|
|
* <p>Catalog.</p>
|
|
*/
|
|
inline PrestoParameters& WithCatalog(Aws::String&& value) { SetCatalog(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Catalog.</p>
|
|
*/
|
|
inline PrestoParameters& WithCatalog(const char* value) { SetCatalog(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_host;
|
|
bool m_hostHasBeenSet;
|
|
|
|
int m_port;
|
|
bool m_portHasBeenSet;
|
|
|
|
Aws::String m_catalog;
|
|
bool m_catalogHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace QuickSight
|
|
} // namespace Aws
|