@aws-sdk/client-neptune-graph 3.693.0 → 3.699.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +399 -26
  3. package/dist-es/NeptuneGraph.js +8 -0
  4. package/dist-es/commands/CancelExportTaskCommand.js +25 -0
  5. package/dist-es/commands/GetExportTaskCommand.js +25 -0
  6. package/dist-es/commands/ListExportTasksCommand.js +25 -0
  7. package/dist-es/commands/StartExportTaskCommand.js +25 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +22 -0
  10. package/dist-es/pagination/ListExportTasksPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_restJson1.js +149 -0
  13. package/dist-es/waiters/index.js +2 -0
  14. package/dist-es/waiters/waitForExportTaskCancelled.js +40 -0
  15. package/dist-es/waiters/waitForExportTaskSuccessful.js +58 -0
  16. package/dist-types/NeptuneGraph.d.ts +29 -0
  17. package/dist-types/NeptuneGraphClient.d.ts +6 -2
  18. package/dist-types/commands/CancelExportTaskCommand.d.ts +94 -0
  19. package/dist-types/commands/CancelImportTaskCommand.d.ts +3 -2
  20. package/dist-types/commands/CreateGraphUsingImportTaskCommand.d.ts +5 -3
  21. package/dist-types/commands/GetExportTaskCommand.d.ts +122 -0
  22. package/dist-types/commands/GetImportTaskCommand.d.ts +3 -2
  23. package/dist-types/commands/ListExportTasksCommand.d.ts +97 -0
  24. package/dist-types/commands/ListImportTasksCommand.d.ts +3 -2
  25. package/dist-types/commands/StartExportTaskCommand.d.ts +150 -0
  26. package/dist-types/commands/StartImportTaskCommand.d.ts +5 -3
  27. package/dist-types/commands/index.d.ts +4 -0
  28. package/dist-types/models/models_0.d.ts +493 -1
  29. package/dist-types/pagination/ListExportTasksPaginator.d.ts +7 -0
  30. package/dist-types/pagination/index.d.ts +1 -0
  31. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  32. package/dist-types/ts3.4/NeptuneGraph.d.ts +69 -0
  33. package/dist-types/ts3.4/NeptuneGraphClient.d.ts +24 -0
  34. package/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +50 -0
  35. package/dist-types/ts3.4/commands/GetExportTaskCommand.d.ts +47 -0
  36. package/dist-types/ts3.4/commands/ListExportTasksCommand.d.ts +50 -0
  37. package/dist-types/ts3.4/commands/StartExportTaskCommand.d.ts +50 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +125 -0
  40. package/dist-types/ts3.4/pagination/ListExportTasksPaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  43. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  44. package/dist-types/ts3.4/waiters/waitForExportTaskCancelled.d.ts +11 -0
  45. package/dist-types/ts3.4/waiters/waitForExportTaskSuccessful.d.ts +11 -0
  46. package/dist-types/waiters/index.d.ts +2 -0
  47. package/dist-types/waiters/waitForExportTaskCancelled.d.ts +14 -0
  48. package/dist-types/waiters/waitForExportTaskSuccessful.d.ts +14 -0
  49. package/package.json +37 -37
@@ -507,6 +507,40 @@ export interface TagResourceInput {
507
507
  tags: Record<string, string> | undefined;
508
508
  }
509
509
  export interface TagResourceOutput {}
510
+ export interface CancelExportTaskInput {
511
+ taskIdentifier: string | undefined;
512
+ }
513
+ export declare const ExportFormat: {
514
+ readonly CSV: "CSV";
515
+ readonly PARQUET: "PARQUET";
516
+ };
517
+ export type ExportFormat = (typeof ExportFormat)[keyof typeof ExportFormat];
518
+ export declare const ParquetType: {
519
+ readonly COLUMNAR: "COLUMNAR";
520
+ };
521
+ export type ParquetType = (typeof ParquetType)[keyof typeof ParquetType];
522
+ export declare const ExportTaskStatus: {
523
+ readonly CANCELLED: "CANCELLED";
524
+ readonly CANCELLING: "CANCELLING";
525
+ readonly DELETED: "DELETED";
526
+ readonly EXPORTING: "EXPORTING";
527
+ readonly FAILED: "FAILED";
528
+ readonly INITIALIZING: "INITIALIZING";
529
+ readonly SUCCEEDED: "SUCCEEDED";
530
+ };
531
+ export type ExportTaskStatus =
532
+ (typeof ExportTaskStatus)[keyof typeof ExportTaskStatus];
533
+ export interface CancelExportTaskOutput {
534
+ graphId: string | undefined;
535
+ roleArn: string | undefined;
536
+ taskId: string | undefined;
537
+ status: ExportTaskStatus | undefined;
538
+ format: ExportFormat | undefined;
539
+ destination: string | undefined;
540
+ kmsKeyIdentifier: string | undefined;
541
+ parquetType?: ParquetType | undefined;
542
+ statusReason?: string | undefined;
543
+ }
510
544
  export interface CancelImportTaskInput {
511
545
  taskIdentifier: string | undefined;
512
546
  }
@@ -514,12 +548,14 @@ export declare const Format: {
514
548
  readonly CSV: "CSV";
515
549
  readonly NTRIPLES: "NTRIPLES";
516
550
  readonly OPEN_CYPHER: "OPEN_CYPHER";
551
+ readonly PARQUET: "PARQUET";
517
552
  };
518
553
  export type Format = (typeof Format)[keyof typeof Format];
519
554
  export declare const ImportTaskStatus: {
520
555
  readonly ANALYZING_DATA: "ANALYZING_DATA";
521
556
  readonly CANCELLED: "CANCELLED";
522
557
  readonly CANCELLING: "CANCELLING";
558
+ readonly DELETED: "DELETED";
523
559
  readonly EXPORTING: "EXPORTING";
524
560
  readonly FAILED: "FAILED";
525
561
  readonly IMPORTING: "IMPORTING";
@@ -535,6 +571,7 @@ export interface CancelImportTaskOutput {
535
571
  taskId: string | undefined;
536
572
  source: string | undefined;
537
573
  format?: Format | undefined;
574
+ parquetType?: ParquetType | undefined;
538
575
  roleArn: string | undefined;
539
576
  status: ImportTaskStatus | undefined;
540
577
  }
@@ -581,6 +618,7 @@ export interface CreateGraphUsingImportTaskInput {
581
618
  failOnError?: boolean | undefined;
582
619
  source: string | undefined;
583
620
  format?: Format | undefined;
621
+ parquetType?: ParquetType | undefined;
584
622
  blankNodeHandling?: BlankNodeHandling | undefined;
585
623
  roleArn: string | undefined;
586
624
  }
@@ -589,10 +627,52 @@ export interface CreateGraphUsingImportTaskOutput {
589
627
  taskId: string | undefined;
590
628
  source: string | undefined;
591
629
  format?: Format | undefined;
630
+ parquetType?: ParquetType | undefined;
592
631
  roleArn: string | undefined;
593
632
  status: ImportTaskStatus | undefined;
594
633
  importOptions?: ImportOptions | undefined;
595
634
  }
635
+ export interface GetExportTaskInput {
636
+ taskIdentifier: string | undefined;
637
+ }
638
+ export declare const MultiValueHandlingType: {
639
+ readonly PICK_FIRST: "PICK_FIRST";
640
+ readonly TO_LIST: "TO_LIST";
641
+ };
642
+ export type MultiValueHandlingType =
643
+ (typeof MultiValueHandlingType)[keyof typeof MultiValueHandlingType];
644
+ export interface ExportFilterPropertyAttributes {
645
+ outputType?: string | undefined;
646
+ sourcePropertyName?: string | undefined;
647
+ multiValueHandling?: MultiValueHandlingType | undefined;
648
+ }
649
+ export interface ExportFilterElement {
650
+ properties?: Record<string, ExportFilterPropertyAttributes> | undefined;
651
+ }
652
+ export interface ExportFilter {
653
+ vertexFilter?: Record<string, ExportFilterElement> | undefined;
654
+ edgeFilter?: Record<string, ExportFilterElement> | undefined;
655
+ }
656
+ export interface ExportTaskDetails {
657
+ startTime: Date | undefined;
658
+ timeElapsedSeconds: number | undefined;
659
+ progressPercentage: number | undefined;
660
+ numVerticesWritten?: number | undefined;
661
+ numEdgesWritten?: number | undefined;
662
+ }
663
+ export interface GetExportTaskOutput {
664
+ graphId: string | undefined;
665
+ roleArn: string | undefined;
666
+ taskId: string | undefined;
667
+ status: ExportTaskStatus | undefined;
668
+ format: ExportFormat | undefined;
669
+ destination: string | undefined;
670
+ kmsKeyIdentifier: string | undefined;
671
+ parquetType?: ParquetType | undefined;
672
+ statusReason?: string | undefined;
673
+ exportTaskDetails?: ExportTaskDetails | undefined;
674
+ exportFilter?: ExportFilter | undefined;
675
+ }
596
676
  export interface GetImportTaskInput {
597
677
  taskIdentifier: string | undefined;
598
678
  }
@@ -611,6 +691,7 @@ export interface GetImportTaskOutput {
611
691
  taskId: string | undefined;
612
692
  source: string | undefined;
613
693
  format?: Format | undefined;
694
+ parquetType?: ParquetType | undefined;
614
695
  roleArn: string | undefined;
615
696
  status: ImportTaskStatus | undefined;
616
697
  importOptions?: ImportOptions | undefined;
@@ -618,6 +699,25 @@ export interface GetImportTaskOutput {
618
699
  attemptNumber?: number | undefined;
619
700
  statusReason?: string | undefined;
620
701
  }
702
+ export interface ListExportTasksInput {
703
+ nextToken?: string | undefined;
704
+ maxResults?: number | undefined;
705
+ }
706
+ export interface ExportTaskSummary {
707
+ graphId: string | undefined;
708
+ roleArn: string | undefined;
709
+ taskId: string | undefined;
710
+ status: ExportTaskStatus | undefined;
711
+ format: ExportFormat | undefined;
712
+ destination: string | undefined;
713
+ kmsKeyIdentifier: string | undefined;
714
+ parquetType?: ParquetType | undefined;
715
+ statusReason?: string | undefined;
716
+ }
717
+ export interface ListExportTasksOutput {
718
+ tasks: ExportTaskSummary[] | undefined;
719
+ nextToken?: string | undefined;
720
+ }
621
721
  export interface ListImportTasksInput {
622
722
  nextToken?: string | undefined;
623
723
  maxResults?: number | undefined;
@@ -627,6 +727,7 @@ export interface ImportTaskSummary {
627
727
  taskId: string | undefined;
628
728
  source: string | undefined;
629
729
  format?: Format | undefined;
730
+ parquetType?: ParquetType | undefined;
630
731
  roleArn: string | undefined;
631
732
  status: ImportTaskStatus | undefined;
632
733
  }
@@ -634,11 +735,34 @@ export interface ListImportTasksOutput {
634
735
  tasks: ImportTaskSummary[] | undefined;
635
736
  nextToken?: string | undefined;
636
737
  }
738
+ export interface StartExportTaskInput {
739
+ graphIdentifier: string | undefined;
740
+ roleArn: string | undefined;
741
+ format: ExportFormat | undefined;
742
+ destination: string | undefined;
743
+ kmsKeyIdentifier: string | undefined;
744
+ parquetType?: ParquetType | undefined;
745
+ exportFilter?: ExportFilter | undefined;
746
+ tags?: Record<string, string> | undefined;
747
+ }
748
+ export interface StartExportTaskOutput {
749
+ graphId: string | undefined;
750
+ roleArn: string | undefined;
751
+ taskId: string | undefined;
752
+ status: ExportTaskStatus | undefined;
753
+ format: ExportFormat | undefined;
754
+ destination: string | undefined;
755
+ kmsKeyIdentifier: string | undefined;
756
+ parquetType?: ParquetType | undefined;
757
+ statusReason?: string | undefined;
758
+ exportFilter?: ExportFilter | undefined;
759
+ }
637
760
  export interface StartImportTaskInput {
638
761
  importOptions?: ImportOptions | undefined;
639
762
  failOnError?: boolean | undefined;
640
763
  source: string | undefined;
641
764
  format?: Format | undefined;
765
+ parquetType?: ParquetType | undefined;
642
766
  blankNodeHandling?: BlankNodeHandling | undefined;
643
767
  graphIdentifier: string | undefined;
644
768
  roleArn: string | undefined;
@@ -648,6 +772,7 @@ export interface StartImportTaskOutput {
648
772
  taskId: string | undefined;
649
773
  source: string | undefined;
650
774
  format?: Format | undefined;
775
+ parquetType?: ParquetType | undefined;
651
776
  roleArn: string | undefined;
652
777
  status: ImportTaskStatus | undefined;
653
778
  importOptions?: ImportOptions | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListExportTasksCommandInput,
4
+ ListExportTasksCommandOutput,
5
+ } from "../commands/ListExportTasksCommand";
6
+ import { NeptuneGraphPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListExportTasks: (
8
+ config: NeptuneGraphPaginationConfiguration,
9
+ input: ListExportTasksCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListExportTasksCommandOutput>;
@@ -1,4 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListExportTasksPaginator";
2
3
  export * from "./ListGraphSnapshotsPaginator";
3
4
  export * from "./ListGraphsPaginator";
4
5
  export * from "./ListImportTasksPaginator";
@@ -6,6 +6,10 @@ import {
6
6
  SdkStreamSerdeContext as __SdkStreamSerdeContext,
7
7
  SerdeContext as __SerdeContext,
8
8
  } from "@smithy/types";
9
+ import {
10
+ CancelExportTaskCommandInput,
11
+ CancelExportTaskCommandOutput,
12
+ } from "../commands/CancelExportTaskCommand";
9
13
  import {
10
14
  CancelImportTaskCommandInput,
11
15
  CancelImportTaskCommandOutput,
@@ -46,6 +50,10 @@ import {
46
50
  ExecuteQueryCommandInput,
47
51
  ExecuteQueryCommandOutput,
48
52
  } from "../commands/ExecuteQueryCommand";
53
+ import {
54
+ GetExportTaskCommandInput,
55
+ GetExportTaskCommandOutput,
56
+ } from "../commands/GetExportTaskCommand";
49
57
  import {
50
58
  GetGraphCommandInput,
51
59
  GetGraphCommandOutput,
@@ -70,6 +78,10 @@ import {
70
78
  GetQueryCommandInput,
71
79
  GetQueryCommandOutput,
72
80
  } from "../commands/GetQueryCommand";
81
+ import {
82
+ ListExportTasksCommandInput,
83
+ ListExportTasksCommandOutput,
84
+ } from "../commands/ListExportTasksCommand";
73
85
  import {
74
86
  ListGraphsCommandInput,
75
87
  ListGraphsCommandOutput,
@@ -102,6 +114,10 @@ import {
102
114
  RestoreGraphFromSnapshotCommandInput,
103
115
  RestoreGraphFromSnapshotCommandOutput,
104
116
  } from "../commands/RestoreGraphFromSnapshotCommand";
117
+ import {
118
+ StartExportTaskCommandInput,
119
+ StartExportTaskCommandOutput,
120
+ } from "../commands/StartExportTaskCommand";
105
121
  import {
106
122
  StartImportTaskCommandInput,
107
123
  StartImportTaskCommandOutput,
@@ -118,6 +134,10 @@ import {
118
134
  UpdateGraphCommandInput,
119
135
  UpdateGraphCommandOutput,
120
136
  } from "../commands/UpdateGraphCommand";
137
+ export declare const se_CancelExportTaskCommand: (
138
+ input: CancelExportTaskCommandInput,
139
+ context: __SerdeContext
140
+ ) => Promise<__HttpRequest>;
121
141
  export declare const se_CancelImportTaskCommand: (
122
142
  input: CancelImportTaskCommandInput,
123
143
  context: __SerdeContext
@@ -158,6 +178,10 @@ export declare const se_ExecuteQueryCommand: (
158
178
  input: ExecuteQueryCommandInput,
159
179
  context: __SerdeContext
160
180
  ) => Promise<__HttpRequest>;
181
+ export declare const se_GetExportTaskCommand: (
182
+ input: GetExportTaskCommandInput,
183
+ context: __SerdeContext
184
+ ) => Promise<__HttpRequest>;
161
185
  export declare const se_GetGraphCommand: (
162
186
  input: GetGraphCommandInput,
163
187
  context: __SerdeContext
@@ -182,6 +206,10 @@ export declare const se_GetQueryCommand: (
182
206
  input: GetQueryCommandInput,
183
207
  context: __SerdeContext
184
208
  ) => Promise<__HttpRequest>;
209
+ export declare const se_ListExportTasksCommand: (
210
+ input: ListExportTasksCommandInput,
211
+ context: __SerdeContext
212
+ ) => Promise<__HttpRequest>;
185
213
  export declare const se_ListGraphsCommand: (
186
214
  input: ListGraphsCommandInput,
187
215
  context: __SerdeContext
@@ -214,6 +242,10 @@ export declare const se_RestoreGraphFromSnapshotCommand: (
214
242
  input: RestoreGraphFromSnapshotCommandInput,
215
243
  context: __SerdeContext
216
244
  ) => Promise<__HttpRequest>;
245
+ export declare const se_StartExportTaskCommand: (
246
+ input: StartExportTaskCommandInput,
247
+ context: __SerdeContext
248
+ ) => Promise<__HttpRequest>;
217
249
  export declare const se_StartImportTaskCommand: (
218
250
  input: StartImportTaskCommandInput,
219
251
  context: __SerdeContext
@@ -230,6 +262,10 @@ export declare const se_UpdateGraphCommand: (
230
262
  input: UpdateGraphCommandInput,
231
263
  context: __SerdeContext
232
264
  ) => Promise<__HttpRequest>;
265
+ export declare const de_CancelExportTaskCommand: (
266
+ output: __HttpResponse,
267
+ context: __SerdeContext
268
+ ) => Promise<CancelExportTaskCommandOutput>;
233
269
  export declare const de_CancelImportTaskCommand: (
234
270
  output: __HttpResponse,
235
271
  context: __SerdeContext
@@ -270,6 +306,10 @@ export declare const de_ExecuteQueryCommand: (
270
306
  output: __HttpResponse,
271
307
  context: __SerdeContext & __SdkStreamSerdeContext
272
308
  ) => Promise<ExecuteQueryCommandOutput>;
309
+ export declare const de_GetExportTaskCommand: (
310
+ output: __HttpResponse,
311
+ context: __SerdeContext
312
+ ) => Promise<GetExportTaskCommandOutput>;
273
313
  export declare const de_GetGraphCommand: (
274
314
  output: __HttpResponse,
275
315
  context: __SerdeContext
@@ -294,6 +334,10 @@ export declare const de_GetQueryCommand: (
294
334
  output: __HttpResponse,
295
335
  context: __SerdeContext
296
336
  ) => Promise<GetQueryCommandOutput>;
337
+ export declare const de_ListExportTasksCommand: (
338
+ output: __HttpResponse,
339
+ context: __SerdeContext
340
+ ) => Promise<ListExportTasksCommandOutput>;
297
341
  export declare const de_ListGraphsCommand: (
298
342
  output: __HttpResponse,
299
343
  context: __SerdeContext
@@ -326,6 +370,10 @@ export declare const de_RestoreGraphFromSnapshotCommand: (
326
370
  output: __HttpResponse,
327
371
  context: __SerdeContext
328
372
  ) => Promise<RestoreGraphFromSnapshotCommandOutput>;
373
+ export declare const de_StartExportTaskCommand: (
374
+ output: __HttpResponse,
375
+ context: __SerdeContext
376
+ ) => Promise<StartExportTaskCommandOutput>;
329
377
  export declare const de_StartImportTaskCommand: (
330
378
  output: __HttpResponse,
331
379
  context: __SerdeContext
@@ -1,3 +1,5 @@
1
+ export * from "./waitForExportTaskCancelled";
2
+ export * from "./waitForExportTaskSuccessful";
1
3
  export * from "./waitForGraphAvailable";
2
4
  export * from "./waitForGraphDeleted";
3
5
  export * from "./waitForGraphSnapshotAvailable";
@@ -0,0 +1,11 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetExportTaskCommandInput } from "../commands/GetExportTaskCommand";
3
+ import { NeptuneGraphClient } from "../NeptuneGraphClient";
4
+ export declare const waitForExportTaskCancelled: (
5
+ params: WaiterConfiguration<NeptuneGraphClient>,
6
+ input: GetExportTaskCommandInput
7
+ ) => Promise<WaiterResult>;
8
+ export declare const waitUntilExportTaskCancelled: (
9
+ params: WaiterConfiguration<NeptuneGraphClient>,
10
+ input: GetExportTaskCommandInput
11
+ ) => Promise<WaiterResult>;
@@ -0,0 +1,11 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetExportTaskCommandInput } from "../commands/GetExportTaskCommand";
3
+ import { NeptuneGraphClient } from "../NeptuneGraphClient";
4
+ export declare const waitForExportTaskSuccessful: (
5
+ params: WaiterConfiguration<NeptuneGraphClient>,
6
+ input: GetExportTaskCommandInput
7
+ ) => Promise<WaiterResult>;
8
+ export declare const waitUntilExportTaskSuccessful: (
9
+ params: WaiterConfiguration<NeptuneGraphClient>,
10
+ input: GetExportTaskCommandInput
11
+ ) => Promise<WaiterResult>;
@@ -1,3 +1,5 @@
1
+ export * from "./waitForExportTaskCancelled";
2
+ export * from "./waitForExportTaskSuccessful";
1
3
  export * from "./waitForGraphAvailable";
2
4
  export * from "./waitForGraphDeleted";
3
5
  export * from "./waitForGraphSnapshotAvailable";
@@ -0,0 +1,14 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetExportTaskCommandInput } from "../commands/GetExportTaskCommand";
3
+ import { NeptuneGraphClient } from "../NeptuneGraphClient";
4
+ /**
5
+ * Wait until Export Task is Cancelled
6
+ * @deprecated Use waitUntilExportTaskCancelled instead. waitForExportTaskCancelled does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForExportTaskCancelled: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetExportTaskCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ * Wait until Export Task is Cancelled
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to GetExportTaskCommand for polling.
13
+ */
14
+ export declare const waitUntilExportTaskCancelled: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetExportTaskCommandInput) => Promise<WaiterResult>;
@@ -0,0 +1,14 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetExportTaskCommandInput } from "../commands/GetExportTaskCommand";
3
+ import { NeptuneGraphClient } from "../NeptuneGraphClient";
4
+ /**
5
+ * Wait until Export Task is Successful
6
+ * @deprecated Use waitUntilExportTaskSuccessful instead. waitForExportTaskSuccessful does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForExportTaskSuccessful: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetExportTaskCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ * Wait until Export Task is Successful
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to GetExportTaskCommand for polling.
13
+ */
14
+ export declare const waitUntilExportTaskSuccessful: (params: WaiterConfiguration<NeptuneGraphClient>, input: GetExportTaskCommandInput) => Promise<WaiterResult>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-neptune-graph",
3
3
  "description": "AWS SDK for JavaScript Neptune Graph Client for Node.js, Browser and React Native",
4
- "version": "3.693.0",
4
+ "version": "3.699.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-neptune-graph",
@@ -20,46 +20,46 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.693.0",
24
- "@aws-sdk/client-sts": "3.693.0",
25
- "@aws-sdk/core": "3.693.0",
26
- "@aws-sdk/credential-provider-node": "3.693.0",
27
- "@aws-sdk/middleware-host-header": "3.693.0",
28
- "@aws-sdk/middleware-logger": "3.693.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.693.0",
30
- "@aws-sdk/middleware-user-agent": "3.693.0",
31
- "@aws-sdk/region-config-resolver": "3.693.0",
32
- "@aws-sdk/types": "3.692.0",
33
- "@aws-sdk/util-endpoints": "3.693.0",
34
- "@aws-sdk/util-user-agent-browser": "3.693.0",
35
- "@aws-sdk/util-user-agent-node": "3.693.0",
36
- "@smithy/config-resolver": "^3.0.11",
37
- "@smithy/core": "^2.5.2",
38
- "@smithy/fetch-http-handler": "^4.1.0",
39
- "@smithy/hash-node": "^3.0.9",
40
- "@smithy/invalid-dependency": "^3.0.9",
41
- "@smithy/middleware-content-length": "^3.0.11",
42
- "@smithy/middleware-endpoint": "^3.2.2",
43
- "@smithy/middleware-retry": "^3.0.26",
44
- "@smithy/middleware-serde": "^3.0.9",
45
- "@smithy/middleware-stack": "^3.0.9",
46
- "@smithy/node-config-provider": "^3.1.10",
47
- "@smithy/node-http-handler": "^3.3.0",
48
- "@smithy/protocol-http": "^4.1.6",
49
- "@smithy/smithy-client": "^3.4.3",
50
- "@smithy/types": "^3.7.0",
51
- "@smithy/url-parser": "^3.0.9",
23
+ "@aws-sdk/client-sso-oidc": "3.699.0",
24
+ "@aws-sdk/client-sts": "3.699.0",
25
+ "@aws-sdk/core": "3.696.0",
26
+ "@aws-sdk/credential-provider-node": "3.699.0",
27
+ "@aws-sdk/middleware-host-header": "3.696.0",
28
+ "@aws-sdk/middleware-logger": "3.696.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
+ "@aws-sdk/middleware-user-agent": "3.696.0",
31
+ "@aws-sdk/region-config-resolver": "3.696.0",
32
+ "@aws-sdk/types": "3.696.0",
33
+ "@aws-sdk/util-endpoints": "3.696.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.696.0",
35
+ "@aws-sdk/util-user-agent-node": "3.696.0",
36
+ "@smithy/config-resolver": "^3.0.12",
37
+ "@smithy/core": "^2.5.3",
38
+ "@smithy/fetch-http-handler": "^4.1.1",
39
+ "@smithy/hash-node": "^3.0.10",
40
+ "@smithy/invalid-dependency": "^3.0.10",
41
+ "@smithy/middleware-content-length": "^3.0.12",
42
+ "@smithy/middleware-endpoint": "^3.2.3",
43
+ "@smithy/middleware-retry": "^3.0.27",
44
+ "@smithy/middleware-serde": "^3.0.10",
45
+ "@smithy/middleware-stack": "^3.0.10",
46
+ "@smithy/node-config-provider": "^3.1.11",
47
+ "@smithy/node-http-handler": "^3.3.1",
48
+ "@smithy/protocol-http": "^4.1.7",
49
+ "@smithy/smithy-client": "^3.4.4",
50
+ "@smithy/types": "^3.7.1",
51
+ "@smithy/url-parser": "^3.0.10",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.26",
56
- "@smithy/util-defaults-mode-node": "^3.0.26",
57
- "@smithy/util-endpoints": "^2.1.5",
58
- "@smithy/util-middleware": "^3.0.9",
59
- "@smithy/util-retry": "^3.0.9",
60
- "@smithy/util-stream": "^3.3.0",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.27",
56
+ "@smithy/util-defaults-mode-node": "^3.0.27",
57
+ "@smithy/util-endpoints": "^2.1.6",
58
+ "@smithy/util-middleware": "^3.0.10",
59
+ "@smithy/util-retry": "^3.0.10",
60
+ "@smithy/util-stream": "^3.3.1",
61
61
  "@smithy/util-utf8": "^3.0.0",
62
- "@smithy/util-waiter": "^3.1.8",
62
+ "@smithy/util-waiter": "^3.1.9",
63
63
  "tslib": "^2.6.2"
64
64
  },
65
65
  "devDependencies": {