AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 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 GetMapTileRequest& WithMapName(const Aws::String& value) { SetMapName(value); return *this;}
51 inline GetMapTileRequest& WithMapName(Aws::String&& value) { SetMapName(std::move(value)); return *this;}
52 inline GetMapTileRequest& WithMapName(const char* value) { SetMapName(value); return *this;}
54
56
59 inline const Aws::String& GetZ() const{ return m_z; }
60 inline bool ZHasBeenSet() const { return m_zHasBeenSet; }
61 inline void SetZ(const Aws::String& value) { m_zHasBeenSet = true; m_z = value; }
62 inline void SetZ(Aws::String&& value) { m_zHasBeenSet = true; m_z = std::move(value); }
63 inline void SetZ(const char* value) { m_zHasBeenSet = true; m_z.assign(value); }
64 inline GetMapTileRequest& WithZ(const Aws::String& value) { SetZ(value); return *this;}
65 inline GetMapTileRequest& WithZ(Aws::String&& value) { SetZ(std::move(value)); return *this;}
66 inline GetMapTileRequest& WithZ(const char* value) { SetZ(value); return *this;}
68
70
73 inline const Aws::String& GetX() const{ return m_x; }
74 inline bool XHasBeenSet() const { return m_xHasBeenSet; }
75 inline void SetX(const Aws::String& value) { m_xHasBeenSet = true; m_x = value; }
76 inline void SetX(Aws::String&& value) { m_xHasBeenSet = true; m_x = std::move(value); }
77 inline void SetX(const char* value) { m_xHasBeenSet = true; m_x.assign(value); }
78 inline GetMapTileRequest& WithX(const Aws::String& value) { SetX(value); return *this;}
79 inline GetMapTileRequest& WithX(Aws::String&& value) { SetX(std::move(value)); return *this;}
80 inline GetMapTileRequest& WithX(const char* value) { SetX(value); return *this;}
82
84
87 inline const Aws::String& GetY() const{ return m_y; }
88 inline bool YHasBeenSet() const { return m_yHasBeenSet; }
89 inline void SetY(const Aws::String& value) { m_yHasBeenSet = true; m_y = value; }
90 inline void SetY(Aws::String&& value) { m_yHasBeenSet = true; m_y = std::move(value); }
91 inline void SetY(const char* value) { m_yHasBeenSet = true; m_y.assign(value); }
92 inline GetMapTileRequest& WithY(const Aws::String& value) { SetY(value); return *this;}
93 inline GetMapTileRequest& WithY(Aws::String&& value) { SetY(std::move(value)); return *this;}
94 inline GetMapTileRequest& WithY(const char* value) { SetY(value); return *this;}
96
98
103 inline const Aws::String& GetKey() const{ return m_key; }
104 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
105 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
106 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
107 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
108 inline GetMapTileRequest& WithKey(const Aws::String& value) { SetKey(value); return *this;}
109 inline GetMapTileRequest& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
110 inline GetMapTileRequest& WithKey(const char* value) { SetKey(value); return *this;}
112 private:
113
114 Aws::String m_mapName;
115 bool m_mapNameHasBeenSet = false;
116
117 Aws::String m_z;
118 bool m_zHasBeenSet = false;
119
120 Aws::String m_x;
121 bool m_xHasBeenSet = false;
122
123 Aws::String m_y;
124 bool m_yHasBeenSet = false;
125
126 Aws::String m_key;
127 bool m_keyHasBeenSet = false;
128 };
129
130} // namespace Model
131} // namespace LocationService
132} // namespace Aws
GetMapTileRequest & WithY(const char *value)
AWS_LOCATIONSERVICE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetMapTileRequest & WithKey(const Aws::String &value)
GetMapTileRequest & WithX(const char *value)
GetMapTileRequest & WithY(Aws::String &&value)
GetMapTileRequest & WithMapName(Aws::String &&value)
GetMapTileRequest & WithX(Aws::String &&value)
GetMapTileRequest & WithZ(Aws::String &&value)
GetMapTileRequest & WithMapName(const Aws::String &value)
GetMapTileRequest & WithKey(Aws::String &&value)
GetMapTileRequest & WithX(const Aws::String &value)
GetMapTileRequest & WithZ(const Aws::String &value)
GetMapTileRequest & WithKey(const char *value)
GetMapTileRequest & WithY(const Aws::String &value)
AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override
GetMapTileRequest & WithMapName(const char *value)
virtual const char * GetServiceRequestName() const override
GetMapTileRequest & WithZ(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String