AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ListDevicesJobsResult.h
Go to the documentation of this file.
1
6#pragma once
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace Panorama
26{
27namespace Model
28{
30 {
31 public:
35
36
40 inline const Aws::Vector<DeviceJob>& GetDeviceJobs() const{ return m_deviceJobs; }
41
45 inline void SetDeviceJobs(const Aws::Vector<DeviceJob>& value) { m_deviceJobs = value; }
46
50 inline void SetDeviceJobs(Aws::Vector<DeviceJob>&& value) { m_deviceJobs = std::move(value); }
51
55 inline ListDevicesJobsResult& WithDeviceJobs(const Aws::Vector<DeviceJob>& value) { SetDeviceJobs(value); return *this;}
56
60 inline ListDevicesJobsResult& WithDeviceJobs(Aws::Vector<DeviceJob>&& value) { SetDeviceJobs(std::move(value)); return *this;}
61
65 inline ListDevicesJobsResult& AddDeviceJobs(const DeviceJob& value) { m_deviceJobs.push_back(value); return *this; }
66
70 inline ListDevicesJobsResult& AddDeviceJobs(DeviceJob&& value) { m_deviceJobs.push_back(std::move(value)); return *this; }
71
72
76 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
77
81 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
82
86 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
87
91 inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
92
96 inline ListDevicesJobsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
97
101 inline ListDevicesJobsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
102
106 inline ListDevicesJobsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
107
108 private:
109
110 Aws::Vector<DeviceJob> m_deviceJobs;
111
112 Aws::String m_nextToken;
113 };
114
115} // namespace Model
116} // namespace Panorama
117} // namespace Aws
#define AWS_PANORAMA_API
ListDevicesJobsResult & WithDeviceJobs(Aws::Vector< DeviceJob > &&value)
void SetDeviceJobs(Aws::Vector< DeviceJob > &&value)
AWS_PANORAMA_API ListDevicesJobsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetDeviceJobs(const Aws::Vector< DeviceJob > &value)
ListDevicesJobsResult & WithNextToken(const Aws::String &value)
AWS_PANORAMA_API ListDevicesJobsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ListDevicesJobsResult & WithNextToken(Aws::String &&value)
ListDevicesJobsResult & AddDeviceJobs(const DeviceJob &value)
const Aws::Vector< DeviceJob > & GetDeviceJobs() const
ListDevicesJobsResult & WithDeviceJobs(const Aws::Vector< DeviceJob > &value)
ListDevicesJobsResult & AddDeviceJobs(DeviceJob &&value)
ListDevicesJobsResult & WithNextToken(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector