AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PollForJobsResult.h
1
6#pragma once
7#include <aws/codepipeline/CodePipeline_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/codepipeline/model/Job.h>
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 CodePipeline
26{
27namespace Model
28{
36 {
37 public:
38 AWS_CODEPIPELINE_API PollForJobsResult();
41
42
44
47 inline const Aws::Vector<Job>& GetJobs() const{ return m_jobs; }
48 inline void SetJobs(const Aws::Vector<Job>& value) { m_jobs = value; }
49 inline void SetJobs(Aws::Vector<Job>&& value) { m_jobs = std::move(value); }
50 inline PollForJobsResult& WithJobs(const Aws::Vector<Job>& value) { SetJobs(value); return *this;}
51 inline PollForJobsResult& WithJobs(Aws::Vector<Job>&& value) { SetJobs(std::move(value)); return *this;}
52 inline PollForJobsResult& AddJobs(const Job& value) { m_jobs.push_back(value); return *this; }
53 inline PollForJobsResult& AddJobs(Job&& value) { m_jobs.push_back(std::move(value)); return *this; }
55
57
58 inline const Aws::String& GetRequestId() const{ return m_requestId; }
59 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
60 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
61 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
62 inline PollForJobsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
63 inline PollForJobsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
64 inline PollForJobsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
66 private:
67
68 Aws::Vector<Job> m_jobs;
69
70 Aws::String m_requestId;
71 };
72
73} // namespace Model
74} // namespace CodePipeline
75} // namespace Aws
void SetJobs(Aws::Vector< Job > &&value)
PollForJobsResult & WithRequestId(Aws::String &&value)
void SetJobs(const Aws::Vector< Job > &value)
PollForJobsResult & WithRequestId(const char *value)
const Aws::Vector< Job > & GetJobs() const
PollForJobsResult & AddJobs(Job &&value)
PollForJobsResult & WithJobs(Aws::Vector< Job > &&value)
AWS_CODEPIPELINE_API PollForJobsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_CODEPIPELINE_API PollForJobsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
PollForJobsResult & AddJobs(const Job &value)
void SetRequestId(const Aws::String &value)
PollForJobsResult & WithJobs(const Aws::Vector< Job > &value)
PollForJobsResult & WithRequestId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue