AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
CreateJobForDevicesResult.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace Panorama
25{
26namespace Model
27{
29 {
30 public:
34
35
39 inline const Aws::Vector<Job>& GetJobs() const{ return m_jobs; }
40
44 inline void SetJobs(const Aws::Vector<Job>& value) { m_jobs = value; }
45
49 inline void SetJobs(Aws::Vector<Job>&& value) { m_jobs = std::move(value); }
50
54 inline CreateJobForDevicesResult& WithJobs(const Aws::Vector<Job>& value) { SetJobs(value); return *this;}
55
59 inline CreateJobForDevicesResult& WithJobs(Aws::Vector<Job>&& value) { SetJobs(std::move(value)); return *this;}
60
64 inline CreateJobForDevicesResult& AddJobs(const Job& value) { m_jobs.push_back(value); return *this; }
65
69 inline CreateJobForDevicesResult& AddJobs(Job&& value) { m_jobs.push_back(std::move(value)); return *this; }
70
71 private:
72
73 Aws::Vector<Job> m_jobs;
74 };
75
76} // namespace Model
77} // namespace Panorama
78} // namespace Aws
#define AWS_PANORAMA_API
CreateJobForDevicesResult & AddJobs(Job &&value)
AWS_PANORAMA_API CreateJobForDevicesResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_PANORAMA_API CreateJobForDevicesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
CreateJobForDevicesResult & AddJobs(const Job &value)
CreateJobForDevicesResult & WithJobs(Aws::Vector< Job > &&value)
CreateJobForDevicesResult & WithJobs(const Aws::Vector< Job > &value)
std::vector< T, Aws::Allocator< T > > Vector