AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchUpdateDevicePositionRequest.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 <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/location/model/DevicePositionUpdate.h>
12#include <utility>
13
14namespace Aws
15{
16namespace LocationService
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_LOCATIONSERVICE_API BatchUpdateDevicePositionRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "BatchUpdateDevicePosition"; }
33
34 AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetTrackerName() const{ return m_trackerName; }
42 inline bool TrackerNameHasBeenSet() const { return m_trackerNameHasBeenSet; }
43 inline void SetTrackerName(const Aws::String& value) { m_trackerNameHasBeenSet = true; m_trackerName = value; }
44 inline void SetTrackerName(Aws::String&& value) { m_trackerNameHasBeenSet = true; m_trackerName = std::move(value); }
45 inline void SetTrackerName(const char* value) { m_trackerNameHasBeenSet = true; m_trackerName.assign(value); }
46 inline BatchUpdateDevicePositionRequest& WithTrackerName(const Aws::String& value) { SetTrackerName(value); return *this;}
47 inline BatchUpdateDevicePositionRequest& WithTrackerName(Aws::String&& value) { SetTrackerName(std::move(value)); return *this;}
48 inline BatchUpdateDevicePositionRequest& WithTrackerName(const char* value) { SetTrackerName(value); return *this;}
50
52
55 inline const Aws::Vector<DevicePositionUpdate>& GetUpdates() const{ return m_updates; }
56 inline bool UpdatesHasBeenSet() const { return m_updatesHasBeenSet; }
57 inline void SetUpdates(const Aws::Vector<DevicePositionUpdate>& value) { m_updatesHasBeenSet = true; m_updates = value; }
58 inline void SetUpdates(Aws::Vector<DevicePositionUpdate>&& value) { m_updatesHasBeenSet = true; m_updates = std::move(value); }
61 inline BatchUpdateDevicePositionRequest& AddUpdates(const DevicePositionUpdate& value) { m_updatesHasBeenSet = true; m_updates.push_back(value); return *this; }
62 inline BatchUpdateDevicePositionRequest& AddUpdates(DevicePositionUpdate&& value) { m_updatesHasBeenSet = true; m_updates.push_back(std::move(value)); return *this; }
64 private:
65
66 Aws::String m_trackerName;
67 bool m_trackerNameHasBeenSet = false;
68
70 bool m_updatesHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace LocationService
75} // namespace Aws
BatchUpdateDevicePositionRequest & WithUpdates(Aws::Vector< DevicePositionUpdate > &&value)
BatchUpdateDevicePositionRequest & WithTrackerName(Aws::String &&value)
BatchUpdateDevicePositionRequest & WithTrackerName(const Aws::String &value)
BatchUpdateDevicePositionRequest & WithUpdates(const Aws::Vector< DevicePositionUpdate > &value)
BatchUpdateDevicePositionRequest & AddUpdates(const DevicePositionUpdate &value)
BatchUpdateDevicePositionRequest & WithTrackerName(const char *value)
BatchUpdateDevicePositionRequest & AddUpdates(DevicePositionUpdate &&value)
void SetUpdates(const Aws::Vector< DevicePositionUpdate > &value)
AWS_LOCATIONSERVICE_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector