AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetMapGlyphsRequest.h
1
6#pragma once
7#include <aws/location/LocationService_EXPORTS.h>
8#include <aws/location/LocationServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace LocationService
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_LOCATIONSERVICE_API GetMapGlyphsRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetMapGlyphs"; }
35
36 AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override;
37
38 AWS_LOCATIONSERVICE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetMapName() const{ return m_mapName; }
46 inline bool MapNameHasBeenSet() const { return m_mapNameHasBeenSet; }
47 inline void SetMapName(const Aws::String& value) { m_mapNameHasBeenSet = true; m_mapName = value; }
48 inline void SetMapName(Aws::String&& value) { m_mapNameHasBeenSet = true; m_mapName = std::move(value); }
49 inline void SetMapName(const char* value) { m_mapNameHasBeenSet = true; m_mapName.assign(value); }
50 inline GetMapGlyphsRequest& WithMapName(const Aws::String& value) { SetMapName(value); return *this;}
51 inline GetMapGlyphsRequest& WithMapName(Aws::String&& value) { SetMapName(std::move(value)); return *this;}
52 inline GetMapGlyphsRequest& WithMapName(const char* value) { SetMapName(value); return *this;}
54
56
103 inline const Aws::String& GetFontStack() const{ return m_fontStack; }
104 inline bool FontStackHasBeenSet() const { return m_fontStackHasBeenSet; }
105 inline void SetFontStack(const Aws::String& value) { m_fontStackHasBeenSet = true; m_fontStack = value; }
106 inline void SetFontStack(Aws::String&& value) { m_fontStackHasBeenSet = true; m_fontStack = std::move(value); }
107 inline void SetFontStack(const char* value) { m_fontStackHasBeenSet = true; m_fontStack.assign(value); }
108 inline GetMapGlyphsRequest& WithFontStack(const Aws::String& value) { SetFontStack(value); return *this;}
109 inline GetMapGlyphsRequest& WithFontStack(Aws::String&& value) { SetFontStack(std::move(value)); return *this;}
110 inline GetMapGlyphsRequest& WithFontStack(const char* value) { SetFontStack(value); return *this;}
112
114
120 inline const Aws::String& GetFontUnicodeRange() const{ return m_fontUnicodeRange; }
121 inline bool FontUnicodeRangeHasBeenSet() const { return m_fontUnicodeRangeHasBeenSet; }
122 inline void SetFontUnicodeRange(const Aws::String& value) { m_fontUnicodeRangeHasBeenSet = true; m_fontUnicodeRange = value; }
123 inline void SetFontUnicodeRange(Aws::String&& value) { m_fontUnicodeRangeHasBeenSet = true; m_fontUnicodeRange = std::move(value); }
124 inline void SetFontUnicodeRange(const char* value) { m_fontUnicodeRangeHasBeenSet = true; m_fontUnicodeRange.assign(value); }
125 inline GetMapGlyphsRequest& WithFontUnicodeRange(const Aws::String& value) { SetFontUnicodeRange(value); return *this;}
126 inline GetMapGlyphsRequest& WithFontUnicodeRange(Aws::String&& value) { SetFontUnicodeRange(std::move(value)); return *this;}
127 inline GetMapGlyphsRequest& WithFontUnicodeRange(const char* value) { SetFontUnicodeRange(value); return *this;}
129
131
136 inline const Aws::String& GetKey() const{ return m_key; }
137 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
138 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
139 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
140 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
141 inline GetMapGlyphsRequest& WithKey(const Aws::String& value) { SetKey(value); return *this;}
142 inline GetMapGlyphsRequest& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
143 inline GetMapGlyphsRequest& WithKey(const char* value) { SetKey(value); return *this;}
145 private:
146
147 Aws::String m_mapName;
148 bool m_mapNameHasBeenSet = false;
149
150 Aws::String m_fontStack;
151 bool m_fontStackHasBeenSet = false;
152
153 Aws::String m_fontUnicodeRange;
154 bool m_fontUnicodeRangeHasBeenSet = false;
155
156 Aws::String m_key;
157 bool m_keyHasBeenSet = false;
158 };
159
160} // namespace Model
161} // namespace LocationService
162} // namespace Aws
GetMapGlyphsRequest & WithFontUnicodeRange(const char *value)
GetMapGlyphsRequest & WithKey(const char *value)
GetMapGlyphsRequest & WithFontUnicodeRange(Aws::String &&value)
GetMapGlyphsRequest & WithFontStack(Aws::String &&value)
GetMapGlyphsRequest & WithKey(const Aws::String &value)
GetMapGlyphsRequest & WithMapName(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
GetMapGlyphsRequest & WithKey(Aws::String &&value)
GetMapGlyphsRequest & WithMapName(const char *value)
GetMapGlyphsRequest & WithFontStack(const char *value)
AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override
AWS_LOCATIONSERVICE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetMapGlyphsRequest & WithMapName(Aws::String &&value)
GetMapGlyphsRequest & WithFontStack(const Aws::String &value)
GetMapGlyphsRequest & WithFontUnicodeRange(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String