AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetLoaderJobStatusRequest.h
1
6#pragma once
7#include <aws/neptunedata/Neptunedata_EXPORTS.h>
8#include <aws/neptunedata/NeptunedataRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace neptunedata
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_NEPTUNEDATA_API GetLoaderJobStatusRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetLoaderJobStatus"; }
35
36 AWS_NEPTUNEDATA_API Aws::String SerializePayload() const override;
37
38 AWS_NEPTUNEDATA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetLoadId() const{ return m_loadId; }
46 inline bool LoadIdHasBeenSet() const { return m_loadIdHasBeenSet; }
47 inline void SetLoadId(const Aws::String& value) { m_loadIdHasBeenSet = true; m_loadId = value; }
48 inline void SetLoadId(Aws::String&& value) { m_loadIdHasBeenSet = true; m_loadId = std::move(value); }
49 inline void SetLoadId(const char* value) { m_loadIdHasBeenSet = true; m_loadId.assign(value); }
50 inline GetLoaderJobStatusRequest& WithLoadId(const Aws::String& value) { SetLoadId(value); return *this;}
51 inline GetLoaderJobStatusRequest& WithLoadId(Aws::String&& value) { SetLoadId(std::move(value)); return *this;}
52 inline GetLoaderJobStatusRequest& WithLoadId(const char* value) { SetLoadId(value); return *this;}
54
56
61 inline bool GetDetails() const{ return m_details; }
62 inline bool DetailsHasBeenSet() const { return m_detailsHasBeenSet; }
63 inline void SetDetails(bool value) { m_detailsHasBeenSet = true; m_details = value; }
64 inline GetLoaderJobStatusRequest& WithDetails(bool value) { SetDetails(value); return *this;}
66
68
75 inline bool GetErrors() const{ return m_errors; }
76 inline bool ErrorsHasBeenSet() const { return m_errorsHasBeenSet; }
77 inline void SetErrors(bool value) { m_errorsHasBeenSet = true; m_errors = value; }
78 inline GetLoaderJobStatusRequest& WithErrors(bool value) { SetErrors(value); return *this;}
80
82
87 inline int GetPage() const{ return m_page; }
88 inline bool PageHasBeenSet() const { return m_pageHasBeenSet; }
89 inline void SetPage(int value) { m_pageHasBeenSet = true; m_page = value; }
90 inline GetLoaderJobStatusRequest& WithPage(int value) { SetPage(value); return *this;}
92
94
99 inline int GetErrorsPerPage() const{ return m_errorsPerPage; }
100 inline bool ErrorsPerPageHasBeenSet() const { return m_errorsPerPageHasBeenSet; }
101 inline void SetErrorsPerPage(int value) { m_errorsPerPageHasBeenSet = true; m_errorsPerPage = value; }
102 inline GetLoaderJobStatusRequest& WithErrorsPerPage(int value) { SetErrorsPerPage(value); return *this;}
104 private:
105
106 Aws::String m_loadId;
107 bool m_loadIdHasBeenSet = false;
108
109 bool m_details;
110 bool m_detailsHasBeenSet = false;
111
112 bool m_errors;
113 bool m_errorsHasBeenSet = false;
114
115 int m_page;
116 bool m_pageHasBeenSet = false;
117
118 int m_errorsPerPage;
119 bool m_errorsPerPageHasBeenSet = false;
120 };
121
122} // namespace Model
123} // namespace neptunedata
124} // namespace Aws
AWS_NEPTUNEDATA_API Aws::String SerializePayload() const override
GetLoaderJobStatusRequest & WithErrorsPerPage(int value)
GetLoaderJobStatusRequest & WithLoadId(const Aws::String &value)
GetLoaderJobStatusRequest & WithLoadId(const char *value)
virtual const char * GetServiceRequestName() const override
AWS_NEPTUNEDATA_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetLoaderJobStatusRequest & WithLoadId(Aws::String &&value)
GetLoaderJobStatusRequest & WithDetails(bool value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String