AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
GetExportTaskResult.h
1
6#pragma once
7#include <aws/neptune-graph/NeptuneGraph_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/neptune-graph/model/ExportTaskStatus.h>
10#include <aws/neptune-graph/model/ExportFormat.h>
11#include <aws/neptune-graph/model/ParquetType.h>
12#include <aws/neptune-graph/model/ExportTaskDetails.h>
13#include <aws/neptune-graph/model/ExportFilter.h>
14#include <utility>
15
16namespace Aws
17{
18template<typename RESULT_TYPE>
19class AmazonWebServiceResult;
20
21namespace Utils
22{
23namespace Json
24{
25 class JsonValue;
26} // namespace Json
27} // namespace Utils
28namespace NeptuneGraph
29{
30namespace Model
31{
33 {
34 public:
35 AWS_NEPTUNEGRAPH_API GetExportTaskResult() = default;
38
39
41
44 inline const Aws::String& GetGraphId() const { return m_graphId; }
45 template<typename GraphIdT = Aws::String>
46 void SetGraphId(GraphIdT&& value) { m_graphIdHasBeenSet = true; m_graphId = std::forward<GraphIdT>(value); }
47 template<typename GraphIdT = Aws::String>
48 GetExportTaskResult& WithGraphId(GraphIdT&& value) { SetGraphId(std::forward<GraphIdT>(value)); return *this;}
50
52
56 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
57 template<typename RoleArnT = Aws::String>
58 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
59 template<typename RoleArnT = Aws::String>
60 GetExportTaskResult& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
62
64
67 inline const Aws::String& GetTaskId() const { return m_taskId; }
68 template<typename TaskIdT = Aws::String>
69 void SetTaskId(TaskIdT&& value) { m_taskIdHasBeenSet = true; m_taskId = std::forward<TaskIdT>(value); }
70 template<typename TaskIdT = Aws::String>
71 GetExportTaskResult& WithTaskId(TaskIdT&& value) { SetTaskId(std::forward<TaskIdT>(value)); return *this;}
73
75
78 inline ExportTaskStatus GetStatus() const { return m_status; }
79 inline void SetStatus(ExportTaskStatus value) { m_statusHasBeenSet = true; m_status = value; }
80 inline GetExportTaskResult& WithStatus(ExportTaskStatus value) { SetStatus(value); return *this;}
82
84
87 inline ExportFormat GetFormat() const { return m_format; }
88 inline void SetFormat(ExportFormat value) { m_formatHasBeenSet = true; m_format = value; }
89 inline GetExportTaskResult& WithFormat(ExportFormat value) { SetFormat(value); return *this;}
91
93
96 inline const Aws::String& GetDestination() const { return m_destination; }
97 template<typename DestinationT = Aws::String>
98 void SetDestination(DestinationT&& value) { m_destinationHasBeenSet = true; m_destination = std::forward<DestinationT>(value); }
99 template<typename DestinationT = Aws::String>
100 GetExportTaskResult& WithDestination(DestinationT&& value) { SetDestination(std::forward<DestinationT>(value)); return *this;}
102
104
107 inline const Aws::String& GetKmsKeyIdentifier() const { return m_kmsKeyIdentifier; }
108 template<typename KmsKeyIdentifierT = Aws::String>
109 void SetKmsKeyIdentifier(KmsKeyIdentifierT&& value) { m_kmsKeyIdentifierHasBeenSet = true; m_kmsKeyIdentifier = std::forward<KmsKeyIdentifierT>(value); }
110 template<typename KmsKeyIdentifierT = Aws::String>
111 GetExportTaskResult& WithKmsKeyIdentifier(KmsKeyIdentifierT&& value) { SetKmsKeyIdentifier(std::forward<KmsKeyIdentifierT>(value)); return *this;}
113
115
118 inline ParquetType GetParquetType() const { return m_parquetType; }
119 inline void SetParquetType(ParquetType value) { m_parquetTypeHasBeenSet = true; m_parquetType = value; }
120 inline GetExportTaskResult& WithParquetType(ParquetType value) { SetParquetType(value); return *this;}
122
124
127 inline const Aws::String& GetStatusReason() const { return m_statusReason; }
128 template<typename StatusReasonT = Aws::String>
129 void SetStatusReason(StatusReasonT&& value) { m_statusReasonHasBeenSet = true; m_statusReason = std::forward<StatusReasonT>(value); }
130 template<typename StatusReasonT = Aws::String>
131 GetExportTaskResult& WithStatusReason(StatusReasonT&& value) { SetStatusReason(std::forward<StatusReasonT>(value)); return *this;}
133
135
138 inline const ExportTaskDetails& GetExportTaskDetails() const { return m_exportTaskDetails; }
139 template<typename ExportTaskDetailsT = ExportTaskDetails>
140 void SetExportTaskDetails(ExportTaskDetailsT&& value) { m_exportTaskDetailsHasBeenSet = true; m_exportTaskDetails = std::forward<ExportTaskDetailsT>(value); }
141 template<typename ExportTaskDetailsT = ExportTaskDetails>
142 GetExportTaskResult& WithExportTaskDetails(ExportTaskDetailsT&& value) { SetExportTaskDetails(std::forward<ExportTaskDetailsT>(value)); return *this;}
144
146
149 inline const ExportFilter& GetExportFilter() const { return m_exportFilter; }
150 template<typename ExportFilterT = ExportFilter>
151 void SetExportFilter(ExportFilterT&& value) { m_exportFilterHasBeenSet = true; m_exportFilter = std::forward<ExportFilterT>(value); }
152 template<typename ExportFilterT = ExportFilter>
153 GetExportTaskResult& WithExportFilter(ExportFilterT&& value) { SetExportFilter(std::forward<ExportFilterT>(value)); return *this;}
155
157
158 inline const Aws::String& GetRequestId() const { return m_requestId; }
159 template<typename RequestIdT = Aws::String>
160 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
161 template<typename RequestIdT = Aws::String>
162 GetExportTaskResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
164 private:
165
166 Aws::String m_graphId;
167 bool m_graphIdHasBeenSet = false;
168
169 Aws::String m_roleArn;
170 bool m_roleArnHasBeenSet = false;
171
172 Aws::String m_taskId;
173 bool m_taskIdHasBeenSet = false;
174
176 bool m_statusHasBeenSet = false;
177
179 bool m_formatHasBeenSet = false;
180
181 Aws::String m_destination;
182 bool m_destinationHasBeenSet = false;
183
184 Aws::String m_kmsKeyIdentifier;
185 bool m_kmsKeyIdentifierHasBeenSet = false;
186
187 ParquetType m_parquetType{ParquetType::NOT_SET};
188 bool m_parquetTypeHasBeenSet = false;
189
190 Aws::String m_statusReason;
191 bool m_statusReasonHasBeenSet = false;
192
193 ExportTaskDetails m_exportTaskDetails;
194 bool m_exportTaskDetailsHasBeenSet = false;
195
196 ExportFilter m_exportFilter;
197 bool m_exportFilterHasBeenSet = false;
198
199 Aws::String m_requestId;
200 bool m_requestIdHasBeenSet = false;
201 };
202
203} // namespace Model
204} // namespace NeptuneGraph
205} // namespace Aws
void SetKmsKeyIdentifier(KmsKeyIdentifierT &&value)
GetExportTaskResult & WithRoleArn(RoleArnT &&value)
void SetExportTaskDetails(ExportTaskDetailsT &&value)
GetExportTaskResult & WithDestination(DestinationT &&value)
GetExportTaskResult & WithStatusReason(StatusReasonT &&value)
GetExportTaskResult & WithExportTaskDetails(ExportTaskDetailsT &&value)
GetExportTaskResult & WithTaskId(TaskIdT &&value)
AWS_NEPTUNEGRAPH_API GetExportTaskResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetExportTaskResult & WithRequestId(RequestIdT &&value)
GetExportTaskResult & WithKmsKeyIdentifier(KmsKeyIdentifierT &&value)
GetExportTaskResult & WithFormat(ExportFormat value)
AWS_NEPTUNEGRAPH_API GetExportTaskResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetExportTaskResult & WithGraphId(GraphIdT &&value)
GetExportTaskResult & WithParquetType(ParquetType value)
GetExportTaskResult & WithExportFilter(ExportFilterT &&value)
AWS_NEPTUNEGRAPH_API GetExportTaskResult()=default
GetExportTaskResult & WithStatus(ExportTaskStatus value)
const ExportTaskDetails & GetExportTaskDetails() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue