AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetJobRequest.h
1
6#pragma once
7#include <aws/amplify/Amplify_EXPORTS.h>
8#include <aws/amplify/AmplifyRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Amplify
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_AMPLIFY_API GetJobRequest();
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "GetJob"; }
34
35 AWS_AMPLIFY_API Aws::String SerializePayload() const override;
36
37
39
42 inline const Aws::String& GetAppId() const{ return m_appId; }
43 inline bool AppIdHasBeenSet() const { return m_appIdHasBeenSet; }
44 inline void SetAppId(const Aws::String& value) { m_appIdHasBeenSet = true; m_appId = value; }
45 inline void SetAppId(Aws::String&& value) { m_appIdHasBeenSet = true; m_appId = std::move(value); }
46 inline void SetAppId(const char* value) { m_appIdHasBeenSet = true; m_appId.assign(value); }
47 inline GetJobRequest& WithAppId(const Aws::String& value) { SetAppId(value); return *this;}
48 inline GetJobRequest& WithAppId(Aws::String&& value) { SetAppId(std::move(value)); return *this;}
49 inline GetJobRequest& WithAppId(const char* value) { SetAppId(value); return *this;}
51
53
56 inline const Aws::String& GetBranchName() const{ return m_branchName; }
57 inline bool BranchNameHasBeenSet() const { return m_branchNameHasBeenSet; }
58 inline void SetBranchName(const Aws::String& value) { m_branchNameHasBeenSet = true; m_branchName = value; }
59 inline void SetBranchName(Aws::String&& value) { m_branchNameHasBeenSet = true; m_branchName = std::move(value); }
60 inline void SetBranchName(const char* value) { m_branchNameHasBeenSet = true; m_branchName.assign(value); }
61 inline GetJobRequest& WithBranchName(const Aws::String& value) { SetBranchName(value); return *this;}
62 inline GetJobRequest& WithBranchName(Aws::String&& value) { SetBranchName(std::move(value)); return *this;}
63 inline GetJobRequest& WithBranchName(const char* value) { SetBranchName(value); return *this;}
65
67
70 inline const Aws::String& GetJobId() const{ return m_jobId; }
71 inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; }
72 inline void SetJobId(const Aws::String& value) { m_jobIdHasBeenSet = true; m_jobId = value; }
73 inline void SetJobId(Aws::String&& value) { m_jobIdHasBeenSet = true; m_jobId = std::move(value); }
74 inline void SetJobId(const char* value) { m_jobIdHasBeenSet = true; m_jobId.assign(value); }
75 inline GetJobRequest& WithJobId(const Aws::String& value) { SetJobId(value); return *this;}
76 inline GetJobRequest& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;}
77 inline GetJobRequest& WithJobId(const char* value) { SetJobId(value); return *this;}
79 private:
80
81 Aws::String m_appId;
82 bool m_appIdHasBeenSet = false;
83
84 Aws::String m_branchName;
85 bool m_branchNameHasBeenSet = false;
86
87 Aws::String m_jobId;
88 bool m_jobIdHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace Amplify
93} // namespace Aws
GetJobRequest & WithJobId(const char *value)
const Aws::String & GetAppId() const
void SetBranchName(const char *value)
void SetAppId(const Aws::String &value)
GetJobRequest & WithJobId(const Aws::String &value)
void SetJobId(Aws::String &&value)
GetJobRequest & WithAppId(Aws::String &&value)
GetJobRequest & WithJobId(Aws::String &&value)
void SetJobId(const Aws::String &value)
GetJobRequest & WithBranchName(const Aws::String &value)
GetJobRequest & WithAppId(const Aws::String &value)
void SetBranchName(Aws::String &&value)
const Aws::String & GetBranchName() const
GetJobRequest & WithAppId(const char *value)
void SetAppId(Aws::String &&value)
GetJobRequest & WithBranchName(const char *value)
void SetBranchName(const Aws::String &value)
void SetJobId(const char *value)
void SetAppId(const char *value)
virtual const char * GetServiceRequestName() const override
const Aws::String & GetJobId() const
AWS_AMPLIFY_API Aws::String SerializePayload() const override
GetJobRequest & WithBranchName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String