AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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() = default;
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 template<typename TrackerNameT = Aws::String>
44 void SetTrackerName(TrackerNameT&& value) { m_trackerNameHasBeenSet = true; m_trackerName = std::forward<TrackerNameT>(value); }
45 template<typename TrackerNameT = Aws::String>
46 BatchUpdateDevicePositionRequest& WithTrackerName(TrackerNameT&& value) { SetTrackerName(std::forward<TrackerNameT>(value)); return *this;}
48
50
53 inline const Aws::Vector<DevicePositionUpdate>& GetUpdates() const { return m_updates; }
54 inline bool UpdatesHasBeenSet() const { return m_updatesHasBeenSet; }
55 template<typename UpdatesT = Aws::Vector<DevicePositionUpdate>>
56 void SetUpdates(UpdatesT&& value) { m_updatesHasBeenSet = true; m_updates = std::forward<UpdatesT>(value); }
57 template<typename UpdatesT = Aws::Vector<DevicePositionUpdate>>
58 BatchUpdateDevicePositionRequest& WithUpdates(UpdatesT&& value) { SetUpdates(std::forward<UpdatesT>(value)); return *this;}
59 template<typename UpdatesT = DevicePositionUpdate>
60 BatchUpdateDevicePositionRequest& AddUpdates(UpdatesT&& value) { m_updatesHasBeenSet = true; m_updates.emplace_back(std::forward<UpdatesT>(value)); return *this; }
62 private:
63
64 Aws::String m_trackerName;
65 bool m_trackerNameHasBeenSet = false;
66
68 bool m_updatesHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace LocationService
73} // namespace Aws
BatchUpdateDevicePositionRequest & WithUpdates(UpdatesT &&value)
AWS_LOCATIONSERVICE_API BatchUpdateDevicePositionRequest()=default
BatchUpdateDevicePositionRequest & WithTrackerName(TrackerNameT &&value)
BatchUpdateDevicePositionRequest & AddUpdates(UpdatesT &&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