@@ -22,6 +22,11 @@ import {
22
22
CancelReplicationTaskAssessmentRunCommandInput ,
23
23
CancelReplicationTaskAssessmentRunCommandOutput ,
24
24
} from "./commands/CancelReplicationTaskAssessmentRunCommand" ;
25
+ import {
26
+ CreateDataMigrationCommand ,
27
+ CreateDataMigrationCommandInput ,
28
+ CreateDataMigrationCommandOutput ,
29
+ } from "./commands/CreateDataMigrationCommand" ;
25
30
import {
26
31
CreateDataProviderCommand ,
27
32
CreateDataProviderCommandInput ,
@@ -82,6 +87,11 @@ import {
82
87
DeleteConnectionCommandInput ,
83
88
DeleteConnectionCommandOutput ,
84
89
} from "./commands/DeleteConnectionCommand" ;
90
+ import {
91
+ DeleteDataMigrationCommand ,
92
+ DeleteDataMigrationCommandInput ,
93
+ DeleteDataMigrationCommandOutput ,
94
+ } from "./commands/DeleteDataMigrationCommand" ;
85
95
import {
86
96
DeleteDataProviderCommand ,
87
97
DeleteDataProviderCommandInput ,
@@ -167,6 +177,11 @@ import {
167
177
DescribeConversionConfigurationCommandInput ,
168
178
DescribeConversionConfigurationCommandOutput ,
169
179
} from "./commands/DescribeConversionConfigurationCommand" ;
180
+ import {
181
+ DescribeDataMigrationsCommand ,
182
+ DescribeDataMigrationsCommandInput ,
183
+ DescribeDataMigrationsCommandOutput ,
184
+ } from "./commands/DescribeDataMigrationsCommand" ;
170
185
import {
171
186
DescribeDataProvidersCommand ,
172
187
DescribeDataProvidersCommandInput ,
@@ -377,6 +392,11 @@ import {
377
392
ModifyConversionConfigurationCommandInput ,
378
393
ModifyConversionConfigurationCommandOutput ,
379
394
} from "./commands/ModifyConversionConfigurationCommand" ;
395
+ import {
396
+ ModifyDataMigrationCommand ,
397
+ ModifyDataMigrationCommandInput ,
398
+ ModifyDataMigrationCommandOutput ,
399
+ } from "./commands/ModifyDataMigrationCommand" ;
380
400
import {
381
401
ModifyDataProviderCommand ,
382
402
ModifyDataProviderCommandInput ,
@@ -457,6 +477,11 @@ import {
457
477
RunFleetAdvisorLsaAnalysisCommandInput ,
458
478
RunFleetAdvisorLsaAnalysisCommandOutput ,
459
479
} from "./commands/RunFleetAdvisorLsaAnalysisCommand" ;
480
+ import {
481
+ StartDataMigrationCommand ,
482
+ StartDataMigrationCommandInput ,
483
+ StartDataMigrationCommandOutput ,
484
+ } from "./commands/StartDataMigrationCommand" ;
460
485
import {
461
486
StartExtensionPackAssociationCommand ,
462
487
StartExtensionPackAssociationCommandInput ,
@@ -512,6 +537,11 @@ import {
512
537
StartReplicationTaskCommandInput ,
513
538
StartReplicationTaskCommandOutput ,
514
539
} from "./commands/StartReplicationTaskCommand" ;
540
+ import {
541
+ StopDataMigrationCommand ,
542
+ StopDataMigrationCommandInput ,
543
+ StopDataMigrationCommandOutput ,
544
+ } from "./commands/StopDataMigrationCommand" ;
515
545
import {
516
546
StopReplicationCommand ,
517
547
StopReplicationCommandInput ,
@@ -539,6 +569,7 @@ const commands = {
539
569
ApplyPendingMaintenanceActionCommand,
540
570
BatchStartRecommendationsCommand,
541
571
CancelReplicationTaskAssessmentRunCommand,
572
+ CreateDataMigrationCommand,
542
573
CreateDataProviderCommand,
543
574
CreateEndpointCommand,
544
575
CreateEventSubscriptionCommand,
@@ -551,6 +582,7 @@ const commands = {
551
582
CreateReplicationTaskCommand,
552
583
DeleteCertificateCommand,
553
584
DeleteConnectionCommand,
585
+ DeleteDataMigrationCommand,
554
586
DeleteDataProviderCommand,
555
587
DeleteEndpointCommand,
556
588
DeleteEventSubscriptionCommand,
@@ -568,6 +600,7 @@ const commands = {
568
600
DescribeCertificatesCommand,
569
601
DescribeConnectionsCommand,
570
602
DescribeConversionConfigurationCommand,
603
+ DescribeDataMigrationsCommand,
571
604
DescribeDataProvidersCommand,
572
605
DescribeEndpointsCommand,
573
606
DescribeEndpointSettingsCommand,
@@ -610,6 +643,7 @@ const commands = {
610
643
ImportCertificateCommand,
611
644
ListTagsForResourceCommand,
612
645
ModifyConversionConfigurationCommand,
646
+ ModifyDataMigrationCommand,
613
647
ModifyDataProviderCommand,
614
648
ModifyEndpointCommand,
615
649
ModifyEventSubscriptionCommand,
@@ -626,6 +660,7 @@ const commands = {
626
660
ReloadTablesCommand,
627
661
RemoveTagsFromResourceCommand,
628
662
RunFleetAdvisorLsaAnalysisCommand,
663
+ StartDataMigrationCommand,
629
664
StartExtensionPackAssociationCommand,
630
665
StartMetadataModelAssessmentCommand,
631
666
StartMetadataModelConversionCommand,
@@ -637,6 +672,7 @@ const commands = {
637
672
StartReplicationTaskCommand,
638
673
StartReplicationTaskAssessmentCommand,
639
674
StartReplicationTaskAssessmentRunCommand,
675
+ StopDataMigrationCommand,
640
676
StopReplicationCommand,
641
677
StopReplicationTaskCommand,
642
678
TestConnectionCommand,
@@ -713,6 +749,23 @@ export interface DatabaseMigrationService {
713
749
cb : ( err : any , data ?: CancelReplicationTaskAssessmentRunCommandOutput ) => void
714
750
) : void ;
715
751
752
+ /**
753
+ * @see {@link CreateDataMigrationCommand }
754
+ */
755
+ createDataMigration (
756
+ args : CreateDataMigrationCommandInput ,
757
+ options ?: __HttpHandlerOptions
758
+ ) : Promise < CreateDataMigrationCommandOutput > ;
759
+ createDataMigration (
760
+ args : CreateDataMigrationCommandInput ,
761
+ cb : ( err : any , data ?: CreateDataMigrationCommandOutput ) => void
762
+ ) : void ;
763
+ createDataMigration (
764
+ args : CreateDataMigrationCommandInput ,
765
+ options : __HttpHandlerOptions ,
766
+ cb : ( err : any , data ?: CreateDataMigrationCommandOutput ) => void
767
+ ) : void ;
768
+
716
769
/**
717
770
* @see {@link CreateDataProviderCommand }
718
771
*/
@@ -915,6 +968,23 @@ export interface DatabaseMigrationService {
915
968
cb : ( err : any , data ?: DeleteConnectionCommandOutput ) => void
916
969
) : void ;
917
970
971
+ /**
972
+ * @see {@link DeleteDataMigrationCommand }
973
+ */
974
+ deleteDataMigration (
975
+ args : DeleteDataMigrationCommandInput ,
976
+ options ?: __HttpHandlerOptions
977
+ ) : Promise < DeleteDataMigrationCommandOutput > ;
978
+ deleteDataMigration (
979
+ args : DeleteDataMigrationCommandInput ,
980
+ cb : ( err : any , data ?: DeleteDataMigrationCommandOutput ) => void
981
+ ) : void ;
982
+ deleteDataMigration (
983
+ args : DeleteDataMigrationCommandInput ,
984
+ options : __HttpHandlerOptions ,
985
+ cb : ( err : any , data ?: DeleteDataMigrationCommandOutput ) => void
986
+ ) : void ;
987
+
918
988
/**
919
989
* @see {@link DeleteDataProviderCommand }
920
990
*/
@@ -1205,6 +1275,24 @@ export interface DatabaseMigrationService {
1205
1275
cb : ( err : any , data ?: DescribeConversionConfigurationCommandOutput ) => void
1206
1276
) : void ;
1207
1277
1278
+ /**
1279
+ * @see {@link DescribeDataMigrationsCommand }
1280
+ */
1281
+ describeDataMigrations ( ) : Promise < DescribeDataMigrationsCommandOutput > ;
1282
+ describeDataMigrations (
1283
+ args : DescribeDataMigrationsCommandInput ,
1284
+ options ?: __HttpHandlerOptions
1285
+ ) : Promise < DescribeDataMigrationsCommandOutput > ;
1286
+ describeDataMigrations (
1287
+ args : DescribeDataMigrationsCommandInput ,
1288
+ cb : ( err : any , data ?: DescribeDataMigrationsCommandOutput ) => void
1289
+ ) : void ;
1290
+ describeDataMigrations (
1291
+ args : DescribeDataMigrationsCommandInput ,
1292
+ options : __HttpHandlerOptions ,
1293
+ cb : ( err : any , data ?: DescribeDataMigrationsCommandOutput ) => void
1294
+ ) : void ;
1295
+
1208
1296
/**
1209
1297
* @see {@link DescribeDataProvidersCommand }
1210
1298
*/
@@ -1940,6 +2028,23 @@ export interface DatabaseMigrationService {
1940
2028
cb : ( err : any , data ?: ModifyConversionConfigurationCommandOutput ) => void
1941
2029
) : void ;
1942
2030
2031
+ /**
2032
+ * @see {@link ModifyDataMigrationCommand }
2033
+ */
2034
+ modifyDataMigration (
2035
+ args : ModifyDataMigrationCommandInput ,
2036
+ options ?: __HttpHandlerOptions
2037
+ ) : Promise < ModifyDataMigrationCommandOutput > ;
2038
+ modifyDataMigration (
2039
+ args : ModifyDataMigrationCommandInput ,
2040
+ cb : ( err : any , data ?: ModifyDataMigrationCommandOutput ) => void
2041
+ ) : void ;
2042
+ modifyDataMigration (
2043
+ args : ModifyDataMigrationCommandInput ,
2044
+ options : __HttpHandlerOptions ,
2045
+ cb : ( err : any , data ?: ModifyDataMigrationCommandOutput ) => void
2046
+ ) : void ;
2047
+
1943
2048
/**
1944
2049
* @see {@link ModifyDataProviderCommand }
1945
2050
*/
@@ -2201,6 +2306,23 @@ export interface DatabaseMigrationService {
2201
2306
cb : ( err : any , data ?: RunFleetAdvisorLsaAnalysisCommandOutput ) => void
2202
2307
) : void ;
2203
2308
2309
+ /**
2310
+ * @see {@link StartDataMigrationCommand }
2311
+ */
2312
+ startDataMigration (
2313
+ args : StartDataMigrationCommandInput ,
2314
+ options ?: __HttpHandlerOptions
2315
+ ) : Promise < StartDataMigrationCommandOutput > ;
2316
+ startDataMigration (
2317
+ args : StartDataMigrationCommandInput ,
2318
+ cb : ( err : any , data ?: StartDataMigrationCommandOutput ) => void
2319
+ ) : void ;
2320
+ startDataMigration (
2321
+ args : StartDataMigrationCommandInput ,
2322
+ options : __HttpHandlerOptions ,
2323
+ cb : ( err : any , data ?: StartDataMigrationCommandOutput ) => void
2324
+ ) : void ;
2325
+
2204
2326
/**
2205
2327
* @see {@link StartExtensionPackAssociationCommand }
2206
2328
*/
@@ -2388,6 +2510,23 @@ export interface DatabaseMigrationService {
2388
2510
cb : ( err : any , data ?: StartReplicationTaskAssessmentRunCommandOutput ) => void
2389
2511
) : void ;
2390
2512
2513
+ /**
2514
+ * @see {@link StopDataMigrationCommand }
2515
+ */
2516
+ stopDataMigration (
2517
+ args : StopDataMigrationCommandInput ,
2518
+ options ?: __HttpHandlerOptions
2519
+ ) : Promise < StopDataMigrationCommandOutput > ;
2520
+ stopDataMigration (
2521
+ args : StopDataMigrationCommandInput ,
2522
+ cb : ( err : any , data ?: StopDataMigrationCommandOutput ) => void
2523
+ ) : void ;
2524
+ stopDataMigration (
2525
+ args : StopDataMigrationCommandInput ,
2526
+ options : __HttpHandlerOptions ,
2527
+ cb : ( err : any , data ?: StopDataMigrationCommandOutput ) => void
2528
+ ) : void ;
2529
+
2391
2530
/**
2392
2531
* @see {@link StopReplicationCommand }
2393
2532
*/
0 commit comments