@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
@@ -1921,6 +1921,107 @@ export interface TagResourceInput {
1921
1921
  */
1922
1922
  export interface TagResourceOutput {
1923
1923
  }
1924
+ /**
1925
+ * @public
1926
+ */
1927
+ export interface CancelExportTaskInput {
1928
+ /**
1929
+ * <p>The unique identifier of the export task.</p>
1930
+ * @public
1931
+ */
1932
+ taskIdentifier: string | undefined;
1933
+ }
1934
+ /**
1935
+ * @public
1936
+ * @enum
1937
+ */
1938
+ export declare const ExportFormat: {
1939
+ readonly CSV: "CSV";
1940
+ readonly PARQUET: "PARQUET";
1941
+ };
1942
+ /**
1943
+ * @public
1944
+ */
1945
+ export type ExportFormat = (typeof ExportFormat)[keyof typeof ExportFormat];
1946
+ /**
1947
+ * @public
1948
+ * @enum
1949
+ */
1950
+ export declare const ParquetType: {
1951
+ readonly COLUMNAR: "COLUMNAR";
1952
+ };
1953
+ /**
1954
+ * @public
1955
+ */
1956
+ export type ParquetType = (typeof ParquetType)[keyof typeof ParquetType];
1957
+ /**
1958
+ * @public
1959
+ * @enum
1960
+ */
1961
+ export declare const ExportTaskStatus: {
1962
+ readonly CANCELLED: "CANCELLED";
1963
+ readonly CANCELLING: "CANCELLING";
1964
+ readonly DELETED: "DELETED";
1965
+ readonly EXPORTING: "EXPORTING";
1966
+ readonly FAILED: "FAILED";
1967
+ readonly INITIALIZING: "INITIALIZING";
1968
+ readonly SUCCEEDED: "SUCCEEDED";
1969
+ };
1970
+ /**
1971
+ * @public
1972
+ */
1973
+ export type ExportTaskStatus = (typeof ExportTaskStatus)[keyof typeof ExportTaskStatus];
1974
+ /**
1975
+ * @public
1976
+ */
1977
+ export interface CancelExportTaskOutput {
1978
+ /**
1979
+ * <p>The source graph identifier of the cancelled export task.</p>
1980
+ * @public
1981
+ */
1982
+ graphId: string | undefined;
1983
+ /**
1984
+ * <p>The ARN of the IAM role that will allow the exporting of data to the destination.</p>
1985
+ * @public
1986
+ */
1987
+ roleArn: string | undefined;
1988
+ /**
1989
+ * <p>The unique identifier of the export task.</p>
1990
+ * @public
1991
+ */
1992
+ taskId: string | undefined;
1993
+ /**
1994
+ * <p>The current status of the export task. The status is <code>CANCELLING</code> when the
1995
+ * export task is cancelled.</p>
1996
+ * @public
1997
+ */
1998
+ status: ExportTaskStatus | undefined;
1999
+ /**
2000
+ * <p>The format of the cancelled export task.</p>
2001
+ * @public
2002
+ */
2003
+ format: ExportFormat | undefined;
2004
+ /**
2005
+ * <p>The Amazon S3 URI of the cancelled export task where data will be exported to.</p>
2006
+ * @public
2007
+ */
2008
+ destination: string | undefined;
2009
+ /**
2010
+ * <p>The KMS key identifier of the cancelled export task.</p>
2011
+ * @public
2012
+ */
2013
+ kmsKeyIdentifier: string | undefined;
2014
+ /**
2015
+ * <p>The parquet type of the cancelled export task.</p>
2016
+ * @public
2017
+ */
2018
+ parquetType?: ParquetType | undefined;
2019
+ /**
2020
+ * <p>The reason that the export task has this status value.</p>
2021
+ * @public
2022
+ */
2023
+ statusReason?: string | undefined;
2024
+ }
1924
2025
  /**
1925
2026
  * @public
1926
2027
  */
@@ -1939,6 +2040,7 @@ export declare const Format: {
1939
2040
  readonly CSV: "CSV";
1940
2041
  readonly NTRIPLES: "NTRIPLES";
1941
2042
  readonly OPEN_CYPHER: "OPEN_CYPHER";
2043
+ readonly PARQUET: "PARQUET";
1942
2044
  };
1943
2045
  /**
1944
2046
  * @public
@@ -1952,6 +2054,7 @@ export declare const ImportTaskStatus: {
1952
2054
  readonly ANALYZING_DATA: "ANALYZING_DATA";
1953
2055
  readonly CANCELLED: "CANCELLED";
1954
2056
  readonly CANCELLING: "CANCELLING";
2057
+ readonly DELETED: "DELETED";
1955
2058
  readonly EXPORTING: "EXPORTING";
1956
2059
  readonly FAILED: "FAILED";
1957
2060
  readonly IMPORTING: "IMPORTING";
@@ -1992,6 +2095,11 @@ export interface CancelImportTaskOutput {
1992
2095
  * @public
1993
2096
  */
1994
2097
  format?: Format | undefined;
2098
+ /**
2099
+ * <p>The parquet type of the cancelled import task.</p>
2100
+ * @public
2101
+ */
2102
+ parquetType?: ParquetType | undefined;
1995
2103
  /**
1996
2104
  * <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
1997
2105
  * @public
@@ -2171,6 +2279,11 @@ export interface CreateGraphUsingImportTaskInput {
2171
2279
  * @public
2172
2280
  */
2173
2281
  format?: Format | undefined;
2282
+ /**
2283
+ * <p>The parquet type of the import task.</p>
2284
+ * @public
2285
+ */
2286
+ parquetType?: ParquetType | undefined;
2174
2287
  /**
2175
2288
  * <p>The method to handle blank nodes in the dataset. Currently, only <code>convertToIri</code> is supported,
2176
2289
  * meaning blank nodes are converted to unique IRIs at load time. Must be provided when format is <code>ntriples</code>.
@@ -2213,6 +2326,11 @@ export interface CreateGraphUsingImportTaskOutput {
2213
2326
  * @public
2214
2327
  */
2215
2328
  format?: Format | undefined;
2329
+ /**
2330
+ * <p>The parquet type of the import task.</p>
2331
+ * @public
2332
+ */
2333
+ parquetType?: ParquetType | undefined;
2216
2334
  /**
2217
2335
  * <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
2218
2336
  * @public
@@ -2232,6 +2350,179 @@ export interface CreateGraphUsingImportTaskOutput {
2232
2350
  */
2233
2351
  importOptions?: ImportOptions | undefined;
2234
2352
  }
2353
+ /**
2354
+ * @public
2355
+ */
2356
+ export interface GetExportTaskInput {
2357
+ /**
2358
+ * <p>The unique identifier of the export task.</p>
2359
+ * @public
2360
+ */
2361
+ taskIdentifier: string | undefined;
2362
+ }
2363
+ /**
2364
+ * @public
2365
+ * @enum
2366
+ */
2367
+ export declare const MultiValueHandlingType: {
2368
+ readonly PICK_FIRST: "PICK_FIRST";
2369
+ readonly TO_LIST: "TO_LIST";
2370
+ };
2371
+ /**
2372
+ * @public
2373
+ */
2374
+ export type MultiValueHandlingType = (typeof MultiValueHandlingType)[keyof typeof MultiValueHandlingType];
2375
+ /**
2376
+ * <p>A structure representing a property's attributes. It is a map object of outputType, sourcePropertyName
2377
+ * and multiValueHandling.</p>
2378
+ * @public
2379
+ */
2380
+ export interface ExportFilterPropertyAttributes {
2381
+ /**
2382
+ * <p>Specifies the data type to use for the property in the exported data (e.g. "String", "Int", "Float").
2383
+ * If a type is not provided, the export process will determine the type. If a given property is present as multiple
2384
+ * types (e.g. one vertex has "height" stored as a double, and another edge has it stored as a string), the type
2385
+ * will be of Any type, otherwise, it will be the type of the property as present in vertices.</p>
2386
+ * @public
2387
+ */
2388
+ outputType?: string | undefined;
2389
+ /**
2390
+ * <p>The name of the property as it exists in the original graph data. If not provided, it is assumed that the key
2391
+ * matches the desired sourcePropertyName.</p>
2392
+ * @public
2393
+ */
2394
+ sourcePropertyName?: string | undefined;
2395
+ /**
2396
+ * <p>Specifies how to handle properties that have multiple values. Can be either <code>TO_LIST</code> to export all
2397
+ * values as a list, or <code>PICK_FIRST</code> to export the first value encountered. If not specified, the default
2398
+ * value is <code>PICK_FIRST</code>.</p>
2399
+ * @public
2400
+ */
2401
+ multiValueHandling?: MultiValueHandlingType | undefined;
2402
+ }
2403
+ /**
2404
+ * <p>Specifies whihc properties of that label should be included in the export.</p>
2405
+ * @public
2406
+ */
2407
+ export interface ExportFilterElement {
2408
+ /**
2409
+ * <p>Each property is defined by a key-value pair, where the key is the desired output property name (e.g. "name"),
2410
+ * and the value is an object.</p>
2411
+ * @public
2412
+ */
2413
+ properties?: Record<string, ExportFilterPropertyAttributes> | undefined;
2414
+ }
2415
+ /**
2416
+ * <p>This is the top-level field for specifying vertex or edge filters. If the ExportFilter is not provided,
2417
+ * then all properties for all labels will be exported. If the ExportFilter is provided but is an empty object,
2418
+ * then no data will be exported.</p>
2419
+ * @public
2420
+ */
2421
+ export interface ExportFilter {
2422
+ /**
2423
+ * <p>Used to specify filters on a per-label basis for vertices. This allows you to control which vertex labels
2424
+ * and properties are included in the export.</p>
2425
+ * @public
2426
+ */
2427
+ vertexFilter?: Record<string, ExportFilterElement> | undefined;
2428
+ /**
2429
+ * <p>Used to specify filters on a per-label basis for edges. This allows you to control which edge labels
2430
+ * and properties are included in the export.</p>
2431
+ * @public
2432
+ */
2433
+ edgeFilter?: Record<string, ExportFilterElement> | undefined;
2434
+ }
2435
+ /**
2436
+ * <p>Contains details about the specified export task.</p>
2437
+ * @public
2438
+ */
2439
+ export interface ExportTaskDetails {
2440
+ /**
2441
+ * <p>The start time of the export task.</p>
2442
+ * @public
2443
+ */
2444
+ startTime: Date | undefined;
2445
+ /**
2446
+ * <p>The time elapsed, in seconds, since the start time of the export task.</p>
2447
+ * @public
2448
+ */
2449
+ timeElapsedSeconds: number | undefined;
2450
+ /**
2451
+ * <p>The number of progress percentage of the export task.</p>
2452
+ * @public
2453
+ */
2454
+ progressPercentage: number | undefined;
2455
+ /**
2456
+ * <p>The number of exported vertices.</p>
2457
+ * @public
2458
+ */
2459
+ numVerticesWritten?: number | undefined;
2460
+ /**
2461
+ * <p>The number of exported edges.</p>
2462
+ * @public
2463
+ */
2464
+ numEdgesWritten?: number | undefined;
2465
+ }
2466
+ /**
2467
+ * @public
2468
+ */
2469
+ export interface GetExportTaskOutput {
2470
+ /**
2471
+ * <p>The source graph identifier of the export task.</p>
2472
+ * @public
2473
+ */
2474
+ graphId: string | undefined;
2475
+ /**
2476
+ * <p>The ARN of the IAM role that will allow data to be exported to the destination.</p>
2477
+ * @public
2478
+ */
2479
+ roleArn: string | undefined;
2480
+ /**
2481
+ * <p>The unique identifier of the export task.</p>
2482
+ * @public
2483
+ */
2484
+ taskId: string | undefined;
2485
+ /**
2486
+ * <p>The current status of the export task.</p>
2487
+ * @public
2488
+ */
2489
+ status: ExportTaskStatus | undefined;
2490
+ /**
2491
+ * <p>The format of the export task.</p>
2492
+ * @public
2493
+ */
2494
+ format: ExportFormat | undefined;
2495
+ /**
2496
+ * <p>The Amazon S3 URI of the export task where data will be exported.</p>
2497
+ * @public
2498
+ */
2499
+ destination: string | undefined;
2500
+ /**
2501
+ * <p>The KMS key identifier of the export task.</p>
2502
+ * @public
2503
+ */
2504
+ kmsKeyIdentifier: string | undefined;
2505
+ /**
2506
+ * <p>The parquet type of the export task.</p>
2507
+ * @public
2508
+ */
2509
+ parquetType?: ParquetType | undefined;
2510
+ /**
2511
+ * <p>The reason that the export task has this status value.</p>
2512
+ * @public
2513
+ */
2514
+ statusReason?: string | undefined;
2515
+ /**
2516
+ * <p>The details of the export task.</p>
2517
+ * @public
2518
+ */
2519
+ exportTaskDetails?: ExportTaskDetails | undefined;
2520
+ /**
2521
+ * <p>The export filter of the export task.</p>
2522
+ * @public
2523
+ */
2524
+ exportFilter?: ExportFilter | undefined;
2525
+ }
2235
2526
  /**
2236
2527
  * @public
2237
2528
  */
@@ -2316,6 +2607,11 @@ export interface GetImportTaskOutput {
2316
2607
  * @public
2317
2608
  */
2318
2609
  format?: Format | undefined;
2610
+ /**
2611
+ * <p>The parquet type of the import task.</p>
2612
+ * @public
2613
+ */
2614
+ parquetType?: ParquetType | undefined;
2319
2615
  /**
2320
2616
  * <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
2321
2617
  * @public
@@ -2397,7 +2693,7 @@ export interface GetImportTaskOutput {
2397
2693
  */
2398
2694
  importTaskDetails?: ImportTaskDetails | undefined;
2399
2695
  /**
2400
- * <p>The number of the current attempt to execute the import task.</p>
2696
+ * <p>The number of the current attempts to execute the import task.</p>
2401
2697
  * @public
2402
2698
  */
2403
2699
  attemptNumber?: number | undefined;
@@ -2407,6 +2703,87 @@ export interface GetImportTaskOutput {
2407
2703
  */
2408
2704
  statusReason?: string | undefined;
2409
2705
  }
2706
+ /**
2707
+ * @public
2708
+ */
2709
+ export interface ListExportTasksInput {
2710
+ /**
2711
+ * <p>Pagination token used to paginate input.</p>
2712
+ * @public
2713
+ */
2714
+ nextToken?: string | undefined;
2715
+ /**
2716
+ * <p>The maximum number of export tasks to return.</p>
2717
+ * @public
2718
+ */
2719
+ maxResults?: number | undefined;
2720
+ }
2721
+ /**
2722
+ * <p>Provides details about an export task.</p>
2723
+ * @public
2724
+ */
2725
+ export interface ExportTaskSummary {
2726
+ /**
2727
+ * <p>The source graph identifier of the export task.</p>
2728
+ * @public
2729
+ */
2730
+ graphId: string | undefined;
2731
+ /**
2732
+ * <p>The ARN of the IAM role that will allow the data to be exported to the destination.</p>
2733
+ * @public
2734
+ */
2735
+ roleArn: string | undefined;
2736
+ /**
2737
+ * <p>The unique identifier of the export task.</p>
2738
+ * @public
2739
+ */
2740
+ taskId: string | undefined;
2741
+ /**
2742
+ * <p>The current status of the export task.</p>
2743
+ * @public
2744
+ */
2745
+ status: ExportTaskStatus | undefined;
2746
+ /**
2747
+ * <p>The format of the export task.</p>
2748
+ * @public
2749
+ */
2750
+ format: ExportFormat | undefined;
2751
+ /**
2752
+ * <p>The Amazon S3 URI of the export task where data will be exported to.</p>
2753
+ * @public
2754
+ */
2755
+ destination: string | undefined;
2756
+ /**
2757
+ * <p>The KMS key identifier of the export task.</p>
2758
+ * @public
2759
+ */
2760
+ kmsKeyIdentifier: string | undefined;
2761
+ /**
2762
+ * <p>The parquet type of the export task.</p>
2763
+ * @public
2764
+ */
2765
+ parquetType?: ParquetType | undefined;
2766
+ /**
2767
+ * <p>The reason that the export task has this status value.</p>
2768
+ * @public
2769
+ */
2770
+ statusReason?: string | undefined;
2771
+ }
2772
+ /**
2773
+ * @public
2774
+ */
2775
+ export interface ListExportTasksOutput {
2776
+ /**
2777
+ * <p>The requested list of export tasks.</p>
2778
+ * @public
2779
+ */
2780
+ tasks: ExportTaskSummary[] | undefined;
2781
+ /**
2782
+ * <p>Pagination token used to paginate output.</p>
2783
+ * @public
2784
+ */
2785
+ nextToken?: string | undefined;
2786
+ }
2410
2787
  /**
2411
2788
  * @public
2412
2789
  */
@@ -2459,6 +2836,11 @@ export interface ImportTaskSummary {
2459
2836
  * @public
2460
2837
  */
2461
2838
  format?: Format | undefined;
2839
+ /**
2840
+ * <p>The parquet type of the import task.</p>
2841
+ * @public
2842
+ */
2843
+ parquetType?: ParquetType | undefined;
2462
2844
  /**
2463
2845
  * <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
2464
2846
  * @public
@@ -2488,6 +2870,106 @@ export interface ListImportTasksOutput {
2488
2870
  */
2489
2871
  nextToken?: string | undefined;
2490
2872
  }
2873
+ /**
2874
+ * @public
2875
+ */
2876
+ export interface StartExportTaskInput {
2877
+ /**
2878
+ * <p>The source graph identifier of the export task.</p>
2879
+ * @public
2880
+ */
2881
+ graphIdentifier: string | undefined;
2882
+ /**
2883
+ * <p>The ARN of the IAM role that will allow data to be exported to the destination.</p>
2884
+ * @public
2885
+ */
2886
+ roleArn: string | undefined;
2887
+ /**
2888
+ * <p>The format of the export task.</p>
2889
+ * @public
2890
+ */
2891
+ format: ExportFormat | undefined;
2892
+ /**
2893
+ * <p>The Amazon S3 URI where data will be exported to.</p>
2894
+ * @public
2895
+ */
2896
+ destination: string | undefined;
2897
+ /**
2898
+ * <p>The KMS key identifier of the export task.</p>
2899
+ * @public
2900
+ */
2901
+ kmsKeyIdentifier: string | undefined;
2902
+ /**
2903
+ * <p>The parquet type of the export task.</p>
2904
+ * @public
2905
+ */
2906
+ parquetType?: ParquetType | undefined;
2907
+ /**
2908
+ * <p>The export filter of the export task.</p>
2909
+ * @public
2910
+ */
2911
+ exportFilter?: ExportFilter | undefined;
2912
+ /**
2913
+ * <p>Tags to be applied to the export task.</p>
2914
+ * @public
2915
+ */
2916
+ tags?: Record<string, string> | undefined;
2917
+ }
2918
+ /**
2919
+ * @public
2920
+ */
2921
+ export interface StartExportTaskOutput {
2922
+ /**
2923
+ * <p>The source graph identifier of the export task.</p>
2924
+ * @public
2925
+ */
2926
+ graphId: string | undefined;
2927
+ /**
2928
+ * <p>The ARN of the IAM role that will allow data to be exported to the destination.</p>
2929
+ * @public
2930
+ */
2931
+ roleArn: string | undefined;
2932
+ /**
2933
+ * <p>The unique identifier of the export task.</p>
2934
+ * @public
2935
+ */
2936
+ taskId: string | undefined;
2937
+ /**
2938
+ * <p>The current status of the export task.</p>
2939
+ * @public
2940
+ */
2941
+ status: ExportTaskStatus | undefined;
2942
+ /**
2943
+ * <p>The format of the export task.</p>
2944
+ * @public
2945
+ */
2946
+ format: ExportFormat | undefined;
2947
+ /**
2948
+ * <p>The Amazon S3 URI of the export task where data will be exported to.</p>
2949
+ * @public
2950
+ */
2951
+ destination: string | undefined;
2952
+ /**
2953
+ * <p>The KMS key identifier of the export task.</p>
2954
+ * @public
2955
+ */
2956
+ kmsKeyIdentifier: string | undefined;
2957
+ /**
2958
+ * <p>The parquet type of the export task.</p>
2959
+ * @public
2960
+ */
2961
+ parquetType?: ParquetType | undefined;
2962
+ /**
2963
+ * <p>The reason that the export task has this status value.</p>
2964
+ * @public
2965
+ */
2966
+ statusReason?: string | undefined;
2967
+ /**
2968
+ * <p>The export filter of the export task.</p>
2969
+ * @public
2970
+ */
2971
+ exportFilter?: ExportFilter | undefined;
2972
+ }
2491
2973
  /**
2492
2974
  * @public
2493
2975
  */
@@ -2515,6 +2997,11 @@ export interface StartImportTaskInput {
2515
2997
  * @public
2516
2998
  */
2517
2999
  format?: Format | undefined;
3000
+ /**
3001
+ * <p>The parquet type of the import task.</p>
3002
+ * @public
3003
+ */
3004
+ parquetType?: ParquetType | undefined;
2518
3005
  /**
2519
3006
  * <p>The method to handle blank nodes in the dataset. Currently, only <code>convertToIri</code> is supported,
2520
3007
  * meaning blank nodes are converted to unique IRIs at load time. Must be provided when format is <code>ntriples</code>.
@@ -2559,6 +3046,11 @@ export interface StartImportTaskOutput {
2559
3046
  * @public
2560
3047
  */
2561
3048
  format?: Format | undefined;
3049
+ /**
3050
+ * <p>The parquet type of the import task.</p>
3051
+ * @public
3052
+ */
3053
+ parquetType?: ParquetType | undefined;
2562
3054
  /**
2563
3055
  * <p>The ARN of the IAM role that will allow access to the data that is to be imported.</p>
2564
3056
  * @public
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListExportTasksCommandInput, ListExportTasksCommandOutput } from "../commands/ListExportTasksCommand";
3
+ import { NeptuneGraphPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListExportTasks: (config: NeptuneGraphPaginationConfiguration, input: ListExportTasksCommandInput, ...rest: any[]) => 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";