AWS SDK for C++

AWS SDK for C++ Version 1.11.695

Loading...
Searching...
No Matches
GetBackendJobRequest.h
1
6#pragma once
7#include <aws/amplifybackend/AmplifyBackendRequest.h>
8#include <aws/amplifybackend/AmplifyBackend_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace AmplifyBackend {
15namespace Model {
16
20 public:
21 AWS_AMPLIFYBACKEND_API GetBackendJobRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "GetBackendJob"; }
28
29 AWS_AMPLIFYBACKEND_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetAppId() const { return m_appId; }
36 inline bool AppIdHasBeenSet() const { return m_appIdHasBeenSet; }
37 template <typename AppIdT = Aws::String>
38 void SetAppId(AppIdT&& value) {
39 m_appIdHasBeenSet = true;
40 m_appId = std::forward<AppIdT>(value);
41 }
42 template <typename AppIdT = Aws::String>
44 SetAppId(std::forward<AppIdT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetBackendEnvironmentName() const { return m_backendEnvironmentName; }
54 inline bool BackendEnvironmentNameHasBeenSet() const { return m_backendEnvironmentNameHasBeenSet; }
55 template <typename BackendEnvironmentNameT = Aws::String>
56 void SetBackendEnvironmentName(BackendEnvironmentNameT&& value) {
57 m_backendEnvironmentNameHasBeenSet = true;
58 m_backendEnvironmentName = std::forward<BackendEnvironmentNameT>(value);
59 }
60 template <typename BackendEnvironmentNameT = Aws::String>
61 GetBackendJobRequest& WithBackendEnvironmentName(BackendEnvironmentNameT&& value) {
62 SetBackendEnvironmentName(std::forward<BackendEnvironmentNameT>(value));
63 return *this;
64 }
66
68
71 inline const Aws::String& GetJobId() const { return m_jobId; }
72 inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; }
73 template <typename JobIdT = Aws::String>
74 void SetJobId(JobIdT&& value) {
75 m_jobIdHasBeenSet = true;
76 m_jobId = std::forward<JobIdT>(value);
77 }
78 template <typename JobIdT = Aws::String>
80 SetJobId(std::forward<JobIdT>(value));
81 return *this;
82 }
84 private:
85 Aws::String m_appId;
86 bool m_appIdHasBeenSet = false;
87
88 Aws::String m_backendEnvironmentName;
89 bool m_backendEnvironmentNameHasBeenSet = false;
90
91 Aws::String m_jobId;
92 bool m_jobIdHasBeenSet = false;
93};
94
95} // namespace Model
96} // namespace AmplifyBackend
97} // namespace Aws
GetBackendJobRequest & WithAppId(AppIdT &&value)
virtual const char * GetServiceRequestName() const override
GetBackendJobRequest & WithBackendEnvironmentName(BackendEnvironmentNameT &&value)
void SetBackendEnvironmentName(BackendEnvironmentNameT &&value)
AWS_AMPLIFYBACKEND_API GetBackendJobRequest()=default
GetBackendJobRequest & WithJobId(JobIdT &&value)
AWS_AMPLIFYBACKEND_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String