@aws-sdk/client-m2 3.782.0 → 3.796.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 (36) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +186 -9
  3. package/dist-es/M2.js +6 -0
  4. package/dist-es/commands/CreateDataSetExportTaskCommand.js +22 -0
  5. package/dist-es/commands/GetDataSetExportTaskCommand.js +22 -0
  6. package/dist-es/commands/ListDataSetExportHistoryCommand.js +22 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +18 -8
  9. package/dist-es/pagination/ListDataSetExportHistoryPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/protocols/Aws_restJson1.js +108 -1
  12. package/dist-types/M2.d.ts +21 -0
  13. package/dist-types/M2Client.d.ts +5 -2
  14. package/dist-types/commands/CreateDataSetExportTaskCommand.d.ts +106 -0
  15. package/dist-types/commands/GetBatchJobExecutionCommand.d.ts +4 -0
  16. package/dist-types/commands/GetDataSetExportTaskCommand.d.ts +98 -0
  17. package/dist-types/commands/ListBatchJobExecutionsCommand.d.ts +2 -0
  18. package/dist-types/commands/ListBatchJobRestartPointsCommand.d.ts +3 -0
  19. package/dist-types/commands/ListDataSetExportHistoryCommand.d.ts +103 -0
  20. package/dist-types/commands/StartBatchJobCommand.d.ts +2 -0
  21. package/dist-types/commands/index.d.ts +3 -0
  22. package/dist-types/models/models_0.d.ts +291 -33
  23. package/dist-types/pagination/ListDataSetExportHistoryPaginator.d.ts +7 -0
  24. package/dist-types/pagination/index.d.ts +1 -0
  25. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  26. package/dist-types/ts3.4/M2.d.ts +51 -0
  27. package/dist-types/ts3.4/M2Client.d.ts +18 -0
  28. package/dist-types/ts3.4/commands/CreateDataSetExportTaskCommand.d.ts +51 -0
  29. package/dist-types/ts3.4/commands/GetDataSetExportTaskCommand.d.ts +51 -0
  30. package/dist-types/ts3.4/commands/ListDataSetExportHistoryCommand.d.ts +51 -0
  31. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  32. package/dist-types/ts3.4/models/models_0.d.ts +97 -19
  33. package/dist-types/ts3.4/pagination/ListDataSetExportHistoryPaginator.d.ts +11 -0
  34. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  36. package/package.json +6 -6
@@ -368,6 +368,129 @@ export declare class ServiceQuotaExceededException extends __BaseException {
368
368
  */
369
369
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
370
370
  }
371
+ /**
372
+ * <p>Defines an external storage location.</p>
373
+ * @public
374
+ */
375
+ export type ExternalLocation = ExternalLocation.S3LocationMember | ExternalLocation.$UnknownMember;
376
+ /**
377
+ * @public
378
+ */
379
+ export declare namespace ExternalLocation {
380
+ /**
381
+ * <p>The URI of the Amazon S3 bucket.</p>
382
+ * @public
383
+ */
384
+ interface S3LocationMember {
385
+ s3Location: string;
386
+ $unknown?: never;
387
+ }
388
+ /**
389
+ * @public
390
+ */
391
+ interface $UnknownMember {
392
+ s3Location?: never;
393
+ $unknown: [string, any];
394
+ }
395
+ interface Visitor<T> {
396
+ s3Location: (value: string) => T;
397
+ _: (name: string, value: any) => T;
398
+ }
399
+ const visit: <T>(value: ExternalLocation, visitor: Visitor<T>) => T;
400
+ }
401
+ /**
402
+ * <p>Identifies a specific data set to export from an external location.</p>
403
+ * @public
404
+ */
405
+ export interface DataSetExportItem {
406
+ /**
407
+ * <p>The data set.</p>
408
+ * @public
409
+ */
410
+ datasetName: string | undefined;
411
+ /**
412
+ * <p>The location of the data set.</p>
413
+ * @public
414
+ */
415
+ externalLocation: ExternalLocation | undefined;
416
+ }
417
+ /**
418
+ * <p>Identifies one or more data sets you want to import with the <a>CreateDataSetExportTask</a> operation.</p>
419
+ * @public
420
+ */
421
+ export type DataSetExportConfig = DataSetExportConfig.DataSetsMember | DataSetExportConfig.S3LocationMember | DataSetExportConfig.$UnknownMember;
422
+ /**
423
+ * @public
424
+ */
425
+ export declare namespace DataSetExportConfig {
426
+ /**
427
+ * <p>The Amazon S3 location of the data sets.</p>
428
+ * @public
429
+ */
430
+ interface S3LocationMember {
431
+ s3Location: string;
432
+ dataSets?: never;
433
+ $unknown?: never;
434
+ }
435
+ /**
436
+ * <p>The data sets.</p>
437
+ * @public
438
+ */
439
+ interface DataSetsMember {
440
+ s3Location?: never;
441
+ dataSets: DataSetExportItem[];
442
+ $unknown?: never;
443
+ }
444
+ /**
445
+ * @public
446
+ */
447
+ interface $UnknownMember {
448
+ s3Location?: never;
449
+ dataSets?: never;
450
+ $unknown: [string, any];
451
+ }
452
+ interface Visitor<T> {
453
+ s3Location: (value: string) => T;
454
+ dataSets: (value: DataSetExportItem[]) => T;
455
+ _: (name: string, value: any) => T;
456
+ }
457
+ const visit: <T>(value: DataSetExportConfig, visitor: Visitor<T>) => T;
458
+ }
459
+ /**
460
+ * @public
461
+ */
462
+ export interface CreateDataSetExportTaskRequest {
463
+ /**
464
+ * <p>The unique identifier of the application for which you want to export data sets.</p>
465
+ * @public
466
+ */
467
+ applicationId: string | undefined;
468
+ /**
469
+ * <p>The data set export task configuration.</p>
470
+ * @public
471
+ */
472
+ exportConfig: DataSetExportConfig | undefined;
473
+ /**
474
+ * <p>Unique, case-sensitive identifier you provide to ensure the idempotency of the request to create a data set export. The service generates the clientToken when the API call is triggered. The token expires after one hour, so if you retry the API within this timeframe with the same clientToken, you will get the same response. The service also handles deleting the clientToken after it expires.</p>
475
+ * @public
476
+ */
477
+ clientToken?: string | undefined;
478
+ /**
479
+ * <p>The identifier of a customer managed key.</p>
480
+ * @public
481
+ */
482
+ kmsKeyId?: string | undefined;
483
+ }
484
+ /**
485
+ * @public
486
+ */
487
+ export interface CreateDataSetExportTaskResponse {
488
+ /**
489
+ * <p>The task identifier. This operation is asynchronous. Use this identifier with the <a>GetDataSetExportTask</a> operation to obtain the status of this task.</p>
490
+ * @public
491
+ */
492
+ taskId: string | undefined;
493
+ }
371
494
  /**
372
495
  * <p>The required attributes for a generation data group data set. A generation data set is
373
496
  * one of a collection of successive, historically related, catalogued data sets that together
@@ -606,36 +729,6 @@ export interface DataSet {
606
729
  */
607
730
  recordLength: RecordLength | undefined;
608
731
  }
609
- /**
610
- * <p>Defines an external storage location.</p>
611
- * @public
612
- */
613
- export type ExternalLocation = ExternalLocation.S3LocationMember | ExternalLocation.$UnknownMember;
614
- /**
615
- * @public
616
- */
617
- export declare namespace ExternalLocation {
618
- /**
619
- * <p>The URI of the Amazon S3 bucket.</p>
620
- * @public
621
- */
622
- interface S3LocationMember {
623
- s3Location: string;
624
- $unknown?: never;
625
- }
626
- /**
627
- * @public
628
- */
629
- interface $UnknownMember {
630
- s3Location?: never;
631
- $unknown: [string, any];
632
- }
633
- interface Visitor<T> {
634
- s3Location: (value: string) => T;
635
- _: (name: string, value: any) => T;
636
- }
637
- const visit: <T>(value: ExternalLocation, visitor: Visitor<T>) => T;
638
- }
639
732
  /**
640
733
  * <p>Identifies a specific data set to import from an external location.</p>
641
734
  * @public
@@ -1152,6 +1245,16 @@ export interface JobStepRestartMarker {
1152
1245
  * @public
1153
1246
  */
1154
1247
  toProcStep?: string | undefined;
1248
+ /**
1249
+ * <p>Skip selected step and issue a restart from immediate successor step for an Amazon Web Services Blu Age application batch job.</p>
1250
+ * @public
1251
+ */
1252
+ stepCheckpoint?: number | undefined;
1253
+ /**
1254
+ * <p>The step-level checkpoint timestamp (creation or last modification) for an Amazon Web Services Blu Age application batch job.</p>
1255
+ * @public
1256
+ */
1257
+ skip?: boolean | undefined;
1155
1258
  }
1156
1259
  /**
1157
1260
  * <p>An identifier for the <code>StartBatchJob</code> API to show that it is a restart operation.</p>
@@ -1683,15 +1786,14 @@ export declare class ServiceUnavailableException extends __BaseException {
1683
1786
  /**
1684
1787
  * @public
1685
1788
  */
1686
- export interface GetDataSetImportTaskRequest {
1789
+ export interface GetDataSetExportTaskRequest {
1687
1790
  /**
1688
1791
  * <p>The application identifier.</p>
1689
1792
  * @public
1690
1793
  */
1691
1794
  applicationId: string | undefined;
1692
1795
  /**
1693
- * <p>The task identifier returned by the <a>CreateDataSetImportTask</a> operation.
1694
- * </p>
1796
+ * <p>The task identifier returned by the <a>CreateDataSetExportTask</a> operation.</p>
1695
1797
  * @public
1696
1798
  */
1697
1799
  taskId: string | undefined;
@@ -1710,6 +1812,83 @@ export declare const DataSetTaskLifecycle: {
1710
1812
  * @public
1711
1813
  */
1712
1814
  export type DataSetTaskLifecycle = (typeof DataSetTaskLifecycle)[keyof typeof DataSetTaskLifecycle];
1815
+ /**
1816
+ * <p>Represents a summary of data set exports.</p>
1817
+ * @public
1818
+ */
1819
+ export interface DataSetExportSummary {
1820
+ /**
1821
+ * <p>The total number of data set exports.</p>
1822
+ * @public
1823
+ */
1824
+ total: number | undefined;
1825
+ /**
1826
+ * <p>The number of data set exports that have succeeded.</p>
1827
+ * @public
1828
+ */
1829
+ succeeded: number | undefined;
1830
+ /**
1831
+ * <p>The number of data set exports that have failed.</p>
1832
+ * @public
1833
+ */
1834
+ failed: number | undefined;
1835
+ /**
1836
+ * <p>The number of data set exports that are pending.</p>
1837
+ * @public
1838
+ */
1839
+ pending: number | undefined;
1840
+ /**
1841
+ * <p>The number of data set exports that are in progress.</p>
1842
+ * @public
1843
+ */
1844
+ inProgress: number | undefined;
1845
+ }
1846
+ /**
1847
+ * @public
1848
+ */
1849
+ export interface GetDataSetExportTaskResponse {
1850
+ /**
1851
+ * <p>The task identifier.</p>
1852
+ * @public
1853
+ */
1854
+ taskId: string | undefined;
1855
+ /**
1856
+ * <p>The status of the task.</p>
1857
+ * @public
1858
+ */
1859
+ status: DataSetTaskLifecycle | undefined;
1860
+ /**
1861
+ * <p>A summary of the status of the task.</p>
1862
+ * @public
1863
+ */
1864
+ summary?: DataSetExportSummary | undefined;
1865
+ /**
1866
+ * <p>If dataset export failed, the failure reason will show here.</p>
1867
+ * @public
1868
+ */
1869
+ statusReason?: string | undefined;
1870
+ /**
1871
+ * <p>The identifier of a customer managed key used for exported data set encryption.</p>
1872
+ * @public
1873
+ */
1874
+ kmsKeyArn?: string | undefined;
1875
+ }
1876
+ /**
1877
+ * @public
1878
+ */
1879
+ export interface GetDataSetImportTaskRequest {
1880
+ /**
1881
+ * <p>The application identifier.</p>
1882
+ * @public
1883
+ */
1884
+ applicationId: string | undefined;
1885
+ /**
1886
+ * <p>The task identifier returned by the <a>CreateDataSetImportTask</a> operation.
1887
+ * </p>
1888
+ * @public
1889
+ */
1890
+ taskId: string | undefined;
1891
+ }
1713
1892
  /**
1714
1893
  * <p>Represents a summary of data set imports.</p>
1715
1894
  * @public
@@ -2271,6 +2450,21 @@ export interface JobStep {
2271
2450
  * @public
2272
2451
  */
2273
2452
  stepRestartable?: boolean | undefined;
2453
+ /**
2454
+ * <p>A registered step-level checkpoint identifier that can be used for restarting an Amazon Web Services Blu Age application batch job.</p>
2455
+ * @public
2456
+ */
2457
+ stepCheckpoint?: number | undefined;
2458
+ /**
2459
+ * <p>The step-level checkpoint status for an Amazon Web Services Blu Age application batch job.</p>
2460
+ * @public
2461
+ */
2462
+ stepCheckpointStatus?: string | undefined;
2463
+ /**
2464
+ * <p>The step-level checkpoint status for an Amazon Web Services Blu Age application batch job.</p>
2465
+ * @public
2466
+ */
2467
+ stepCheckpointTime?: Date | undefined;
2274
2468
  }
2275
2469
  /**
2276
2470
  * @public
@@ -2282,6 +2476,70 @@ export interface ListBatchJobRestartPointsResponse {
2282
2476
  */
2283
2477
  batchJobSteps?: JobStep[] | undefined;
2284
2478
  }
2479
+ /**
2480
+ * @public
2481
+ */
2482
+ export interface ListDataSetExportHistoryRequest {
2483
+ /**
2484
+ * <p>A pagination token returned from a previous call to
2485
+ * this operation. This specifies the next item to return. To return to the beginning of the
2486
+ * list, exclude this parameter.</p>
2487
+ * @public
2488
+ */
2489
+ nextToken?: string | undefined;
2490
+ /**
2491
+ * <p>The maximum number of objects to return.</p>
2492
+ * @public
2493
+ */
2494
+ maxResults?: number | undefined;
2495
+ /**
2496
+ * <p>The unique identifier of the application.</p>
2497
+ * @public
2498
+ */
2499
+ applicationId: string | undefined;
2500
+ }
2501
+ /**
2502
+ * <p>Contains information about a data set export task.</p>
2503
+ * @public
2504
+ */
2505
+ export interface DataSetExportTask {
2506
+ /**
2507
+ * <p>The identifier of the data set export task.</p>
2508
+ * @public
2509
+ */
2510
+ taskId: string | undefined;
2511
+ /**
2512
+ * <p>The status of the data set export task.</p>
2513
+ * @public
2514
+ */
2515
+ status: DataSetTaskLifecycle | undefined;
2516
+ /**
2517
+ * <p>A summary of the data set export task.</p>
2518
+ * @public
2519
+ */
2520
+ summary: DataSetExportSummary | undefined;
2521
+ /**
2522
+ * <p>If dataset exports failed, the failure reason will show here.</p>
2523
+ * @public
2524
+ */
2525
+ statusReason?: string | undefined;
2526
+ }
2527
+ /**
2528
+ * @public
2529
+ */
2530
+ export interface ListDataSetExportHistoryResponse {
2531
+ /**
2532
+ * <p>The data set export tasks.</p>
2533
+ * @public
2534
+ */
2535
+ dataSetExportTasks: DataSetExportTask[] | undefined;
2536
+ /**
2537
+ * <p>If there are more items to return, this contains a token
2538
+ * that is passed to a subsequent call to this operation to retrieve the next set of items.</p>
2539
+ * @public
2540
+ */
2541
+ nextToken?: string | undefined;
2542
+ }
2285
2543
  /**
2286
2544
  * @public
2287
2545
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDataSetExportHistoryCommandInput, ListDataSetExportHistoryCommandOutput } from "../commands/ListDataSetExportHistoryCommand";
3
+ import { M2PaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDataSetExportHistory: (config: M2PaginationConfiguration, input: ListDataSetExportHistoryCommandInput, ...rest: any[]) => Paginator<ListDataSetExportHistoryCommandOutput>;
@@ -3,6 +3,7 @@ export * from "./ListApplicationVersionsPaginator";
3
3
  export * from "./ListApplicationsPaginator";
4
4
  export * from "./ListBatchJobDefinitionsPaginator";
5
5
  export * from "./ListBatchJobExecutionsPaginator";
6
+ export * from "./ListDataSetExportHistoryPaginator";
6
7
  export * from "./ListDataSetImportHistoryPaginator";
7
8
  export * from "./ListDataSetsPaginator";
8
9
  export * from "./ListDeploymentsPaginator";
@@ -2,6 +2,7 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@s
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { CancelBatchJobExecutionCommandInput, CancelBatchJobExecutionCommandOutput } from "../commands/CancelBatchJobExecutionCommand";
4
4
  import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "../commands/CreateApplicationCommand";
5
+ import { CreateDataSetExportTaskCommandInput, CreateDataSetExportTaskCommandOutput } from "../commands/CreateDataSetExportTaskCommand";
5
6
  import { CreateDataSetImportTaskCommandInput, CreateDataSetImportTaskCommandOutput } from "../commands/CreateDataSetImportTaskCommand";
6
7
  import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "../commands/CreateDeploymentCommand";
7
8
  import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
@@ -12,6 +13,7 @@ import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../comm
12
13
  import { GetApplicationVersionCommandInput, GetApplicationVersionCommandOutput } from "../commands/GetApplicationVersionCommand";
13
14
  import { GetBatchJobExecutionCommandInput, GetBatchJobExecutionCommandOutput } from "../commands/GetBatchJobExecutionCommand";
14
15
  import { GetDataSetDetailsCommandInput, GetDataSetDetailsCommandOutput } from "../commands/GetDataSetDetailsCommand";
16
+ import { GetDataSetExportTaskCommandInput, GetDataSetExportTaskCommandOutput } from "../commands/GetDataSetExportTaskCommand";
15
17
  import { GetDataSetImportTaskCommandInput, GetDataSetImportTaskCommandOutput } from "../commands/GetDataSetImportTaskCommand";
16
18
  import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "../commands/GetDeploymentCommand";
17
19
  import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
@@ -21,6 +23,7 @@ import { ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutp
21
23
  import { ListBatchJobDefinitionsCommandInput, ListBatchJobDefinitionsCommandOutput } from "../commands/ListBatchJobDefinitionsCommand";
22
24
  import { ListBatchJobExecutionsCommandInput, ListBatchJobExecutionsCommandOutput } from "../commands/ListBatchJobExecutionsCommand";
23
25
  import { ListBatchJobRestartPointsCommandInput, ListBatchJobRestartPointsCommandOutput } from "../commands/ListBatchJobRestartPointsCommand";
26
+ import { ListDataSetExportHistoryCommandInput, ListDataSetExportHistoryCommandOutput } from "../commands/ListDataSetExportHistoryCommand";
24
27
  import { ListDataSetImportHistoryCommandInput, ListDataSetImportHistoryCommandOutput } from "../commands/ListDataSetImportHistoryCommand";
25
28
  import { ListDataSetsCommandInput, ListDataSetsCommandOutput } from "../commands/ListDataSetsCommand";
26
29
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "../commands/ListDeploymentsCommand";
@@ -42,6 +45,10 @@ export declare const se_CancelBatchJobExecutionCommand: (input: CancelBatchJobEx
42
45
  * serializeAws_restJson1CreateApplicationCommand
43
46
  */
44
47
  export declare const se_CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ /**
49
+ * serializeAws_restJson1CreateDataSetExportTaskCommand
50
+ */
51
+ export declare const se_CreateDataSetExportTaskCommand: (input: CreateDataSetExportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
52
  /**
46
53
  * serializeAws_restJson1CreateDataSetImportTaskCommand
47
54
  */
@@ -82,6 +89,10 @@ export declare const se_GetBatchJobExecutionCommand: (input: GetBatchJobExecutio
82
89
  * serializeAws_restJson1GetDataSetDetailsCommand
83
90
  */
84
91
  export declare const se_GetDataSetDetailsCommand: (input: GetDataSetDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
+ /**
93
+ * serializeAws_restJson1GetDataSetExportTaskCommand
94
+ */
95
+ export declare const se_GetDataSetExportTaskCommand: (input: GetDataSetExportTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
96
  /**
86
97
  * serializeAws_restJson1GetDataSetImportTaskCommand
87
98
  */
@@ -118,6 +129,10 @@ export declare const se_ListBatchJobExecutionsCommand: (input: ListBatchJobExecu
118
129
  * serializeAws_restJson1ListBatchJobRestartPointsCommand
119
130
  */
120
131
  export declare const se_ListBatchJobRestartPointsCommand: (input: ListBatchJobRestartPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
132
+ /**
133
+ * serializeAws_restJson1ListDataSetExportHistoryCommand
134
+ */
135
+ export declare const se_ListDataSetExportHistoryCommand: (input: ListDataSetExportHistoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
121
136
  /**
122
137
  * serializeAws_restJson1ListDataSetImportHistoryCommand
123
138
  */
@@ -178,6 +193,10 @@ export declare const de_CancelBatchJobExecutionCommand: (output: __HttpResponse,
178
193
  * deserializeAws_restJson1CreateApplicationCommand
179
194
  */
180
195
  export declare const de_CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
196
+ /**
197
+ * deserializeAws_restJson1CreateDataSetExportTaskCommand
198
+ */
199
+ export declare const de_CreateDataSetExportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataSetExportTaskCommandOutput>;
181
200
  /**
182
201
  * deserializeAws_restJson1CreateDataSetImportTaskCommand
183
202
  */
@@ -218,6 +237,10 @@ export declare const de_GetBatchJobExecutionCommand: (output: __HttpResponse, co
218
237
  * deserializeAws_restJson1GetDataSetDetailsCommand
219
238
  */
220
239
  export declare const de_GetDataSetDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataSetDetailsCommandOutput>;
240
+ /**
241
+ * deserializeAws_restJson1GetDataSetExportTaskCommand
242
+ */
243
+ export declare const de_GetDataSetExportTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataSetExportTaskCommandOutput>;
221
244
  /**
222
245
  * deserializeAws_restJson1GetDataSetImportTaskCommand
223
246
  */
@@ -254,6 +277,10 @@ export declare const de_ListBatchJobExecutionsCommand: (output: __HttpResponse,
254
277
  * deserializeAws_restJson1ListBatchJobRestartPointsCommand
255
278
  */
256
279
  export declare const de_ListBatchJobRestartPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBatchJobRestartPointsCommandOutput>;
280
+ /**
281
+ * deserializeAws_restJson1ListDataSetExportHistoryCommand
282
+ */
283
+ export declare const de_ListDataSetExportHistoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataSetExportHistoryCommandOutput>;
257
284
  /**
258
285
  * deserializeAws_restJson1ListDataSetImportHistoryCommand
259
286
  */
@@ -7,6 +7,10 @@ import {
7
7
  CreateApplicationCommandInput,
8
8
  CreateApplicationCommandOutput,
9
9
  } from "./commands/CreateApplicationCommand";
10
+ import {
11
+ CreateDataSetExportTaskCommandInput,
12
+ CreateDataSetExportTaskCommandOutput,
13
+ } from "./commands/CreateDataSetExportTaskCommand";
10
14
  import {
11
15
  CreateDataSetImportTaskCommandInput,
12
16
  CreateDataSetImportTaskCommandOutput,
@@ -47,6 +51,10 @@ import {
47
51
  GetDataSetDetailsCommandInput,
48
52
  GetDataSetDetailsCommandOutput,
49
53
  } from "./commands/GetDataSetDetailsCommand";
54
+ import {
55
+ GetDataSetExportTaskCommandInput,
56
+ GetDataSetExportTaskCommandOutput,
57
+ } from "./commands/GetDataSetExportTaskCommand";
50
58
  import {
51
59
  GetDataSetImportTaskCommandInput,
52
60
  GetDataSetImportTaskCommandOutput,
@@ -83,6 +91,10 @@ import {
83
91
  ListBatchJobRestartPointsCommandInput,
84
92
  ListBatchJobRestartPointsCommandOutput,
85
93
  } from "./commands/ListBatchJobRestartPointsCommand";
94
+ import {
95
+ ListDataSetExportHistoryCommandInput,
96
+ ListDataSetExportHistoryCommandOutput,
97
+ } from "./commands/ListDataSetExportHistoryCommand";
86
98
  import {
87
99
  ListDataSetImportHistoryCommandInput,
88
100
  ListDataSetImportHistoryCommandOutput,
@@ -163,6 +175,19 @@ export interface M2 {
163
175
  options: __HttpHandlerOptions,
164
176
  cb: (err: any, data?: CreateApplicationCommandOutput) => void
165
177
  ): void;
178
+ createDataSetExportTask(
179
+ args: CreateDataSetExportTaskCommandInput,
180
+ options?: __HttpHandlerOptions
181
+ ): Promise<CreateDataSetExportTaskCommandOutput>;
182
+ createDataSetExportTask(
183
+ args: CreateDataSetExportTaskCommandInput,
184
+ cb: (err: any, data?: CreateDataSetExportTaskCommandOutput) => void
185
+ ): void;
186
+ createDataSetExportTask(
187
+ args: CreateDataSetExportTaskCommandInput,
188
+ options: __HttpHandlerOptions,
189
+ cb: (err: any, data?: CreateDataSetExportTaskCommandOutput) => void
190
+ ): void;
166
191
  createDataSetImportTask(
167
192
  args: CreateDataSetImportTaskCommandInput,
168
193
  options?: __HttpHandlerOptions
@@ -293,6 +318,19 @@ export interface M2 {
293
318
  options: __HttpHandlerOptions,
294
319
  cb: (err: any, data?: GetDataSetDetailsCommandOutput) => void
295
320
  ): void;
321
+ getDataSetExportTask(
322
+ args: GetDataSetExportTaskCommandInput,
323
+ options?: __HttpHandlerOptions
324
+ ): Promise<GetDataSetExportTaskCommandOutput>;
325
+ getDataSetExportTask(
326
+ args: GetDataSetExportTaskCommandInput,
327
+ cb: (err: any, data?: GetDataSetExportTaskCommandOutput) => void
328
+ ): void;
329
+ getDataSetExportTask(
330
+ args: GetDataSetExportTaskCommandInput,
331
+ options: __HttpHandlerOptions,
332
+ cb: (err: any, data?: GetDataSetExportTaskCommandOutput) => void
333
+ ): void;
296
334
  getDataSetImportTask(
297
335
  args: GetDataSetImportTaskCommandInput,
298
336
  options?: __HttpHandlerOptions
@@ -412,6 +450,19 @@ export interface M2 {
412
450
  options: __HttpHandlerOptions,
413
451
  cb: (err: any, data?: ListBatchJobRestartPointsCommandOutput) => void
414
452
  ): void;
453
+ listDataSetExportHistory(
454
+ args: ListDataSetExportHistoryCommandInput,
455
+ options?: __HttpHandlerOptions
456
+ ): Promise<ListDataSetExportHistoryCommandOutput>;
457
+ listDataSetExportHistory(
458
+ args: ListDataSetExportHistoryCommandInput,
459
+ cb: (err: any, data?: ListDataSetExportHistoryCommandOutput) => void
460
+ ): void;
461
+ listDataSetExportHistory(
462
+ args: ListDataSetExportHistoryCommandInput,
463
+ options: __HttpHandlerOptions,
464
+ cb: (err: any, data?: ListDataSetExportHistoryCommandOutput) => void
465
+ ): void;
415
466
  listDataSetImportHistory(
416
467
  args: ListDataSetImportHistoryCommandInput,
417
468
  options?: __HttpHandlerOptions
@@ -53,6 +53,10 @@ import {
53
53
  CreateApplicationCommandInput,
54
54
  CreateApplicationCommandOutput,
55
55
  } from "./commands/CreateApplicationCommand";
56
+ import {
57
+ CreateDataSetExportTaskCommandInput,
58
+ CreateDataSetExportTaskCommandOutput,
59
+ } from "./commands/CreateDataSetExportTaskCommand";
56
60
  import {
57
61
  CreateDataSetImportTaskCommandInput,
58
62
  CreateDataSetImportTaskCommandOutput,
@@ -93,6 +97,10 @@ import {
93
97
  GetDataSetDetailsCommandInput,
94
98
  GetDataSetDetailsCommandOutput,
95
99
  } from "./commands/GetDataSetDetailsCommand";
100
+ import {
101
+ GetDataSetExportTaskCommandInput,
102
+ GetDataSetExportTaskCommandOutput,
103
+ } from "./commands/GetDataSetExportTaskCommand";
96
104
  import {
97
105
  GetDataSetImportTaskCommandInput,
98
106
  GetDataSetImportTaskCommandOutput,
@@ -129,6 +137,10 @@ import {
129
137
  ListBatchJobRestartPointsCommandInput,
130
138
  ListBatchJobRestartPointsCommandOutput,
131
139
  } from "./commands/ListBatchJobRestartPointsCommand";
140
+ import {
141
+ ListDataSetExportHistoryCommandInput,
142
+ ListDataSetExportHistoryCommandOutput,
143
+ } from "./commands/ListDataSetExportHistoryCommand";
132
144
  import {
133
145
  ListDataSetImportHistoryCommandInput,
134
146
  ListDataSetImportHistoryCommandOutput,
@@ -191,6 +203,7 @@ export { __Client };
191
203
  export type ServiceInputTypes =
192
204
  | CancelBatchJobExecutionCommandInput
193
205
  | CreateApplicationCommandInput
206
+ | CreateDataSetExportTaskCommandInput
194
207
  | CreateDataSetImportTaskCommandInput
195
208
  | CreateDeploymentCommandInput
196
209
  | CreateEnvironmentCommandInput
@@ -201,6 +214,7 @@ export type ServiceInputTypes =
201
214
  | GetApplicationVersionCommandInput
202
215
  | GetBatchJobExecutionCommandInput
203
216
  | GetDataSetDetailsCommandInput
217
+ | GetDataSetExportTaskCommandInput
204
218
  | GetDataSetImportTaskCommandInput
205
219
  | GetDeploymentCommandInput
206
220
  | GetEnvironmentCommandInput
@@ -210,6 +224,7 @@ export type ServiceInputTypes =
210
224
  | ListBatchJobDefinitionsCommandInput
211
225
  | ListBatchJobExecutionsCommandInput
212
226
  | ListBatchJobRestartPointsCommandInput
227
+ | ListDataSetExportHistoryCommandInput
213
228
  | ListDataSetImportHistoryCommandInput
214
229
  | ListDataSetsCommandInput
215
230
  | ListDeploymentsCommandInput
@@ -226,6 +241,7 @@ export type ServiceInputTypes =
226
241
  export type ServiceOutputTypes =
227
242
  | CancelBatchJobExecutionCommandOutput
228
243
  | CreateApplicationCommandOutput
244
+ | CreateDataSetExportTaskCommandOutput
229
245
  | CreateDataSetImportTaskCommandOutput
230
246
  | CreateDeploymentCommandOutput
231
247
  | CreateEnvironmentCommandOutput
@@ -236,6 +252,7 @@ export type ServiceOutputTypes =
236
252
  | GetApplicationVersionCommandOutput
237
253
  | GetBatchJobExecutionCommandOutput
238
254
  | GetDataSetDetailsCommandOutput
255
+ | GetDataSetExportTaskCommandOutput
239
256
  | GetDataSetImportTaskCommandOutput
240
257
  | GetDeploymentCommandOutput
241
258
  | GetEnvironmentCommandOutput
@@ -245,6 +262,7 @@ export type ServiceOutputTypes =
245
262
  | ListBatchJobDefinitionsCommandOutput
246
263
  | ListBatchJobExecutionsCommandOutput
247
264
  | ListBatchJobRestartPointsCommandOutput
265
+ | ListDataSetExportHistoryCommandOutput
248
266
  | ListDataSetImportHistoryCommandOutput
249
267
  | ListDataSetsCommandOutput
250
268
  | ListDeploymentsCommandOutput