AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StarburstParameters.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/quicksight/model/StarburstProductType.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace QuickSight
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_QUICKSIGHT_API StarburstParameters();
37 AWS_QUICKSIGHT_API StarburstParameters(Aws::Utils::Json::JsonView jsonValue);
39 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetHost() const{ return m_host; }
47 inline bool HostHasBeenSet() const { return m_hostHasBeenSet; }
48 inline void SetHost(const Aws::String& value) { m_hostHasBeenSet = true; m_host = value; }
49 inline void SetHost(Aws::String&& value) { m_hostHasBeenSet = true; m_host = std::move(value); }
50 inline void SetHost(const char* value) { m_hostHasBeenSet = true; m_host.assign(value); }
51 inline StarburstParameters& WithHost(const Aws::String& value) { SetHost(value); return *this;}
52 inline StarburstParameters& WithHost(Aws::String&& value) { SetHost(std::move(value)); return *this;}
53 inline StarburstParameters& WithHost(const char* value) { SetHost(value); return *this;}
55
57
60 inline int GetPort() const{ return m_port; }
61 inline bool PortHasBeenSet() const { return m_portHasBeenSet; }
62 inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; }
63 inline StarburstParameters& WithPort(int value) { SetPort(value); return *this;}
65
67
70 inline const Aws::String& GetCatalog() const{ return m_catalog; }
71 inline bool CatalogHasBeenSet() const { return m_catalogHasBeenSet; }
72 inline void SetCatalog(const Aws::String& value) { m_catalogHasBeenSet = true; m_catalog = value; }
73 inline void SetCatalog(Aws::String&& value) { m_catalogHasBeenSet = true; m_catalog = std::move(value); }
74 inline void SetCatalog(const char* value) { m_catalogHasBeenSet = true; m_catalog.assign(value); }
75 inline StarburstParameters& WithCatalog(const Aws::String& value) { SetCatalog(value); return *this;}
76 inline StarburstParameters& WithCatalog(Aws::String&& value) { SetCatalog(std::move(value)); return *this;}
77 inline StarburstParameters& WithCatalog(const char* value) { SetCatalog(value); return *this;}
79
81
84 inline const StarburstProductType& GetProductType() const{ return m_productType; }
85 inline bool ProductTypeHasBeenSet() const { return m_productTypeHasBeenSet; }
86 inline void SetProductType(const StarburstProductType& value) { m_productTypeHasBeenSet = true; m_productType = value; }
87 inline void SetProductType(StarburstProductType&& value) { m_productTypeHasBeenSet = true; m_productType = std::move(value); }
88 inline StarburstParameters& WithProductType(const StarburstProductType& value) { SetProductType(value); return *this;}
89 inline StarburstParameters& WithProductType(StarburstProductType&& value) { SetProductType(std::move(value)); return *this;}
91 private:
92
93 Aws::String m_host;
94 bool m_hostHasBeenSet = false;
95
96 int m_port;
97 bool m_portHasBeenSet = false;
98
99 Aws::String m_catalog;
100 bool m_catalogHasBeenSet = false;
101
102 StarburstProductType m_productType;
103 bool m_productTypeHasBeenSet = false;
104 };
105
106} // namespace Model
107} // namespace QuickSight
108} // namespace Aws
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
StarburstParameters & WithCatalog(Aws::String &&value)
StarburstParameters & WithProductType(const StarburstProductType &value)
void SetProductType(const StarburstProductType &value)
StarburstParameters & WithCatalog(const Aws::String &value)
AWS_QUICKSIGHT_API StarburstParameters & operator=(Aws::Utils::Json::JsonView jsonValue)
const StarburstProductType & GetProductType() const
StarburstParameters & WithCatalog(const char *value)
StarburstParameters & WithPort(int value)
StarburstParameters & WithHost(Aws::String &&value)
void SetProductType(StarburstProductType &&value)
StarburstParameters & WithHost(const char *value)
StarburstParameters & WithProductType(StarburstProductType &&value)
AWS_QUICKSIGHT_API StarburstParameters(Aws::Utils::Json::JsonView jsonValue)
StarburstParameters & WithHost(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue