AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
GetMapTileRequest.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 GetMapTileRequest() = 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 "GetMapTile"; }
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 GetMapTileRequest& WithMapName(MapNameT&& value) { SetMapName(std::forward<MapNameT>(value)); return *this;}
52
54
57 inline const Aws::String& GetZ() const { return m_z; }
58 inline bool ZHasBeenSet() const { return m_zHasBeenSet; }
59 template<typename ZT = Aws::String>
60 void SetZ(ZT&& value) { m_zHasBeenSet = true; m_z = std::forward<ZT>(value); }
61 template<typename ZT = Aws::String>
62 GetMapTileRequest& WithZ(ZT&& value) { SetZ(std::forward<ZT>(value)); return *this;}
64
66
69 inline const Aws::String& GetX() const { return m_x; }
70 inline bool XHasBeenSet() const { return m_xHasBeenSet; }
71 template<typename XT = Aws::String>
72 void SetX(XT&& value) { m_xHasBeenSet = true; m_x = std::forward<XT>(value); }
73 template<typename XT = Aws::String>
74 GetMapTileRequest& WithX(XT&& value) { SetX(std::forward<XT>(value)); return *this;}
76
78
81 inline const Aws::String& GetY() const { return m_y; }
82 inline bool YHasBeenSet() const { return m_yHasBeenSet; }
83 template<typename YT = Aws::String>
84 void SetY(YT&& value) { m_yHasBeenSet = true; m_y = std::forward<YT>(value); }
85 template<typename YT = Aws::String>
86 GetMapTileRequest& WithY(YT&& value) { SetY(std::forward<YT>(value)); return *this;}
88
90
95 inline const Aws::String& GetKey() const { return m_key; }
96 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
97 template<typename KeyT = Aws::String>
98 void SetKey(KeyT&& value) { m_keyHasBeenSet = true; m_key = std::forward<KeyT>(value); }
99 template<typename KeyT = Aws::String>
100 GetMapTileRequest& WithKey(KeyT&& value) { SetKey(std::forward<KeyT>(value)); return *this;}
102 private:
103
104 Aws::String m_mapName;
105 bool m_mapNameHasBeenSet = false;
106
107 Aws::String m_z;
108 bool m_zHasBeenSet = false;
109
110 Aws::String m_x;
111 bool m_xHasBeenSet = false;
112
113 Aws::String m_y;
114 bool m_yHasBeenSet = false;
115
116 Aws::String m_key;
117 bool m_keyHasBeenSet = false;
118 };
119
120} // namespace Model
121} // namespace LocationService
122} // namespace Aws
AWS_LOCATIONSERVICE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_LOCATIONSERVICE_API GetMapTileRequest()=default
GetMapTileRequest & WithMapName(MapNameT &&value)
GetMapTileRequest & WithKey(KeyT &&value)
AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String