AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
NeptuneGraphClient.h
1
6#pragma once
7#include <aws/core/client/AWSClient.h>
8#include <aws/core/client/AWSClientAsyncCRTP.h>
9#include <aws/core/client/ClientConfiguration.h>
10#include <aws/core/utils/json/JsonSerializer.h>
11#include <aws/neptune-graph/NeptuneGraphServiceClientModel.h>
12#include <aws/neptune-graph/NeptuneGraph_EXPORTS.h>
13
14namespace Aws {
15namespace NeptuneGraph {
22class AWS_NEPTUNEGRAPH_API NeptuneGraphClient : public Aws::Client::AWSJsonClient,
23 public Aws::Client::ClientWithAsyncTemplateMethods<NeptuneGraphClient> {
24 public:
26 static const char* GetServiceName();
27 static const char* GetAllocationTag();
28
31
38 std::shared_ptr<NeptuneGraphEndpointProviderBase> endpointProvider = nullptr);
39
45 const Aws::Auth::AWSCredentials& credentials, std::shared_ptr<NeptuneGraphEndpointProviderBase> endpointProvider = nullptr,
47
53 const std::shared_ptr<Aws::Auth::AWSCredentialsProvider>& credentialsProvider,
54 std::shared_ptr<NeptuneGraphEndpointProviderBase> endpointProvider = nullptr,
56
57 /* Legacy constructors due deprecation */
63
68 NeptuneGraphClient(const Aws::Auth::AWSCredentials& credentials, const Aws::Client::ClientConfiguration& clientConfiguration);
69
74 NeptuneGraphClient(const std::shared_ptr<Aws::Auth::AWSCredentialsProvider>& credentialsProvider,
75 const Aws::Client::ClientConfiguration& clientConfiguration);
76
77 /* End of legacy constructors due deprecation */
79
86
91 template <typename CancelExportTaskRequestT = Model::CancelExportTaskRequest>
92 Model::CancelExportTaskOutcomeCallable CancelExportTaskCallable(const CancelExportTaskRequestT& request) const {
93 return SubmitCallable(&NeptuneGraphClient::CancelExportTask, request);
94 }
95
100 template <typename CancelExportTaskRequestT = Model::CancelExportTaskRequest>
101 void CancelExportTaskAsync(const CancelExportTaskRequestT& request, const CancelExportTaskResponseReceivedHandler& handler,
102 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
103 return SubmitAsync(&NeptuneGraphClient::CancelExportTask, request, handler, context);
104 }
105
112
117 template <typename CancelImportTaskRequestT = Model::CancelImportTaskRequest>
118 Model::CancelImportTaskOutcomeCallable CancelImportTaskCallable(const CancelImportTaskRequestT& request) const {
119 return SubmitCallable(&NeptuneGraphClient::CancelImportTask, request);
120 }
121
126 template <typename CancelImportTaskRequestT = Model::CancelImportTaskRequest>
127 void CancelImportTaskAsync(const CancelImportTaskRequestT& request, const CancelImportTaskResponseReceivedHandler& handler,
128 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
129 return SubmitAsync(&NeptuneGraphClient::CancelImportTask, request, handler, context);
130 }
131
138
142 template <typename CancelQueryRequestT = Model::CancelQueryRequest>
143 Model::CancelQueryOutcomeCallable CancelQueryCallable(const CancelQueryRequestT& request) const {
144 return SubmitCallable(&NeptuneGraphClient::CancelQuery, request);
145 }
146
151 template <typename CancelQueryRequestT = Model::CancelQueryRequest>
152 void CancelQueryAsync(const CancelQueryRequestT& request, const CancelQueryResponseReceivedHandler& handler,
153 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
154 return SubmitAsync(&NeptuneGraphClient::CancelQuery, request, handler, context);
155 }
156
163
167 template <typename CreateGraphRequestT = Model::CreateGraphRequest>
168 Model::CreateGraphOutcomeCallable CreateGraphCallable(const CreateGraphRequestT& request) const {
169 return SubmitCallable(&NeptuneGraphClient::CreateGraph, request);
170 }
171
176 template <typename CreateGraphRequestT = Model::CreateGraphRequest>
177 void CreateGraphAsync(const CreateGraphRequestT& request, const CreateGraphResponseReceivedHandler& handler,
178 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
179 return SubmitAsync(&NeptuneGraphClient::CreateGraph, request, handler, context);
180 }
181
188
193 template <typename CreateGraphSnapshotRequestT = Model::CreateGraphSnapshotRequest>
194 Model::CreateGraphSnapshotOutcomeCallable CreateGraphSnapshotCallable(const CreateGraphSnapshotRequestT& request) const {
195 return SubmitCallable(&NeptuneGraphClient::CreateGraphSnapshot, request);
196 }
197
202 template <typename CreateGraphSnapshotRequestT = Model::CreateGraphSnapshotRequest>
203 void CreateGraphSnapshotAsync(const CreateGraphSnapshotRequestT& request, const CreateGraphSnapshotResponseReceivedHandler& handler,
204 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
205 return SubmitAsync(&NeptuneGraphClient::CreateGraphSnapshot, request, handler, context);
206 }
207
221 const Model::CreateGraphUsingImportTaskRequest& request) const;
222
227 template <typename CreateGraphUsingImportTaskRequestT = Model::CreateGraphUsingImportTaskRequest>
229 const CreateGraphUsingImportTaskRequestT& request) const {
230 return SubmitCallable(&NeptuneGraphClient::CreateGraphUsingImportTask, request);
231 }
232
237 template <typename CreateGraphUsingImportTaskRequestT = Model::CreateGraphUsingImportTaskRequest>
238 void CreateGraphUsingImportTaskAsync(const CreateGraphUsingImportTaskRequestT& request,
240 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
241 return SubmitAsync(&NeptuneGraphClient::CreateGraphUsingImportTask, request, handler, context);
242 }
243
253 const Model::CreatePrivateGraphEndpointRequest& request) const;
254
259 template <typename CreatePrivateGraphEndpointRequestT = Model::CreatePrivateGraphEndpointRequest>
261 const CreatePrivateGraphEndpointRequestT& request) const {
262 return SubmitCallable(&NeptuneGraphClient::CreatePrivateGraphEndpoint, request);
263 }
264
269 template <typename CreatePrivateGraphEndpointRequestT = Model::CreatePrivateGraphEndpointRequest>
270 void CreatePrivateGraphEndpointAsync(const CreatePrivateGraphEndpointRequestT& request,
272 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
273 return SubmitAsync(&NeptuneGraphClient::CreatePrivateGraphEndpoint, request, handler, context);
274 }
275
283
287 template <typename DeleteGraphRequestT = Model::DeleteGraphRequest>
288 Model::DeleteGraphOutcomeCallable DeleteGraphCallable(const DeleteGraphRequestT& request) const {
289 return SubmitCallable(&NeptuneGraphClient::DeleteGraph, request);
290 }
291
296 template <typename DeleteGraphRequestT = Model::DeleteGraphRequest>
297 void DeleteGraphAsync(const DeleteGraphRequestT& request, const DeleteGraphResponseReceivedHandler& handler,
298 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
299 return SubmitAsync(&NeptuneGraphClient::DeleteGraph, request, handler, context);
300 }
301
308
313 template <typename DeleteGraphSnapshotRequestT = Model::DeleteGraphSnapshotRequest>
314 Model::DeleteGraphSnapshotOutcomeCallable DeleteGraphSnapshotCallable(const DeleteGraphSnapshotRequestT& request) const {
315 return SubmitCallable(&NeptuneGraphClient::DeleteGraphSnapshot, request);
316 }
317
322 template <typename DeleteGraphSnapshotRequestT = Model::DeleteGraphSnapshotRequest>
323 void DeleteGraphSnapshotAsync(const DeleteGraphSnapshotRequestT& request, const DeleteGraphSnapshotResponseReceivedHandler& handler,
324 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
325 return SubmitAsync(&NeptuneGraphClient::DeleteGraphSnapshot, request, handler, context);
326 }
327
334 const Model::DeletePrivateGraphEndpointRequest& request) const;
335
340 template <typename DeletePrivateGraphEndpointRequestT = Model::DeletePrivateGraphEndpointRequest>
342 const DeletePrivateGraphEndpointRequestT& request) const {
343 return SubmitCallable(&NeptuneGraphClient::DeletePrivateGraphEndpoint, request);
344 }
345
350 template <typename DeletePrivateGraphEndpointRequestT = Model::DeletePrivateGraphEndpointRequest>
351 void DeletePrivateGraphEndpointAsync(const DeletePrivateGraphEndpointRequestT& request,
353 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
354 return SubmitAsync(&NeptuneGraphClient::DeletePrivateGraphEndpoint, request, handler, context);
355 }
356
368
372 template <typename ExecuteQueryRequestT = Model::ExecuteQueryRequest>
373 Model::ExecuteQueryOutcomeCallable ExecuteQueryCallable(const ExecuteQueryRequestT& request) const {
374 return SubmitCallable(&NeptuneGraphClient::ExecuteQuery, request);
375 }
376
381 template <typename ExecuteQueryRequestT = Model::ExecuteQueryRequest>
382 void ExecuteQueryAsync(const ExecuteQueryRequestT& request, const ExecuteQueryResponseReceivedHandler& handler,
383 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
384 return SubmitAsync(&NeptuneGraphClient::ExecuteQuery, request, handler, context);
385 }
386
393
397 template <typename GetExportTaskRequestT = Model::GetExportTaskRequest>
398 Model::GetExportTaskOutcomeCallable GetExportTaskCallable(const GetExportTaskRequestT& request) const {
399 return SubmitCallable(&NeptuneGraphClient::GetExportTask, request);
400 }
401
406 template <typename GetExportTaskRequestT = Model::GetExportTaskRequest>
407 void GetExportTaskAsync(const GetExportTaskRequestT& request, const GetExportTaskResponseReceivedHandler& handler,
408 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
409 return SubmitAsync(&NeptuneGraphClient::GetExportTask, request, handler, context);
410 }
411
418
422 template <typename GetGraphRequestT = Model::GetGraphRequest>
423 Model::GetGraphOutcomeCallable GetGraphCallable(const GetGraphRequestT& request) const {
424 return SubmitCallable(&NeptuneGraphClient::GetGraph, request);
425 }
426
431 template <typename GetGraphRequestT = Model::GetGraphRequest>
432 void GetGraphAsync(const GetGraphRequestT& request, const GetGraphResponseReceivedHandler& handler,
433 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
434 return SubmitAsync(&NeptuneGraphClient::GetGraph, request, handler, context);
435 }
436
443
448 template <typename GetGraphSnapshotRequestT = Model::GetGraphSnapshotRequest>
449 Model::GetGraphSnapshotOutcomeCallable GetGraphSnapshotCallable(const GetGraphSnapshotRequestT& request) const {
450 return SubmitCallable(&NeptuneGraphClient::GetGraphSnapshot, request);
451 }
452
457 template <typename GetGraphSnapshotRequestT = Model::GetGraphSnapshotRequest>
458 void GetGraphSnapshotAsync(const GetGraphSnapshotRequestT& request, const GetGraphSnapshotResponseReceivedHandler& handler,
459 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
460 return SubmitAsync(&NeptuneGraphClient::GetGraphSnapshot, request, handler, context);
461 }
462
469
473 template <typename GetGraphSummaryRequestT = Model::GetGraphSummaryRequest>
474 Model::GetGraphSummaryOutcomeCallable GetGraphSummaryCallable(const GetGraphSummaryRequestT& request) const {
475 return SubmitCallable(&NeptuneGraphClient::GetGraphSummary, request);
476 }
477
482 template <typename GetGraphSummaryRequestT = Model::GetGraphSummaryRequest>
483 void GetGraphSummaryAsync(const GetGraphSummaryRequestT& request, const GetGraphSummaryResponseReceivedHandler& handler,
484 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
485 return SubmitAsync(&NeptuneGraphClient::GetGraphSummary, request, handler, context);
486 }
487
494
498 template <typename GetImportTaskRequestT = Model::GetImportTaskRequest>
499 Model::GetImportTaskOutcomeCallable GetImportTaskCallable(const GetImportTaskRequestT& request) const {
500 return SubmitCallable(&NeptuneGraphClient::GetImportTask, request);
501 }
502
507 template <typename GetImportTaskRequestT = Model::GetImportTaskRequest>
508 void GetImportTaskAsync(const GetImportTaskRequestT& request, const GetImportTaskResponseReceivedHandler& handler,
509 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
510 return SubmitAsync(&NeptuneGraphClient::GetImportTask, request, handler, context);
511 }
512
520
525 template <typename GetPrivateGraphEndpointRequestT = Model::GetPrivateGraphEndpointRequest>
526 Model::GetPrivateGraphEndpointOutcomeCallable GetPrivateGraphEndpointCallable(const GetPrivateGraphEndpointRequestT& request) const {
527 return SubmitCallable(&NeptuneGraphClient::GetPrivateGraphEndpoint, request);
528 }
529
534 template <typename GetPrivateGraphEndpointRequestT = Model::GetPrivateGraphEndpointRequest>
535 void GetPrivateGraphEndpointAsync(const GetPrivateGraphEndpointRequestT& request,
537 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
538 return SubmitAsync(&NeptuneGraphClient::GetPrivateGraphEndpoint, request, handler, context);
539 }
540
550
554 template <typename GetQueryRequestT = Model::GetQueryRequest>
555 Model::GetQueryOutcomeCallable GetQueryCallable(const GetQueryRequestT& request) const {
556 return SubmitCallable(&NeptuneGraphClient::GetQuery, request);
557 }
558
563 template <typename GetQueryRequestT = Model::GetQueryRequest>
564 void GetQueryAsync(const GetQueryRequestT& request, const GetQueryResponseReceivedHandler& handler,
565 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
566 return SubmitAsync(&NeptuneGraphClient::GetQuery, request, handler, context);
567 }
568
575
579 template <typename ListExportTasksRequestT = Model::ListExportTasksRequest>
580 Model::ListExportTasksOutcomeCallable ListExportTasksCallable(const ListExportTasksRequestT& request = {}) const {
581 return SubmitCallable(&NeptuneGraphClient::ListExportTasks, request);
582 }
583
588 template <typename ListExportTasksRequestT = Model::ListExportTasksRequest>
590 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr,
591 const ListExportTasksRequestT& request = {}) const {
592 return SubmitAsync(&NeptuneGraphClient::ListExportTasks, request, handler, context);
593 }
594
602
607 template <typename ListGraphSnapshotsRequestT = Model::ListGraphSnapshotsRequest>
608 Model::ListGraphSnapshotsOutcomeCallable ListGraphSnapshotsCallable(const ListGraphSnapshotsRequestT& request = {}) const {
609 return SubmitCallable(&NeptuneGraphClient::ListGraphSnapshots, request);
610 }
611
616 template <typename ListGraphSnapshotsRequestT = Model::ListGraphSnapshotsRequest>
618 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr,
619 const ListGraphSnapshotsRequestT& request = {}) const {
620 return SubmitAsync(&NeptuneGraphClient::ListGraphSnapshots, request, handler, context);
621 }
622
629
633 template <typename ListGraphsRequestT = Model::ListGraphsRequest>
634 Model::ListGraphsOutcomeCallable ListGraphsCallable(const ListGraphsRequestT& request = {}) const {
635 return SubmitCallable(&NeptuneGraphClient::ListGraphs, request);
636 }
637
642 template <typename ListGraphsRequestT = Model::ListGraphsRequest>
644 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr,
645 const ListGraphsRequestT& request = {}) const {
646 return SubmitAsync(&NeptuneGraphClient::ListGraphs, request, handler, context);
647 }
648
655
659 template <typename ListImportTasksRequestT = Model::ListImportTasksRequest>
660 Model::ListImportTasksOutcomeCallable ListImportTasksCallable(const ListImportTasksRequestT& request = {}) const {
661 return SubmitCallable(&NeptuneGraphClient::ListImportTasks, request);
662 }
663
668 template <typename ListImportTasksRequestT = Model::ListImportTasksRequest>
670 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr,
671 const ListImportTasksRequestT& request = {}) const {
672 return SubmitAsync(&NeptuneGraphClient::ListImportTasks, request, handler, context);
673 }
674
682
687 template <typename ListPrivateGraphEndpointsRequestT = Model::ListPrivateGraphEndpointsRequest>
689 const ListPrivateGraphEndpointsRequestT& request) const {
690 return SubmitCallable(&NeptuneGraphClient::ListPrivateGraphEndpoints, request);
691 }
692
697 template <typename ListPrivateGraphEndpointsRequestT = Model::ListPrivateGraphEndpointsRequest>
698 void ListPrivateGraphEndpointsAsync(const ListPrivateGraphEndpointsRequestT& request,
700 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
701 return SubmitAsync(&NeptuneGraphClient::ListPrivateGraphEndpoints, request, handler, context);
702 }
703
710
714 template <typename ListQueriesRequestT = Model::ListQueriesRequest>
715 Model::ListQueriesOutcomeCallable ListQueriesCallable(const ListQueriesRequestT& request) const {
716 return SubmitCallable(&NeptuneGraphClient::ListQueries, request);
717 }
718
723 template <typename ListQueriesRequestT = Model::ListQueriesRequest>
724 void ListQueriesAsync(const ListQueriesRequestT& request, const ListQueriesResponseReceivedHandler& handler,
725 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
726 return SubmitAsync(&NeptuneGraphClient::ListQueries, request, handler, context);
727 }
728
736
741 template <typename ListTagsForResourceRequestT = Model::ListTagsForResourceRequest>
742 Model::ListTagsForResourceOutcomeCallable ListTagsForResourceCallable(const ListTagsForResourceRequestT& request) const {
743 return SubmitCallable(&NeptuneGraphClient::ListTagsForResource, request);
744 }
745
750 template <typename ListTagsForResourceRequestT = Model::ListTagsForResourceRequest>
751 void ListTagsForResourceAsync(const ListTagsForResourceRequestT& request, const ListTagsForResourceResponseReceivedHandler& handler,
752 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
753 return SubmitAsync(&NeptuneGraphClient::ListTagsForResource, request, handler, context);
754 }
755
763
767 template <typename ResetGraphRequestT = Model::ResetGraphRequest>
768 Model::ResetGraphOutcomeCallable ResetGraphCallable(const ResetGraphRequestT& request) const {
769 return SubmitCallable(&NeptuneGraphClient::ResetGraph, request);
770 }
771
776 template <typename ResetGraphRequestT = Model::ResetGraphRequest>
777 void ResetGraphAsync(const ResetGraphRequestT& request, const ResetGraphResponseReceivedHandler& handler,
778 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
779 return SubmitAsync(&NeptuneGraphClient::ResetGraph, request, handler, context);
780 }
781
788
793 template <typename RestoreGraphFromSnapshotRequestT = Model::RestoreGraphFromSnapshotRequest>
794 Model::RestoreGraphFromSnapshotOutcomeCallable RestoreGraphFromSnapshotCallable(const RestoreGraphFromSnapshotRequestT& request) const {
795 return SubmitCallable(&NeptuneGraphClient::RestoreGraphFromSnapshot, request);
796 }
797
802 template <typename RestoreGraphFromSnapshotRequestT = Model::RestoreGraphFromSnapshotRequest>
803 void RestoreGraphFromSnapshotAsync(const RestoreGraphFromSnapshotRequestT& request,
805 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
806 return SubmitAsync(&NeptuneGraphClient::RestoreGraphFromSnapshot, request, handler, context);
807 }
808
816
820 template <typename StartExportTaskRequestT = Model::StartExportTaskRequest>
821 Model::StartExportTaskOutcomeCallable StartExportTaskCallable(const StartExportTaskRequestT& request) const {
822 return SubmitCallable(&NeptuneGraphClient::StartExportTask, request);
823 }
824
829 template <typename StartExportTaskRequestT = Model::StartExportTaskRequest>
830 void StartExportTaskAsync(const StartExportTaskRequestT& request, const StartExportTaskResponseReceivedHandler& handler,
831 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
832 return SubmitAsync(&NeptuneGraphClient::StartExportTask, request, handler, context);
833 }
834
841
845 template <typename StartGraphRequestT = Model::StartGraphRequest>
846 Model::StartGraphOutcomeCallable StartGraphCallable(const StartGraphRequestT& request) const {
847 return SubmitCallable(&NeptuneGraphClient::StartGraph, request);
848 }
849
854 template <typename StartGraphRequestT = Model::StartGraphRequest>
855 void StartGraphAsync(const StartGraphRequestT& request, const StartGraphResponseReceivedHandler& handler,
856 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
857 return SubmitAsync(&NeptuneGraphClient::StartGraph, request, handler, context);
858 }
859
868
872 template <typename StartImportTaskRequestT = Model::StartImportTaskRequest>
873 Model::StartImportTaskOutcomeCallable StartImportTaskCallable(const StartImportTaskRequestT& request) const {
874 return SubmitCallable(&NeptuneGraphClient::StartImportTask, request);
875 }
876
881 template <typename StartImportTaskRequestT = Model::StartImportTaskRequest>
882 void StartImportTaskAsync(const StartImportTaskRequestT& request, const StartImportTaskResponseReceivedHandler& handler,
883 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
884 return SubmitAsync(&NeptuneGraphClient::StartImportTask, request, handler, context);
885 }
886
893
897 template <typename StopGraphRequestT = Model::StopGraphRequest>
898 Model::StopGraphOutcomeCallable StopGraphCallable(const StopGraphRequestT& request) const {
899 return SubmitCallable(&NeptuneGraphClient::StopGraph, request);
900 }
901
906 template <typename StopGraphRequestT = Model::StopGraphRequest>
907 void StopGraphAsync(const StopGraphRequestT& request, const StopGraphResponseReceivedHandler& handler,
908 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
909 return SubmitAsync(&NeptuneGraphClient::StopGraph, request, handler, context);
910 }
911
918
922 template <typename TagResourceRequestT = Model::TagResourceRequest>
923 Model::TagResourceOutcomeCallable TagResourceCallable(const TagResourceRequestT& request) const {
924 return SubmitCallable(&NeptuneGraphClient::TagResource, request);
925 }
926
931 template <typename TagResourceRequestT = Model::TagResourceRequest>
932 void TagResourceAsync(const TagResourceRequestT& request, const TagResourceResponseReceivedHandler& handler,
933 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
934 return SubmitAsync(&NeptuneGraphClient::TagResource, request, handler, context);
935 }
936
944
948 template <typename UntagResourceRequestT = Model::UntagResourceRequest>
949 Model::UntagResourceOutcomeCallable UntagResourceCallable(const UntagResourceRequestT& request) const {
950 return SubmitCallable(&NeptuneGraphClient::UntagResource, request);
951 }
952
957 template <typename UntagResourceRequestT = Model::UntagResourceRequest>
958 void UntagResourceAsync(const UntagResourceRequestT& request, const UntagResourceResponseReceivedHandler& handler,
959 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
960 return SubmitAsync(&NeptuneGraphClient::UntagResource, request, handler, context);
961 }
962
970
974 template <typename UpdateGraphRequestT = Model::UpdateGraphRequest>
975 Model::UpdateGraphOutcomeCallable UpdateGraphCallable(const UpdateGraphRequestT& request) const {
976 return SubmitCallable(&NeptuneGraphClient::UpdateGraph, request);
977 }
978
983 template <typename UpdateGraphRequestT = Model::UpdateGraphRequest>
984 void UpdateGraphAsync(const UpdateGraphRequestT& request, const UpdateGraphResponseReceivedHandler& handler,
985 const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
986 return SubmitAsync(&NeptuneGraphClient::UpdateGraph, request, handler, context);
987 }
988
989 void OverrideEndpoint(const Aws::String& endpoint);
990 std::shared_ptr<NeptuneGraphEndpointProviderBase>& accessEndpointProvider();
991
992 private:
994 void init(const NeptuneGraphClientConfiguration& clientConfiguration);
995
996 NeptuneGraphClientConfiguration m_clientConfiguration;
997 std::shared_ptr<NeptuneGraphEndpointProviderBase> m_endpointProvider;
998};
999
1000} // namespace NeptuneGraph
1001} // namespace Aws
virtual Model::ListExportTasksOutcome ListExportTasks(const Model::ListExportTasksRequest &request={}) const
Model::ListExportTasksOutcomeCallable ListExportTasksCallable(const ListExportTasksRequestT &request={}) const
Model::CancelExportTaskOutcomeCallable CancelExportTaskCallable(const CancelExportTaskRequestT &request) const
void DeletePrivateGraphEndpointAsync(const DeletePrivateGraphEndpointRequestT &request, const DeletePrivateGraphEndpointResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
Model::CreateGraphSnapshotOutcomeCallable CreateGraphSnapshotCallable(const CreateGraphSnapshotRequestT &request) const
Model::GetGraphOutcomeCallable GetGraphCallable(const GetGraphRequestT &request) const
virtual Model::ListImportTasksOutcome ListImportTasks(const Model::ListImportTasksRequest &request={}) const
Model::GetExportTaskOutcomeCallable GetExportTaskCallable(const GetExportTaskRequestT &request) const
void CancelQueryAsync(const CancelQueryRequestT &request, const CancelQueryResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::ListQueriesOutcome ListQueries(const Model::ListQueriesRequest &request) const
Model::GetQueryOutcomeCallable GetQueryCallable(const GetQueryRequestT &request) const
Model::CreateGraphUsingImportTaskOutcomeCallable CreateGraphUsingImportTaskCallable(const CreateGraphUsingImportTaskRequestT &request) const
Model::RestoreGraphFromSnapshotOutcomeCallable RestoreGraphFromSnapshotCallable(const RestoreGraphFromSnapshotRequestT &request) const
void CreateGraphAsync(const CreateGraphRequestT &request, const CreateGraphResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
Model::GetGraphSummaryOutcomeCallable GetGraphSummaryCallable(const GetGraphSummaryRequestT &request) const
Model::UpdateGraphOutcomeCallable UpdateGraphCallable(const UpdateGraphRequestT &request) const
void GetQueryAsync(const GetQueryRequestT &request, const GetQueryResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
static const char * GetAllocationTag()
void GetGraphSummaryAsync(const GetGraphSummaryRequestT &request, const GetGraphSummaryResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::GetGraphOutcome GetGraph(const Model::GetGraphRequest &request) const
virtual Model::GetExportTaskOutcome GetExportTask(const Model::GetExportTaskRequest &request) const
Model::ResetGraphOutcomeCallable ResetGraphCallable(const ResetGraphRequestT &request) const
virtual Model::RestoreGraphFromSnapshotOutcome RestoreGraphFromSnapshot(const Model::RestoreGraphFromSnapshotRequest &request) const
Model::ListImportTasksOutcomeCallable ListImportTasksCallable(const ListImportTasksRequestT &request={}) const
void StartExportTaskAsync(const StartExportTaskRequestT &request, const StartExportTaskResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
NeptuneGraphClient(const std::shared_ptr< Aws::Auth::AWSCredentialsProvider > &credentialsProvider, std::shared_ptr< NeptuneGraphEndpointProviderBase > endpointProvider=nullptr, const Aws::NeptuneGraph::NeptuneGraphClientConfiguration &clientConfiguration=Aws::NeptuneGraph::NeptuneGraphClientConfiguration())
virtual Model::ListGraphSnapshotsOutcome ListGraphSnapshots(const Model::ListGraphSnapshotsRequest &request={}) const
Model::GetGraphSnapshotOutcomeCallable GetGraphSnapshotCallable(const GetGraphSnapshotRequestT &request) const
virtual Model::DeleteGraphOutcome DeleteGraph(const Model::DeleteGraphRequest &request) const
Model::DeleteGraphOutcomeCallable DeleteGraphCallable(const DeleteGraphRequestT &request) const
void RestoreGraphFromSnapshotAsync(const RestoreGraphFromSnapshotRequestT &request, const RestoreGraphFromSnapshotResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::CreateGraphSnapshotOutcome CreateGraphSnapshot(const Model::CreateGraphSnapshotRequest &request) const
void ListPrivateGraphEndpointsAsync(const ListPrivateGraphEndpointsRequestT &request, const ListPrivateGraphEndpointsResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
Model::ListGraphSnapshotsOutcomeCallable ListGraphSnapshotsCallable(const ListGraphSnapshotsRequestT &request={}) const
void TagResourceAsync(const TagResourceRequestT &request, const TagResourceResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
Model::StartExportTaskOutcomeCallable StartExportTaskCallable(const StartExportTaskRequestT &request) const
virtual Model::GetGraphSnapshotOutcome GetGraphSnapshot(const Model::GetGraphSnapshotRequest &request) const
void GetImportTaskAsync(const GetImportTaskRequestT &request, const GetImportTaskResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
NeptuneGraphClient(const std::shared_ptr< Aws::Auth::AWSCredentialsProvider > &credentialsProvider, const Aws::Client::ClientConfiguration &clientConfiguration)
virtual Model::ListGraphsOutcome ListGraphs(const Model::ListGraphsRequest &request={}) const
void UntagResourceAsync(const UntagResourceRequestT &request, const UntagResourceResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::UpdateGraphOutcome UpdateGraph(const Model::UpdateGraphRequest &request) const
void ListQueriesAsync(const ListQueriesRequestT &request, const ListQueriesResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::ListTagsForResourceOutcome ListTagsForResource(const Model::ListTagsForResourceRequest &request) const
virtual Model::CancelExportTaskOutcome CancelExportTask(const Model::CancelExportTaskRequest &request) const
NeptuneGraphClient(const Aws::Auth::AWSCredentials &credentials, const Aws::Client::ClientConfiguration &clientConfiguration)
void ListGraphsAsync(const ListGraphsResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr, const ListGraphsRequestT &request={}) const
Model::CreateGraphOutcomeCallable CreateGraphCallable(const CreateGraphRequestT &request) const
virtual Model::GetGraphSummaryOutcome GetGraphSummary(const Model::GetGraphSummaryRequest &request) const
void StartGraphAsync(const StartGraphRequestT &request, const StartGraphResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
void StopGraphAsync(const StopGraphRequestT &request, const StopGraphResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
Model::GetPrivateGraphEndpointOutcomeCallable GetPrivateGraphEndpointCallable(const GetPrivateGraphEndpointRequestT &request) const
Model::DeletePrivateGraphEndpointOutcomeCallable DeletePrivateGraphEndpointCallable(const DeletePrivateGraphEndpointRequestT &request) const
virtual Model::ExecuteQueryOutcome ExecuteQuery(const Model::ExecuteQueryRequest &request) const
virtual Model::ResetGraphOutcome ResetGraph(const Model::ResetGraphRequest &request) const
Model::ExecuteQueryOutcomeCallable ExecuteQueryCallable(const ExecuteQueryRequestT &request) const
Model::CreatePrivateGraphEndpointOutcomeCallable CreatePrivateGraphEndpointCallable(const CreatePrivateGraphEndpointRequestT &request) const
void GetGraphAsync(const GetGraphRequestT &request, const GetGraphResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
void GetGraphSnapshotAsync(const GetGraphSnapshotRequestT &request, const GetGraphSnapshotResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::StartGraphOutcome StartGraph(const Model::StartGraphRequest &request) const
Model::TagResourceOutcomeCallable TagResourceCallable(const TagResourceRequestT &request) const
virtual Model::StartExportTaskOutcome StartExportTask(const Model::StartExportTaskRequest &request) const
Model::StartGraphOutcomeCallable StartGraphCallable(const StartGraphRequestT &request) const
std::shared_ptr< NeptuneGraphEndpointProviderBase > & accessEndpointProvider()
NeptuneGraphClient(const Aws::Auth::AWSCredentials &credentials, std::shared_ptr< NeptuneGraphEndpointProviderBase > endpointProvider=nullptr, const Aws::NeptuneGraph::NeptuneGraphClientConfiguration &clientConfiguration=Aws::NeptuneGraph::NeptuneGraphClientConfiguration())
virtual Model::DeleteGraphSnapshotOutcome DeleteGraphSnapshot(const Model::DeleteGraphSnapshotRequest &request) const
Model::ListQueriesOutcomeCallable ListQueriesCallable(const ListQueriesRequestT &request) const
void GetPrivateGraphEndpointAsync(const GetPrivateGraphEndpointRequestT &request, const GetPrivateGraphEndpointResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
void CancelExportTaskAsync(const CancelExportTaskRequestT &request, const CancelExportTaskResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::StartImportTaskOutcome StartImportTask(const Model::StartImportTaskRequest &request) const
virtual Model::UntagResourceOutcome UntagResource(const Model::UntagResourceRequest &request) const
virtual Model::GetQueryOutcome GetQuery(const Model::GetQueryRequest &request) const
Model::CancelImportTaskOutcomeCallable CancelImportTaskCallable(const CancelImportTaskRequestT &request) const
Model::StartImportTaskOutcomeCallable StartImportTaskCallable(const StartImportTaskRequestT &request) const
Model::CancelQueryOutcomeCallable CancelQueryCallable(const CancelQueryRequestT &request) const
void ListTagsForResourceAsync(const ListTagsForResourceRequestT &request, const ListTagsForResourceResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
void UpdateGraphAsync(const UpdateGraphRequestT &request, const UpdateGraphResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
Model::DeleteGraphSnapshotOutcomeCallable DeleteGraphSnapshotCallable(const DeleteGraphSnapshotRequestT &request) const
virtual Model::DeletePrivateGraphEndpointOutcome DeletePrivateGraphEndpoint(const Model::DeletePrivateGraphEndpointRequest &request) const
NeptuneGraphClient(const Aws::NeptuneGraph::NeptuneGraphClientConfiguration &clientConfiguration=Aws::NeptuneGraph::NeptuneGraphClientConfiguration(), std::shared_ptr< NeptuneGraphEndpointProviderBase > endpointProvider=nullptr)
void CreateGraphSnapshotAsync(const CreateGraphSnapshotRequestT &request, const CreateGraphSnapshotResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
void ExecuteQueryAsync(const ExecuteQueryRequestT &request, const ExecuteQueryResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::GetPrivateGraphEndpointOutcome GetPrivateGraphEndpoint(const Model::GetPrivateGraphEndpointRequest &request) const
void StartImportTaskAsync(const StartImportTaskRequestT &request, const StartImportTaskResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
Model::ListPrivateGraphEndpointsOutcomeCallable ListPrivateGraphEndpointsCallable(const ListPrivateGraphEndpointsRequestT &request) const
NeptuneGraphClientConfiguration ClientConfigurationType
NeptuneGraphEndpointProvider EndpointProviderType
void GetExportTaskAsync(const GetExportTaskRequestT &request, const GetExportTaskResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::GetImportTaskOutcome GetImportTask(const Model::GetImportTaskRequest &request) const
virtual Model::TagResourceOutcome TagResource(const Model::TagResourceRequest &request) const
void ResetGraphAsync(const ResetGraphRequestT &request, const ResetGraphResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::CancelQueryOutcome CancelQuery(const Model::CancelQueryRequest &request) const
Model::UntagResourceOutcomeCallable UntagResourceCallable(const UntagResourceRequestT &request) const
virtual Model::CreateGraphUsingImportTaskOutcome CreateGraphUsingImportTask(const Model::CreateGraphUsingImportTaskRequest &request) const
Model::ListGraphsOutcomeCallable ListGraphsCallable(const ListGraphsRequestT &request={}) const
void ListExportTasksAsync(const ListExportTasksResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr, const ListExportTasksRequestT &request={}) const
virtual Model::StopGraphOutcome StopGraph(const Model::StopGraphRequest &request) const
void DeleteGraphSnapshotAsync(const DeleteGraphSnapshotRequestT &request, const DeleteGraphSnapshotResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
virtual Model::CreatePrivateGraphEndpointOutcome CreatePrivateGraphEndpoint(const Model::CreatePrivateGraphEndpointRequest &request) const
Model::ListTagsForResourceOutcomeCallable ListTagsForResourceCallable(const ListTagsForResourceRequestT &request) const
virtual Model::ListPrivateGraphEndpointsOutcome ListPrivateGraphEndpoints(const Model::ListPrivateGraphEndpointsRequest &request) const
Model::StopGraphOutcomeCallable StopGraphCallable(const StopGraphRequestT &request) const
void CancelImportTaskAsync(const CancelImportTaskRequestT &request, const CancelImportTaskResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
void CreateGraphUsingImportTaskAsync(const CreateGraphUsingImportTaskRequestT &request, const CreateGraphUsingImportTaskResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
void ListImportTasksAsync(const ListImportTasksResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr, const ListImportTasksRequestT &request={}) const
void OverrideEndpoint(const Aws::String &endpoint)
void DeleteGraphAsync(const DeleteGraphRequestT &request, const DeleteGraphResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
void ListGraphSnapshotsAsync(const ListGraphSnapshotsResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr, const ListGraphSnapshotsRequestT &request={}) const
static const char * GetServiceName()
void CreatePrivateGraphEndpointAsync(const CreatePrivateGraphEndpointRequestT &request, const CreatePrivateGraphEndpointResponseReceivedHandler &handler, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &context=nullptr) const
NeptuneGraphClient(const Aws::Client::ClientConfiguration &clientConfiguration)
virtual Model::CreateGraphOutcome CreateGraph(const Model::CreateGraphRequest &request) const
virtual Model::CancelImportTaskOutcome CancelImportTask(const Model::CancelImportTaskRequest &request) const
Model::GetImportTaskOutcomeCallable GetImportTaskCallable(const GetImportTaskRequestT &request) const
std::future< CreateGraphUsingImportTaskOutcome > CreateGraphUsingImportTaskOutcomeCallable
std::future< ExecuteQueryOutcome > ExecuteQueryOutcomeCallable
std::future< CancelExportTaskOutcome > CancelExportTaskOutcomeCallable
std::future< StartGraphOutcome > StartGraphOutcomeCallable
std::future< ResetGraphOutcome > ResetGraphOutcomeCallable
std::future< CreateGraphOutcome > CreateGraphOutcomeCallable
std::future< ListImportTasksOutcome > ListImportTasksOutcomeCallable
std::future< UntagResourceOutcome > UntagResourceOutcomeCallable
std::future< RestoreGraphFromSnapshotOutcome > RestoreGraphFromSnapshotOutcomeCallable
std::future< GetGraphSnapshotOutcome > GetGraphSnapshotOutcomeCallable
std::future< CreateGraphSnapshotOutcome > CreateGraphSnapshotOutcomeCallable
std::future< DeleteGraphSnapshotOutcome > DeleteGraphSnapshotOutcomeCallable
std::future< ListTagsForResourceOutcome > ListTagsForResourceOutcomeCallable
std::future< StopGraphOutcome > StopGraphOutcomeCallable
std::future< ListPrivateGraphEndpointsOutcome > ListPrivateGraphEndpointsOutcomeCallable
std::future< GetExportTaskOutcome > GetExportTaskOutcomeCallable
std::future< CreatePrivateGraphEndpointOutcome > CreatePrivateGraphEndpointOutcomeCallable
std::future< GetQueryOutcome > GetQueryOutcomeCallable
std::future< GetImportTaskOutcome > GetImportTaskOutcomeCallable
std::future< ListExportTasksOutcome > ListExportTasksOutcomeCallable
std::future< CancelQueryOutcome > CancelQueryOutcomeCallable
std::future< DeletePrivateGraphEndpointOutcome > DeletePrivateGraphEndpointOutcomeCallable
std::future< GetGraphSummaryOutcome > GetGraphSummaryOutcomeCallable
std::future< TagResourceOutcome > TagResourceOutcomeCallable
std::future< ListQueriesOutcome > ListQueriesOutcomeCallable
std::future< DeleteGraphOutcome > DeleteGraphOutcomeCallable
std::future< GetGraphOutcome > GetGraphOutcomeCallable
std::future< CancelImportTaskOutcome > CancelImportTaskOutcomeCallable
std::future< ListGraphsOutcome > ListGraphsOutcomeCallable
std::future< ListGraphSnapshotsOutcome > ListGraphSnapshotsOutcomeCallable
std::future< StartImportTaskOutcome > StartImportTaskOutcomeCallable
std::future< GetPrivateGraphEndpointOutcome > GetPrivateGraphEndpointOutcomeCallable
std::future< StartExportTaskOutcome > StartExportTaskOutcomeCallable
std::future< UpdateGraphOutcome > UpdateGraphOutcomeCallable
std::function< void(const NeptuneGraphClient *, const Model::GetGraphSummaryRequest &, const Model::GetGraphSummaryOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> GetGraphSummaryResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::DeletePrivateGraphEndpointRequest &, const Model::DeletePrivateGraphEndpointOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> DeletePrivateGraphEndpointResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::StartExportTaskRequest &, const Model::StartExportTaskOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> StartExportTaskResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::RestoreGraphFromSnapshotRequest &, const Model::RestoreGraphFromSnapshotOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> RestoreGraphFromSnapshotResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::StartImportTaskRequest &, const Model::StartImportTaskOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> StartImportTaskResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::CancelImportTaskRequest &, const Model::CancelImportTaskOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> CancelImportTaskResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::GetPrivateGraphEndpointRequest &, const Model::GetPrivateGraphEndpointOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> GetPrivateGraphEndpointResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::GetGraphSnapshotRequest &, const Model::GetGraphSnapshotOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> GetGraphSnapshotResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::ListExportTasksRequest &, const Model::ListExportTasksOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> ListExportTasksResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::ListGraphsRequest &, const Model::ListGraphsOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> ListGraphsResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::TagResourceRequest &, const Model::TagResourceOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> TagResourceResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::StopGraphRequest &, const Model::StopGraphOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> StopGraphResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::DeleteGraphRequest &, const Model::DeleteGraphOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> DeleteGraphResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::GetExportTaskRequest &, const Model::GetExportTaskOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> GetExportTaskResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::StartGraphRequest &, const Model::StartGraphOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> StartGraphResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::CreateGraphRequest &, const Model::CreateGraphOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> CreateGraphResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::GetGraphRequest &, const Model::GetGraphOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> GetGraphResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::CreateGraphUsingImportTaskRequest &, const Model::CreateGraphUsingImportTaskOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> CreateGraphUsingImportTaskResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::ExecuteQueryRequest &, Model::ExecuteQueryOutcome, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> ExecuteQueryResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::ListTagsForResourceRequest &, const Model::ListTagsForResourceOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> ListTagsForResourceResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::CancelExportTaskRequest &, const Model::CancelExportTaskOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> CancelExportTaskResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::ListQueriesRequest &, const Model::ListQueriesOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> ListQueriesResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::GetQueryRequest &, const Model::GetQueryOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> GetQueryResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::CreateGraphSnapshotRequest &, const Model::CreateGraphSnapshotOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> CreateGraphSnapshotResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::ListGraphSnapshotsRequest &, const Model::ListGraphSnapshotsOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> ListGraphSnapshotsResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::ListImportTasksRequest &, const Model::ListImportTasksOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> ListImportTasksResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::UntagResourceRequest &, const Model::UntagResourceOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> UntagResourceResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::DeleteGraphSnapshotRequest &, const Model::DeleteGraphSnapshotOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> DeleteGraphSnapshotResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::CreatePrivateGraphEndpointRequest &, const Model::CreatePrivateGraphEndpointOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> CreatePrivateGraphEndpointResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::CancelQueryRequest &, const Model::CancelQueryOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> CancelQueryResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::GetImportTaskRequest &, const Model::GetImportTaskOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> GetImportTaskResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::UpdateGraphRequest &, const Model::UpdateGraphOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> UpdateGraphResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::ResetGraphRequest &, const Model::ResetGraphOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> ResetGraphResponseReceivedHandler
std::function< void(const NeptuneGraphClient *, const Model::ListPrivateGraphEndpointsRequest &, const Model::ListPrivateGraphEndpointsOutcome &, const std::shared_ptr< const Aws::Client::AsyncCallerContext > &)> ListPrivateGraphEndpointsResponseReceivedHandler
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String