AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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() = default;
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 template<typename MapNameT = Aws::String>
48 void SetMapName(MapNameT&& value) { m_mapNameHasBeenSet = true; m_mapName = std::forward<MapNameT>(value); }
49 template<typename MapNameT = Aws::String>
50 GetMapGlyphsRequest& WithMapName(MapNameT&& value) { SetMapName(std::forward<MapNameT>(value)); return *this;}
52
54
101 inline const Aws::String& GetFontStack() const { return m_fontStack; }
102 inline bool FontStackHasBeenSet() const { return m_fontStackHasBeenSet; }
103 template<typename FontStackT = Aws::String>
104 void SetFontStack(FontStackT&& value) { m_fontStackHasBeenSet = true; m_fontStack = std::forward<FontStackT>(value); }
105 template<typename FontStackT = Aws::String>
106 GetMapGlyphsRequest& WithFontStack(FontStackT&& value) { SetFontStack(std::forward<FontStackT>(value)); return *this;}
108
110
116 inline const Aws::String& GetFontUnicodeRange() const { return m_fontUnicodeRange; }
117 inline bool FontUnicodeRangeHasBeenSet() const { return m_fontUnicodeRangeHasBeenSet; }
118 template<typename FontUnicodeRangeT = Aws::String>
119 void SetFontUnicodeRange(FontUnicodeRangeT&& value) { m_fontUnicodeRangeHasBeenSet = true; m_fontUnicodeRange = std::forward<FontUnicodeRangeT>(value); }
120 template<typename FontUnicodeRangeT = Aws::String>
121 GetMapGlyphsRequest& WithFontUnicodeRange(FontUnicodeRangeT&& value) { SetFontUnicodeRange(std::forward<FontUnicodeRangeT>(value)); return *this;}
123
125
130 inline const Aws::String& GetKey() const { return m_key; }
131 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
132 template<typename KeyT = Aws::String>
133 void SetKey(KeyT&& value) { m_keyHasBeenSet = true; m_key = std::forward<KeyT>(value); }
134 template<typename KeyT = Aws::String>
135 GetMapGlyphsRequest& WithKey(KeyT&& value) { SetKey(std::forward<KeyT>(value)); return *this;}
137 private:
138
139 Aws::String m_mapName;
140 bool m_mapNameHasBeenSet = false;
141
142 Aws::String m_fontStack;
143 bool m_fontStackHasBeenSet = false;
144
145 Aws::String m_fontUnicodeRange;
146 bool m_fontUnicodeRangeHasBeenSet = false;
147
148 Aws::String m_key;
149 bool m_keyHasBeenSet = false;
150 };
151
152} // namespace Model
153} // namespace LocationService
154} // 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