AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
GetMapGlyphsRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/location/LocationServiceRequest.h>
9#include <aws/location/LocationService_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace LocationService {
18namespace Model {
19
23 public:
24 AWS_LOCATIONSERVICE_API GetMapGlyphsRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetMapGlyphs"; }
31
32 AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override;
33
34 AWS_LOCATIONSERVICE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
35
37
40 inline const Aws::String& GetMapName() const { return m_mapName; }
41 inline bool MapNameHasBeenSet() const { return m_mapNameHasBeenSet; }
42 template <typename MapNameT = Aws::String>
43 void SetMapName(MapNameT&& value) {
44 m_mapNameHasBeenSet = true;
45 m_mapName = std::forward<MapNameT>(value);
46 }
47 template <typename MapNameT = Aws::String>
48 GetMapGlyphsRequest& WithMapName(MapNameT&& value) {
49 SetMapName(std::forward<MapNameT>(value));
50 return *this;
51 }
53
55
102 inline const Aws::String& GetFontStack() const { return m_fontStack; }
103 inline bool FontStackHasBeenSet() const { return m_fontStackHasBeenSet; }
104 template <typename FontStackT = Aws::String>
105 void SetFontStack(FontStackT&& value) {
106 m_fontStackHasBeenSet = true;
107 m_fontStack = std::forward<FontStackT>(value);
108 }
109 template <typename FontStackT = Aws::String>
110 GetMapGlyphsRequest& WithFontStack(FontStackT&& value) {
111 SetFontStack(std::forward<FontStackT>(value));
112 return *this;
113 }
115
117
123 inline const Aws::String& GetFontUnicodeRange() const { return m_fontUnicodeRange; }
124 inline bool FontUnicodeRangeHasBeenSet() const { return m_fontUnicodeRangeHasBeenSet; }
125 template <typename FontUnicodeRangeT = Aws::String>
126 void SetFontUnicodeRange(FontUnicodeRangeT&& value) {
127 m_fontUnicodeRangeHasBeenSet = true;
128 m_fontUnicodeRange = std::forward<FontUnicodeRangeT>(value);
129 }
130 template <typename FontUnicodeRangeT = Aws::String>
131 GetMapGlyphsRequest& WithFontUnicodeRange(FontUnicodeRangeT&& value) {
132 SetFontUnicodeRange(std::forward<FontUnicodeRangeT>(value));
133 return *this;
134 }
136
138
143 inline const Aws::String& GetKey() const { return m_key; }
144 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
145 template <typename KeyT = Aws::String>
146 void SetKey(KeyT&& value) {
147 m_keyHasBeenSet = true;
148 m_key = std::forward<KeyT>(value);
149 }
150 template <typename KeyT = Aws::String>
152 SetKey(std::forward<KeyT>(value));
153 return *this;
154 }
156 private:
157 Aws::String m_mapName;
158
159 Aws::String m_fontStack;
160
161 Aws::String m_fontUnicodeRange;
162
163 Aws::String m_key;
164 bool m_mapNameHasBeenSet = false;
165 bool m_fontStackHasBeenSet = false;
166 bool m_fontUnicodeRangeHasBeenSet = false;
167 bool m_keyHasBeenSet = false;
168};
169
170} // namespace Model
171} // namespace LocationService
172} // namespace Aws
GetMapGlyphsRequest & WithFontUnicodeRange(FontUnicodeRangeT &&value)
virtual const char * GetServiceRequestName() const override
GetMapGlyphsRequest & WithFontStack(FontStackT &&value)
GetMapGlyphsRequest & WithMapName(MapNameT &&value)
AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override
AWS_LOCATIONSERVICE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_LOCATIONSERVICE_API GetMapGlyphsRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String