AWS SDK for C++

AWS SDK for C++ Version 1.11.785

Loading...
Searching...
No Matches
BatchGetJobIdentifier.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/deadline/Deadline_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace deadline {
20namespace Model {
21
28 public:
29 AWS_DEADLINE_API BatchGetJobIdentifier() = default;
32 AWS_DEADLINE_API Aws::Utils::Json::JsonValue Jsonize() const;
33
35
38 inline const Aws::String& GetFarmId() const { return m_farmId; }
39 inline bool FarmIdHasBeenSet() const { return m_farmIdHasBeenSet; }
40 template <typename FarmIdT = Aws::String>
41 void SetFarmId(FarmIdT&& value) {
42 m_farmIdHasBeenSet = true;
43 m_farmId = std::forward<FarmIdT>(value);
44 }
45 template <typename FarmIdT = Aws::String>
47 SetFarmId(std::forward<FarmIdT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetQueueId() const { return m_queueId; }
57 inline bool QueueIdHasBeenSet() const { return m_queueIdHasBeenSet; }
58 template <typename QueueIdT = Aws::String>
59 void SetQueueId(QueueIdT&& value) {
60 m_queueIdHasBeenSet = true;
61 m_queueId = std::forward<QueueIdT>(value);
62 }
63 template <typename QueueIdT = Aws::String>
65 SetQueueId(std::forward<QueueIdT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::String& GetJobId() const { return m_jobId; }
75 inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; }
76 template <typename JobIdT = Aws::String>
77 void SetJobId(JobIdT&& value) {
78 m_jobIdHasBeenSet = true;
79 m_jobId = std::forward<JobIdT>(value);
80 }
81 template <typename JobIdT = Aws::String>
83 SetJobId(std::forward<JobIdT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_farmId;
89
90 Aws::String m_queueId;
91
92 Aws::String m_jobId;
93 bool m_farmIdHasBeenSet = false;
94 bool m_queueIdHasBeenSet = false;
95 bool m_jobIdHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace deadline
100} // namespace Aws
AWS_DEADLINE_API Aws::Utils::Json::JsonValue Jsonize() const
BatchGetJobIdentifier & WithQueueId(QueueIdT &&value)
AWS_DEADLINE_API BatchGetJobIdentifier & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_DEADLINE_API BatchGetJobIdentifier()=default
BatchGetJobIdentifier & WithJobId(JobIdT &&value)
AWS_DEADLINE_API BatchGetJobIdentifier(Aws::Utils::Json::JsonView jsonValue)
BatchGetJobIdentifier & WithFarmId(FarmIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue