@aws-sdk/client-database-migration-service 3.668.0 → 3.670.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.
- package/README.md +48 -0
- package/dist-cjs/index.js +549 -103
- package/dist-cjs/runtimeConfig.browser.js +1 -1
- package/dist-cjs/runtimeConfig.js +1 -1
- package/dist-es/DatabaseMigrationService.js +12 -0
- package/dist-es/commands/CreateDataMigrationCommand.js +23 -0
- package/dist-es/commands/DeleteDataMigrationCommand.js +23 -0
- package/dist-es/commands/DescribeDataMigrationsCommand.js +23 -0
- package/dist-es/commands/ImportCertificateCommand.js +1 -1
- package/dist-es/commands/ModifyDataMigrationCommand.js +23 -0
- package/dist-es/commands/StartDataMigrationCommand.js +23 -0
- package/dist-es/commands/StopDataMigrationCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +87 -66
- package/dist-es/models/models_1.js +42 -1
- package/dist-es/pagination/DescribeDataMigrationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -1
- package/dist-es/protocols/Aws_json1_1.js +262 -9
- package/dist-es/runtimeConfig.browser.js +2 -2
- package/dist-es/runtimeConfig.js +2 -2
- package/dist-types/DatabaseMigrationService.d.ts +43 -0
- package/dist-types/DatabaseMigrationServiceClient.d.ts +8 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
- package/dist-types/commands/CreateDataMigrationCommand.d.ts +146 -0
- package/dist-types/commands/CreateDataProviderCommand.d.ts +3 -0
- package/dist-types/commands/CreateInstanceProfileCommand.d.ts +3 -0
- package/dist-types/commands/CreateMigrationProjectCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDataMigrationCommand.d.ts +119 -0
- package/dist-types/commands/DeleteDataProviderCommand.d.ts +3 -0
- package/dist-types/commands/DeleteFleetAdvisorCollectorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFleetAdvisorDatabasesCommand.d.ts +4 -0
- package/dist-types/commands/DeleteInstanceProfileCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMigrationProjectCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDataMigrationsCommand.d.ts +133 -0
- package/dist-types/commands/DescribeDataProvidersCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInstanceProfilesCommand.d.ts +3 -0
- package/dist-types/commands/DescribeMigrationProjectsCommand.d.ts +3 -0
- package/dist-types/commands/ExportMetadataModelAssessmentCommand.d.ts +1 -1
- package/dist-types/commands/ImportCertificateCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -1
- package/dist-types/commands/ModifyConversionConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDataMigrationCommand.d.ts +133 -0
- package/dist-types/commands/ModifyDataProviderCommand.d.ts +3 -0
- package/dist-types/commands/ModifyInstanceProfileCommand.d.ts +3 -0
- package/dist-types/commands/ModifyMigrationProjectCommand.d.ts +3 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartDataMigrationCommand.d.ts +126 -0
- package/dist-types/commands/StopDataMigrationCommand.d.ts +119 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +428 -244
- package/dist-types/models/models_1.d.ts +312 -1
- package/dist-types/pagination/DescribeDataMigrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
- package/dist-types/ts3.4/DatabaseMigrationService.d.ts +103 -0
- package/dist-types/ts3.4/DatabaseMigrationServiceClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeDataMigrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExportMetadataModelAssessmentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyConversionConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +131 -89
- package/dist-types/ts3.4/models/models_1.d.ts +102 -0
- package/dist-types/ts3.4/pagination/DescribeDataMigrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/package.json +7 -7
|
@@ -103,6 +103,18 @@ export interface AddTagsToResourceMessage {
|
|
|
103
103
|
*/
|
|
104
104
|
export interface AddTagsToResourceResponse {
|
|
105
105
|
}
|
|
106
|
+
/**
|
|
107
|
+
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
export declare class InvalidResourceStateFault extends __BaseException {
|
|
111
|
+
readonly name: "InvalidResourceStateFault";
|
|
112
|
+
readonly $fault: "client";
|
|
113
|
+
/**
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
116
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceStateFault, __BaseException>);
|
|
117
|
+
}
|
|
106
118
|
/**
|
|
107
119
|
* <p>The resource could not be found.</p>
|
|
108
120
|
* @public
|
|
@@ -316,18 +328,6 @@ export interface BatchStartRecommendationsResponse {
|
|
|
316
328
|
*/
|
|
317
329
|
ErrorEntries?: BatchStartRecommendationsErrorEntry[];
|
|
318
330
|
}
|
|
319
|
-
/**
|
|
320
|
-
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
321
|
-
* @public
|
|
322
|
-
*/
|
|
323
|
-
export declare class InvalidResourceStateFault extends __BaseException {
|
|
324
|
-
readonly name: "InvalidResourceStateFault";
|
|
325
|
-
readonly $fault: "client";
|
|
326
|
-
/**
|
|
327
|
-
* @internal
|
|
328
|
-
*/
|
|
329
|
-
constructor(opts: __ExceptionOptionType<InvalidResourceStateFault, __BaseException>);
|
|
330
|
-
}
|
|
331
331
|
/**
|
|
332
332
|
* <p></p>
|
|
333
333
|
* @public
|
|
@@ -493,6 +493,328 @@ export interface CancelReplicationTaskAssessmentRunResponse {
|
|
|
493
493
|
*/
|
|
494
494
|
ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun;
|
|
495
495
|
}
|
|
496
|
+
/**
|
|
497
|
+
* @public
|
|
498
|
+
* @enum
|
|
499
|
+
*/
|
|
500
|
+
export declare const MigrationTypeValue: {
|
|
501
|
+
readonly CDC: "cdc";
|
|
502
|
+
readonly FULL_LOAD: "full-load";
|
|
503
|
+
readonly FULL_LOAD_AND_CDC: "full-load-and-cdc";
|
|
504
|
+
};
|
|
505
|
+
/**
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
508
|
+
export type MigrationTypeValue = (typeof MigrationTypeValue)[keyof typeof MigrationTypeValue];
|
|
509
|
+
/**
|
|
510
|
+
* <p>Defines settings for a source data provider for a data migration.</p>
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
513
|
+
export interface SourceDataSetting {
|
|
514
|
+
/**
|
|
515
|
+
* <p>The change data capture (CDC) start position for the source data provider.</p>
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
CDCStartPosition?: string;
|
|
519
|
+
/**
|
|
520
|
+
* <p>The change data capture (CDC) start time for the source data provider.</p>
|
|
521
|
+
* @public
|
|
522
|
+
*/
|
|
523
|
+
CDCStartTime?: Date;
|
|
524
|
+
/**
|
|
525
|
+
* <p>The change data capture (CDC) stop time for the source data provider.</p>
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
CDCStopTime?: Date;
|
|
529
|
+
/**
|
|
530
|
+
* <p>The name of the replication slot on the source data provider. This attribute is only
|
|
531
|
+
* valid for a PostgreSQL or Aurora PostgreSQL source.</p>
|
|
532
|
+
* @public
|
|
533
|
+
*/
|
|
534
|
+
SlotName?: string;
|
|
535
|
+
}
|
|
536
|
+
/**
|
|
537
|
+
* @public
|
|
538
|
+
*/
|
|
539
|
+
export interface CreateDataMigrationMessage {
|
|
540
|
+
/**
|
|
541
|
+
* <p>A user-friendly name for the data migration. Data migration names
|
|
542
|
+
* have the following constraints:</p>
|
|
543
|
+
* <ul>
|
|
544
|
+
* <li>
|
|
545
|
+
* <p>Must begin with a letter, and can only contain ASCII letters,
|
|
546
|
+
* digits, and hyphens. </p>
|
|
547
|
+
* </li>
|
|
548
|
+
* <li>
|
|
549
|
+
* <p>Can't end with a hyphen or contain two consecutive hyphens.</p>
|
|
550
|
+
* </li>
|
|
551
|
+
* <li>
|
|
552
|
+
* <p>Length must be from 1 to 255 characters.</p>
|
|
553
|
+
* </li>
|
|
554
|
+
* </ul>
|
|
555
|
+
* @public
|
|
556
|
+
*/
|
|
557
|
+
DataMigrationName?: string;
|
|
558
|
+
/**
|
|
559
|
+
* <p>An identifier for the migration project.</p>
|
|
560
|
+
* @public
|
|
561
|
+
*/
|
|
562
|
+
MigrationProjectIdentifier: string | undefined;
|
|
563
|
+
/**
|
|
564
|
+
* <p>Specifies if the data migration is full-load only, change data capture (CDC) only, or full-load and CDC.</p>
|
|
565
|
+
* @public
|
|
566
|
+
*/
|
|
567
|
+
DataMigrationType: MigrationTypeValue | undefined;
|
|
568
|
+
/**
|
|
569
|
+
* <p>The Amazon Resource Name (ARN) for the service access role that you want to use to
|
|
570
|
+
* create the data migration.</p>
|
|
571
|
+
* @public
|
|
572
|
+
*/
|
|
573
|
+
ServiceAccessRoleArn: string | undefined;
|
|
574
|
+
/**
|
|
575
|
+
* <p>Specifies whether to enable CloudWatch logs for the data migration.</p>
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
578
|
+
EnableCloudwatchLogs?: boolean;
|
|
579
|
+
/**
|
|
580
|
+
* <p>Specifies information about the source data provider.</p>
|
|
581
|
+
* @public
|
|
582
|
+
*/
|
|
583
|
+
SourceDataSettings?: SourceDataSetting[];
|
|
584
|
+
/**
|
|
585
|
+
* <p>The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.</p>
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
NumberOfJobs?: number;
|
|
589
|
+
/**
|
|
590
|
+
* <p>One or more tags to be assigned to the data migration.</p>
|
|
591
|
+
* @public
|
|
592
|
+
*/
|
|
593
|
+
Tags?: Tag[];
|
|
594
|
+
/**
|
|
595
|
+
* <p>An optional JSON string specifying what tables, views, and schemas
|
|
596
|
+
* to include or exclude from the migration.</p>
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
SelectionRules?: string;
|
|
600
|
+
}
|
|
601
|
+
/**
|
|
602
|
+
* <p>Options for configuring a data migration, including whether to enable CloudWatch logs,
|
|
603
|
+
* and the selection rules to use to include or exclude database objects from the migration.</p>
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
export interface DataMigrationSettings {
|
|
607
|
+
/**
|
|
608
|
+
* <p>The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.</p>
|
|
609
|
+
* @public
|
|
610
|
+
*/
|
|
611
|
+
NumberOfJobs?: number;
|
|
612
|
+
/**
|
|
613
|
+
* <p>Whether to enable CloudWatch logging for the data migration.</p>
|
|
614
|
+
* @public
|
|
615
|
+
*/
|
|
616
|
+
CloudwatchLogsEnabled?: boolean;
|
|
617
|
+
/**
|
|
618
|
+
* <p>A JSON-formatted string that defines what objects to include and exclude from the migration.</p>
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
621
|
+
SelectionRules?: string;
|
|
622
|
+
}
|
|
623
|
+
/**
|
|
624
|
+
* <p>Information about the data migration run, including start and stop time, latency, and migration progress.</p>
|
|
625
|
+
* @public
|
|
626
|
+
*/
|
|
627
|
+
export interface DataMigrationStatistics {
|
|
628
|
+
/**
|
|
629
|
+
* <p>The number of tables loaded in the current data migration run.</p>
|
|
630
|
+
* @public
|
|
631
|
+
*/
|
|
632
|
+
TablesLoaded?: number;
|
|
633
|
+
/**
|
|
634
|
+
* <p>The elapsed duration of the data migration run.</p>
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
637
|
+
ElapsedTimeMillis?: number;
|
|
638
|
+
/**
|
|
639
|
+
* <p>The data migration's table loading progress.</p>
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
642
|
+
TablesLoading?: number;
|
|
643
|
+
/**
|
|
644
|
+
* <p>The data migration's progress in the full-load migration phase.</p>
|
|
645
|
+
* @public
|
|
646
|
+
*/
|
|
647
|
+
FullLoadPercentage?: number;
|
|
648
|
+
/**
|
|
649
|
+
* <p>The current latency of the change data capture (CDC) operation.</p>
|
|
650
|
+
* @public
|
|
651
|
+
*/
|
|
652
|
+
CDCLatency?: number;
|
|
653
|
+
/**
|
|
654
|
+
* <p>The number of tables that are waiting for processing.</p>
|
|
655
|
+
* @public
|
|
656
|
+
*/
|
|
657
|
+
TablesQueued?: number;
|
|
658
|
+
/**
|
|
659
|
+
* <p>The number of tables that DMS failed to process.</p>
|
|
660
|
+
* @public
|
|
661
|
+
*/
|
|
662
|
+
TablesErrored?: number;
|
|
663
|
+
/**
|
|
664
|
+
* <p>The time when the migration started.</p>
|
|
665
|
+
* @public
|
|
666
|
+
*/
|
|
667
|
+
StartTime?: Date;
|
|
668
|
+
/**
|
|
669
|
+
* <p>The time when the migration stopped or failed.</p>
|
|
670
|
+
* @public
|
|
671
|
+
*/
|
|
672
|
+
StopTime?: Date;
|
|
673
|
+
}
|
|
674
|
+
/**
|
|
675
|
+
* <p>This object provides information about a DMS data migration.</p>
|
|
676
|
+
* @public
|
|
677
|
+
*/
|
|
678
|
+
export interface DataMigration {
|
|
679
|
+
/**
|
|
680
|
+
* <p>The user-friendly name for the data migration.</p>
|
|
681
|
+
* @public
|
|
682
|
+
*/
|
|
683
|
+
DataMigrationName?: string;
|
|
684
|
+
/**
|
|
685
|
+
* <p>The Amazon Resource Name (ARN) that identifies this replication.</p>
|
|
686
|
+
* @public
|
|
687
|
+
*/
|
|
688
|
+
DataMigrationArn?: string;
|
|
689
|
+
/**
|
|
690
|
+
* <p>The UTC time when DMS created the data migration.</p>
|
|
691
|
+
* @public
|
|
692
|
+
*/
|
|
693
|
+
DataMigrationCreateTime?: Date;
|
|
694
|
+
/**
|
|
695
|
+
* <p>The UTC time when DMS started the data migration.</p>
|
|
696
|
+
* @public
|
|
697
|
+
*/
|
|
698
|
+
DataMigrationStartTime?: Date;
|
|
699
|
+
/**
|
|
700
|
+
* <p>The UTC time when data migration ended.</p>
|
|
701
|
+
* @public
|
|
702
|
+
*/
|
|
703
|
+
DataMigrationEndTime?: Date;
|
|
704
|
+
/**
|
|
705
|
+
* <p>The IAM role that the data migration uses to access Amazon Web Services resources.</p>
|
|
706
|
+
* @public
|
|
707
|
+
*/
|
|
708
|
+
ServiceAccessRoleArn?: string;
|
|
709
|
+
/**
|
|
710
|
+
* <p>The Amazon Resource Name (ARN) of the data migration's associated migration project.</p>
|
|
711
|
+
* @public
|
|
712
|
+
*/
|
|
713
|
+
MigrationProjectArn?: string;
|
|
714
|
+
/**
|
|
715
|
+
* <p>Specifies whether the data migration is full-load only, change data capture (CDC) only, or full-load and CDC.</p>
|
|
716
|
+
* @public
|
|
717
|
+
*/
|
|
718
|
+
DataMigrationType?: MigrationTypeValue;
|
|
719
|
+
/**
|
|
720
|
+
* <p>Specifies CloudWatch settings and selection rules for the data migration.</p>
|
|
721
|
+
* @public
|
|
722
|
+
*/
|
|
723
|
+
DataMigrationSettings?: DataMigrationSettings;
|
|
724
|
+
/**
|
|
725
|
+
* <p>Specifies information about the data migration's source data provider.</p>
|
|
726
|
+
* @public
|
|
727
|
+
*/
|
|
728
|
+
SourceDataSettings?: SourceDataSetting[];
|
|
729
|
+
/**
|
|
730
|
+
* <p>Provides information about the data migration's run, including start and stop time, latency, and data migration progress.</p>
|
|
731
|
+
* @public
|
|
732
|
+
*/
|
|
733
|
+
DataMigrationStatistics?: DataMigrationStatistics;
|
|
734
|
+
/**
|
|
735
|
+
* <p>The current status of the data migration. </p>
|
|
736
|
+
* @public
|
|
737
|
+
*/
|
|
738
|
+
DataMigrationStatus?: string;
|
|
739
|
+
/**
|
|
740
|
+
* <p>The IP addresses of the endpoints for the data migration.</p>
|
|
741
|
+
* @public
|
|
742
|
+
*/
|
|
743
|
+
PublicIpAddresses?: string[];
|
|
744
|
+
/**
|
|
745
|
+
* <p>Information about the data migration's most recent error or failure.</p>
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
748
|
+
LastFailureMessage?: string;
|
|
749
|
+
/**
|
|
750
|
+
* <p>The reason the data migration last stopped.</p>
|
|
751
|
+
* @public
|
|
752
|
+
*/
|
|
753
|
+
StopReason?: string;
|
|
754
|
+
}
|
|
755
|
+
/**
|
|
756
|
+
* @public
|
|
757
|
+
*/
|
|
758
|
+
export interface CreateDataMigrationResponse {
|
|
759
|
+
/**
|
|
760
|
+
* <p>Information about the created data migration.</p>
|
|
761
|
+
* @public
|
|
762
|
+
*/
|
|
763
|
+
DataMigration?: DataMigration;
|
|
764
|
+
}
|
|
765
|
+
/**
|
|
766
|
+
* <p>A dependency threw an exception.</p>
|
|
767
|
+
* @public
|
|
768
|
+
*/
|
|
769
|
+
export declare class FailedDependencyFault extends __BaseException {
|
|
770
|
+
readonly name: "FailedDependencyFault";
|
|
771
|
+
readonly $fault: "client";
|
|
772
|
+
/**
|
|
773
|
+
* @internal
|
|
774
|
+
*/
|
|
775
|
+
constructor(opts: __ExceptionOptionType<FailedDependencyFault, __BaseException>);
|
|
776
|
+
}
|
|
777
|
+
/**
|
|
778
|
+
* <p>The action or operation requested isn't valid.</p>
|
|
779
|
+
* @public
|
|
780
|
+
*/
|
|
781
|
+
export declare class InvalidOperationFault extends __BaseException {
|
|
782
|
+
readonly name: "InvalidOperationFault";
|
|
783
|
+
readonly $fault: "client";
|
|
784
|
+
/**
|
|
785
|
+
* @internal
|
|
786
|
+
*/
|
|
787
|
+
constructor(opts: __ExceptionOptionType<InvalidOperationFault, __BaseException>);
|
|
788
|
+
}
|
|
789
|
+
/**
|
|
790
|
+
* <p>The resource you are attempting to create already exists.</p>
|
|
791
|
+
* @public
|
|
792
|
+
*/
|
|
793
|
+
export declare class ResourceAlreadyExistsFault extends __BaseException {
|
|
794
|
+
readonly name: "ResourceAlreadyExistsFault";
|
|
795
|
+
readonly $fault: "client";
|
|
796
|
+
/**
|
|
797
|
+
* <p></p>
|
|
798
|
+
* @public
|
|
799
|
+
*/
|
|
800
|
+
resourceArn?: string;
|
|
801
|
+
/**
|
|
802
|
+
* @internal
|
|
803
|
+
*/
|
|
804
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsFault, __BaseException>);
|
|
805
|
+
}
|
|
806
|
+
/**
|
|
807
|
+
* <p>The quota for this resource quota has been exceeded.</p>
|
|
808
|
+
* @public
|
|
809
|
+
*/
|
|
810
|
+
export declare class ResourceQuotaExceededFault extends __BaseException {
|
|
811
|
+
readonly name: "ResourceQuotaExceededFault";
|
|
812
|
+
readonly $fault: "client";
|
|
813
|
+
/**
|
|
814
|
+
* @internal
|
|
815
|
+
*/
|
|
816
|
+
constructor(opts: __ExceptionOptionType<ResourceQuotaExceededFault, __BaseException>);
|
|
817
|
+
}
|
|
496
818
|
/**
|
|
497
819
|
* @public
|
|
498
820
|
* @enum
|
|
@@ -1055,35 +1377,6 @@ export interface CreateDataProviderResponse {
|
|
|
1055
1377
|
*/
|
|
1056
1378
|
DataProvider?: DataProvider;
|
|
1057
1379
|
}
|
|
1058
|
-
/**
|
|
1059
|
-
* <p>The resource you are attempting to create already exists.</p>
|
|
1060
|
-
* @public
|
|
1061
|
-
*/
|
|
1062
|
-
export declare class ResourceAlreadyExistsFault extends __BaseException {
|
|
1063
|
-
readonly name: "ResourceAlreadyExistsFault";
|
|
1064
|
-
readonly $fault: "client";
|
|
1065
|
-
/**
|
|
1066
|
-
* <p></p>
|
|
1067
|
-
* @public
|
|
1068
|
-
*/
|
|
1069
|
-
resourceArn?: string;
|
|
1070
|
-
/**
|
|
1071
|
-
* @internal
|
|
1072
|
-
*/
|
|
1073
|
-
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsFault, __BaseException>);
|
|
1074
|
-
}
|
|
1075
|
-
/**
|
|
1076
|
-
* <p>The quota for this resource quota has been exceeded.</p>
|
|
1077
|
-
* @public
|
|
1078
|
-
*/
|
|
1079
|
-
export declare class ResourceQuotaExceededFault extends __BaseException {
|
|
1080
|
-
readonly name: "ResourceQuotaExceededFault";
|
|
1081
|
-
readonly $fault: "client";
|
|
1082
|
-
/**
|
|
1083
|
-
* @internal
|
|
1084
|
-
*/
|
|
1085
|
-
constructor(opts: __ExceptionOptionType<ResourceQuotaExceededFault, __BaseException>);
|
|
1086
|
-
}
|
|
1087
1380
|
/**
|
|
1088
1381
|
* <p> The settings in JSON format for the DMS Transfer type source endpoint. </p>
|
|
1089
1382
|
* @public
|
|
@@ -4066,7 +4359,9 @@ export interface CreateEndpointMessage {
|
|
|
4066
4359
|
* <code>"aurora-postgresql"</code>, <code>"opensearch"</code>, <code>"redshift"</code>, <code>"s3"</code>,
|
|
4067
4360
|
* <code>"db2"</code>, <code>"db2-zos"</code>, <code>"azuredb"</code>, <code>"sybase"</code>, <code>"dynamodb"</code>, <code>"mongodb"</code>,
|
|
4068
4361
|
* <code>"kinesis"</code>, <code>"kafka"</code>, <code>"elasticsearch"</code>, <code>"docdb"</code>,
|
|
4069
|
-
* <code>"sqlserver"</code>, <code>"neptune"</code>,
|
|
4362
|
+
* <code>"sqlserver"</code>, <code>"neptune"</code>, <code>"babelfish"</code>,
|
|
4363
|
+
* <code>redshift-serverless</code>, <code>aurora-serverless</code>, <code>aurora-postgresql-serverless</code>,
|
|
4364
|
+
* <code>gcp-mysql</code>, <code>azure-sql-managed-instance</code>, <code>redis</code>, <code>dms-transfer</code>.</p>
|
|
4070
4365
|
* @public
|
|
4071
4366
|
*/
|
|
4072
4367
|
EngineName: string | undefined;
|
|
@@ -5250,11 +5545,9 @@ export interface ComputeConfig {
|
|
|
5250
5545
|
* <p>Specifies the minimum value of the DMS capacity units (DCUs) for which a given DMS
|
|
5251
5546
|
* Serverless replication can be provisioned. A single DCU is 2GB of RAM, with 1 DCU as the minimum value
|
|
5252
5547
|
* allowed. The list of valid DCU values includes 1, 2, 4, 8, 16, 32, 64, 128, 192, 256, and 384. So, the minimum DCU
|
|
5253
|
-
* value that you can specify for DMS Serverless is 1.
|
|
5254
|
-
*
|
|
5255
|
-
*
|
|
5256
|
-
* source activity or DMS can't otherwise identify a more appropriate value, it sets this parameter to
|
|
5257
|
-
* the minimum DCU value allowed, 1.</p>
|
|
5548
|
+
* value that you can specify for DMS Serverless is 1. If you don't set this value, DMS sets this parameter to the
|
|
5549
|
+
* minimum DCU value allowed, 1. If there is no current source activity, DMS scales down your replication until it
|
|
5550
|
+
* reaches the value specified in <code>MinCapacityUnits</code>.</p>
|
|
5258
5551
|
* @public
|
|
5259
5552
|
*/
|
|
5260
5553
|
MinCapacityUnits?: number;
|
|
@@ -5288,19 +5581,6 @@ export interface ComputeConfig {
|
|
|
5288
5581
|
*/
|
|
5289
5582
|
VpcSecurityGroupIds?: string[];
|
|
5290
5583
|
}
|
|
5291
|
-
/**
|
|
5292
|
-
* @public
|
|
5293
|
-
* @enum
|
|
5294
|
-
*/
|
|
5295
|
-
export declare const MigrationTypeValue: {
|
|
5296
|
-
readonly CDC: "cdc";
|
|
5297
|
-
readonly FULL_LOAD: "full-load";
|
|
5298
|
-
readonly FULL_LOAD_AND_CDC: "full-load-and-cdc";
|
|
5299
|
-
};
|
|
5300
|
-
/**
|
|
5301
|
-
* @public
|
|
5302
|
-
*/
|
|
5303
|
-
export type MigrationTypeValue = (typeof MigrationTypeValue)[keyof typeof MigrationTypeValue];
|
|
5304
5584
|
/**
|
|
5305
5585
|
* <p></p>
|
|
5306
5586
|
* @public
|
|
@@ -6072,7 +6352,7 @@ export interface CreateReplicationSubnetGroupMessage {
|
|
|
6072
6352
|
/**
|
|
6073
6353
|
* <p>The name for the replication subnet group. This value is stored as a lowercase
|
|
6074
6354
|
* string.</p>
|
|
6075
|
-
* <p>Constraints: Must contain no more than 255 alphanumeric characters, periods,
|
|
6355
|
+
* <p>Constraints: Must contain no more than 255 alphanumeric characters, periods,
|
|
6076
6356
|
* underscores, or hyphens. Must not be "default".</p>
|
|
6077
6357
|
* <p>Example: <code>mySubnetgroup</code>
|
|
6078
6358
|
* </p>
|
|
@@ -6780,6 +7060,26 @@ export interface DeleteConnectionResponse {
|
|
|
6780
7060
|
*/
|
|
6781
7061
|
Connection?: Connection;
|
|
6782
7062
|
}
|
|
7063
|
+
/**
|
|
7064
|
+
* @public
|
|
7065
|
+
*/
|
|
7066
|
+
export interface DeleteDataMigrationMessage {
|
|
7067
|
+
/**
|
|
7068
|
+
* <p>The identifier (name or ARN) of the data migration to delete.</p>
|
|
7069
|
+
* @public
|
|
7070
|
+
*/
|
|
7071
|
+
DataMigrationIdentifier: string | undefined;
|
|
7072
|
+
}
|
|
7073
|
+
/**
|
|
7074
|
+
* @public
|
|
7075
|
+
*/
|
|
7076
|
+
export interface DeleteDataMigrationResponse {
|
|
7077
|
+
/**
|
|
7078
|
+
* <p>The deleted data migration.</p>
|
|
7079
|
+
* @public
|
|
7080
|
+
*/
|
|
7081
|
+
DataMigration?: DataMigration;
|
|
7082
|
+
}
|
|
6783
7083
|
/**
|
|
6784
7084
|
* @public
|
|
6785
7085
|
*/
|
|
@@ -6886,18 +7186,6 @@ export interface DeleteFleetAdvisorDatabasesResponse {
|
|
|
6886
7186
|
*/
|
|
6887
7187
|
DatabaseIds?: string[];
|
|
6888
7188
|
}
|
|
6889
|
-
/**
|
|
6890
|
-
* <p>The action or operation requested isn't valid.</p>
|
|
6891
|
-
* @public
|
|
6892
|
-
*/
|
|
6893
|
-
export declare class InvalidOperationFault extends __BaseException {
|
|
6894
|
-
readonly name: "InvalidOperationFault";
|
|
6895
|
-
readonly $fault: "client";
|
|
6896
|
-
/**
|
|
6897
|
-
* @internal
|
|
6898
|
-
*/
|
|
6899
|
-
constructor(opts: __ExceptionOptionType<InvalidOperationFault, __BaseException>);
|
|
6900
|
-
}
|
|
6901
7189
|
/**
|
|
6902
7190
|
* @public
|
|
6903
7191
|
*/
|
|
@@ -7281,6 +7569,59 @@ export interface DescribeConversionConfigurationResponse {
|
|
|
7281
7569
|
*/
|
|
7282
7570
|
ConversionConfiguration?: string;
|
|
7283
7571
|
}
|
|
7572
|
+
/**
|
|
7573
|
+
* @public
|
|
7574
|
+
*/
|
|
7575
|
+
export interface DescribeDataMigrationsMessage {
|
|
7576
|
+
/**
|
|
7577
|
+
* <p>Filters applied to the data migrations.</p>
|
|
7578
|
+
* @public
|
|
7579
|
+
*/
|
|
7580
|
+
Filters?: Filter[];
|
|
7581
|
+
/**
|
|
7582
|
+
* <p>The maximum number of records to include in the response. If more records exist than the specified
|
|
7583
|
+
* <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that
|
|
7584
|
+
* the remaining results can be retrieved. </p>
|
|
7585
|
+
* @public
|
|
7586
|
+
*/
|
|
7587
|
+
MaxRecords?: number;
|
|
7588
|
+
/**
|
|
7589
|
+
* <p>An optional pagination token provided by a previous request. If this parameter is specified,
|
|
7590
|
+
* the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>
|
|
7591
|
+
* @public
|
|
7592
|
+
*/
|
|
7593
|
+
Marker?: string;
|
|
7594
|
+
/**
|
|
7595
|
+
* <p>An option to set to avoid returning information about settings. Use this to reduce
|
|
7596
|
+
* overhead when setting information is too large. To use this option, choose
|
|
7597
|
+
* <code>true</code>; otherwise, choose <code>false</code> (the default).</p>
|
|
7598
|
+
* @public
|
|
7599
|
+
*/
|
|
7600
|
+
WithoutSettings?: boolean;
|
|
7601
|
+
/**
|
|
7602
|
+
* <p>An option to set to avoid returning information about statistics. Use this to reduce
|
|
7603
|
+
* overhead when statistics information is too large. To use this option, choose
|
|
7604
|
+
* <code>true</code>; otherwise, choose <code>false</code> (the default).</p>
|
|
7605
|
+
* @public
|
|
7606
|
+
*/
|
|
7607
|
+
WithoutStatistics?: boolean;
|
|
7608
|
+
}
|
|
7609
|
+
/**
|
|
7610
|
+
* @public
|
|
7611
|
+
*/
|
|
7612
|
+
export interface DescribeDataMigrationsResponse {
|
|
7613
|
+
/**
|
|
7614
|
+
* <p>Returns information about the data migrations used in the project.</p>
|
|
7615
|
+
* @public
|
|
7616
|
+
*/
|
|
7617
|
+
DataMigrations?: DataMigration[];
|
|
7618
|
+
/**
|
|
7619
|
+
* <p>An optional pagination token provided by a previous request. If this parameter is specified,
|
|
7620
|
+
* the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>. </p>
|
|
7621
|
+
* @public
|
|
7622
|
+
*/
|
|
7623
|
+
Marker?: string;
|
|
7624
|
+
}
|
|
7284
7625
|
/**
|
|
7285
7626
|
* @public
|
|
7286
7627
|
*/
|
|
@@ -10854,182 +11195,21 @@ export interface DescribeTableStatisticsResponse {
|
|
|
10854
11195
|
Marker?: string;
|
|
10855
11196
|
}
|
|
10856
11197
|
/**
|
|
10857
|
-
* @
|
|
10858
|
-
* @enum
|
|
10859
|
-
*/
|
|
10860
|
-
export declare const AssessmentReportType: {
|
|
10861
|
-
readonly CSV: "csv";
|
|
10862
|
-
readonly PDF: "pdf";
|
|
10863
|
-
};
|
|
10864
|
-
/**
|
|
10865
|
-
* @public
|
|
10866
|
-
*/
|
|
10867
|
-
export type AssessmentReportType = (typeof AssessmentReportType)[keyof typeof AssessmentReportType];
|
|
10868
|
-
/**
|
|
10869
|
-
* @public
|
|
10870
|
-
*/
|
|
10871
|
-
export interface ExportMetadataModelAssessmentMessage {
|
|
10872
|
-
/**
|
|
10873
|
-
* <p>The migration project name or Amazon Resource Name (ARN).</p>
|
|
10874
|
-
* @public
|
|
10875
|
-
*/
|
|
10876
|
-
MigrationProjectIdentifier: string | undefined;
|
|
10877
|
-
/**
|
|
10878
|
-
* <p>A value that specifies the database objects to assess.</p>
|
|
10879
|
-
* @public
|
|
10880
|
-
*/
|
|
10881
|
-
SelectionRules: string | undefined;
|
|
10882
|
-
/**
|
|
10883
|
-
* <p>The name of the assessment file to create in your Amazon S3 bucket.</p>
|
|
10884
|
-
* @public
|
|
10885
|
-
*/
|
|
10886
|
-
FileName?: string;
|
|
10887
|
-
/**
|
|
10888
|
-
* <p>The file format of the assessment file.</p>
|
|
10889
|
-
* @public
|
|
10890
|
-
*/
|
|
10891
|
-
AssessmentReportTypes?: AssessmentReportType[];
|
|
10892
|
-
}
|
|
10893
|
-
/**
|
|
10894
|
-
* <p>Provides information about an exported metadata model assessment.</p>
|
|
10895
|
-
* @public
|
|
10896
|
-
*/
|
|
10897
|
-
export interface ExportMetadataModelAssessmentResultEntry {
|
|
10898
|
-
/**
|
|
10899
|
-
* <p>The object key for the object containing the exported metadata model assessment.</p>
|
|
10900
|
-
* @public
|
|
10901
|
-
*/
|
|
10902
|
-
S3ObjectKey?: string;
|
|
10903
|
-
/**
|
|
10904
|
-
* <p>The URL for the object containing the exported metadata model assessment.</p>
|
|
10905
|
-
* @public
|
|
10906
|
-
*/
|
|
10907
|
-
ObjectURL?: string;
|
|
10908
|
-
}
|
|
10909
|
-
/**
|
|
10910
|
-
* @public
|
|
10911
|
-
*/
|
|
10912
|
-
export interface ExportMetadataModelAssessmentResponse {
|
|
10913
|
-
/**
|
|
10914
|
-
* <p>The Amazon S3 details for an assessment exported in PDF format.</p>
|
|
10915
|
-
* @public
|
|
10916
|
-
*/
|
|
10917
|
-
PdfReport?: ExportMetadataModelAssessmentResultEntry;
|
|
10918
|
-
/**
|
|
10919
|
-
* <p>The Amazon S3 details for an assessment exported in CSV format.</p>
|
|
10920
|
-
* @public
|
|
10921
|
-
*/
|
|
10922
|
-
CsvReport?: ExportMetadataModelAssessmentResultEntry;
|
|
10923
|
-
}
|
|
10924
|
-
/**
|
|
10925
|
-
* @public
|
|
10926
|
-
*/
|
|
10927
|
-
export interface ImportCertificateMessage {
|
|
10928
|
-
/**
|
|
10929
|
-
* <p>A customer-assigned name for the certificate. Identifiers must begin with a letter and
|
|
10930
|
-
* must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or
|
|
10931
|
-
* contain two consecutive hyphens.</p>
|
|
10932
|
-
* @public
|
|
10933
|
-
*/
|
|
10934
|
-
CertificateIdentifier: string | undefined;
|
|
10935
|
-
/**
|
|
10936
|
-
* <p>The contents of a <code>.pem</code> file, which contains an X.509 certificate.</p>
|
|
10937
|
-
* @public
|
|
10938
|
-
*/
|
|
10939
|
-
CertificatePem?: string;
|
|
10940
|
-
/**
|
|
10941
|
-
* <p>The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a <code>.sso</code> file
|
|
10942
|
-
* using the <code>fileb://</code> prefix. You can't provide the certificate inline.</p>
|
|
10943
|
-
* <p>Example: <code>filebase64("$\{path.root\}/rds-ca-2019-root.sso")</code>
|
|
10944
|
-
* </p>
|
|
10945
|
-
* @public
|
|
10946
|
-
*/
|
|
10947
|
-
CertificateWallet?: Uint8Array;
|
|
10948
|
-
/**
|
|
10949
|
-
* <p>The tags associated with the certificate.</p>
|
|
10950
|
-
* @public
|
|
10951
|
-
*/
|
|
10952
|
-
Tags?: Tag[];
|
|
10953
|
-
}
|
|
10954
|
-
/**
|
|
10955
|
-
* @public
|
|
10956
|
-
*/
|
|
10957
|
-
export interface ImportCertificateResponse {
|
|
10958
|
-
/**
|
|
10959
|
-
* <p>The certificate to be uploaded.</p>
|
|
10960
|
-
* @public
|
|
10961
|
-
*/
|
|
10962
|
-
Certificate?: Certificate;
|
|
10963
|
-
}
|
|
10964
|
-
/**
|
|
10965
|
-
* <p>The certificate was not valid.</p>
|
|
10966
|
-
* @public
|
|
10967
|
-
*/
|
|
10968
|
-
export declare class InvalidCertificateFault extends __BaseException {
|
|
10969
|
-
readonly name: "InvalidCertificateFault";
|
|
10970
|
-
readonly $fault: "client";
|
|
10971
|
-
/**
|
|
10972
|
-
* @internal
|
|
10973
|
-
*/
|
|
10974
|
-
constructor(opts: __ExceptionOptionType<InvalidCertificateFault, __BaseException>);
|
|
10975
|
-
}
|
|
10976
|
-
/**
|
|
10977
|
-
* <p></p>
|
|
10978
|
-
* @public
|
|
11198
|
+
* @internal
|
|
10979
11199
|
*/
|
|
10980
|
-
export
|
|
10981
|
-
/**
|
|
10982
|
-
* <p>The Amazon Resource Name (ARN) string that uniquely identifies the DMS resource to
|
|
10983
|
-
* list tags for. This returns a list of keys (names of tags) created for the resource and
|
|
10984
|
-
* their associated tag values.</p>
|
|
10985
|
-
* @public
|
|
10986
|
-
*/
|
|
10987
|
-
ResourceArn?: string;
|
|
10988
|
-
/**
|
|
10989
|
-
* <p>List of ARNs that identify multiple DMS resources that you want to list tags for. This
|
|
10990
|
-
* returns a list of keys (tag names) and their associated tag values. It also returns each
|
|
10991
|
-
* tag's associated <code>ResourceArn</code> value, which is the ARN of the resource for which
|
|
10992
|
-
* each listed tag is created. </p>
|
|
10993
|
-
* @public
|
|
10994
|
-
*/
|
|
10995
|
-
ResourceArnList?: string[];
|
|
10996
|
-
}
|
|
11200
|
+
export declare const CreateDataMigrationMessageFilterSensitiveLog: (obj: CreateDataMigrationMessage) => any;
|
|
10997
11201
|
/**
|
|
10998
|
-
*
|
|
10999
|
-
* @public
|
|
11202
|
+
* @internal
|
|
11000
11203
|
*/
|
|
11001
|
-
export
|
|
11002
|
-
/**
|
|
11003
|
-
* <p>A list of tags for the resource.</p>
|
|
11004
|
-
* @public
|
|
11005
|
-
*/
|
|
11006
|
-
TagList?: Tag[];
|
|
11007
|
-
}
|
|
11204
|
+
export declare const DataMigrationSettingsFilterSensitiveLog: (obj: DataMigrationSettings) => any;
|
|
11008
11205
|
/**
|
|
11009
|
-
* @
|
|
11206
|
+
* @internal
|
|
11010
11207
|
*/
|
|
11011
|
-
export
|
|
11012
|
-
/**
|
|
11013
|
-
* <p>The migration project name or Amazon Resource Name (ARN).</p>
|
|
11014
|
-
* @public
|
|
11015
|
-
*/
|
|
11016
|
-
MigrationProjectIdentifier: string | undefined;
|
|
11017
|
-
/**
|
|
11018
|
-
* <p>The new conversion configuration.</p>
|
|
11019
|
-
* @public
|
|
11020
|
-
*/
|
|
11021
|
-
ConversionConfiguration: string | undefined;
|
|
11022
|
-
}
|
|
11208
|
+
export declare const DataMigrationFilterSensitiveLog: (obj: DataMigration) => any;
|
|
11023
11209
|
/**
|
|
11024
|
-
* @
|
|
11210
|
+
* @internal
|
|
11025
11211
|
*/
|
|
11026
|
-
export
|
|
11027
|
-
/**
|
|
11028
|
-
* <p>The name or Amazon Resource Name (ARN) of the modified configuration.</p>
|
|
11029
|
-
* @public
|
|
11030
|
-
*/
|
|
11031
|
-
MigrationProjectIdentifier?: string;
|
|
11032
|
-
}
|
|
11212
|
+
export declare const CreateDataMigrationResponseFilterSensitiveLog: (obj: CreateDataMigrationResponse) => any;
|
|
11033
11213
|
/**
|
|
11034
11214
|
* @internal
|
|
11035
11215
|
*/
|
|
@@ -11090,6 +11270,10 @@ export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
|
11090
11270
|
* @internal
|
|
11091
11271
|
*/
|
|
11092
11272
|
export declare const CreateEndpointResponseFilterSensitiveLog: (obj: CreateEndpointResponse) => any;
|
|
11273
|
+
/**
|
|
11274
|
+
* @internal
|
|
11275
|
+
*/
|
|
11276
|
+
export declare const DeleteDataMigrationResponseFilterSensitiveLog: (obj: DeleteDataMigrationResponse) => any;
|
|
11093
11277
|
/**
|
|
11094
11278
|
* @internal
|
|
11095
11279
|
*/
|
|
@@ -11097,8 +11281,8 @@ export declare const DeleteEndpointResponseFilterSensitiveLog: (obj: DeleteEndpo
|
|
|
11097
11281
|
/**
|
|
11098
11282
|
* @internal
|
|
11099
11283
|
*/
|
|
11100
|
-
export declare const
|
|
11284
|
+
export declare const DescribeDataMigrationsResponseFilterSensitiveLog: (obj: DescribeDataMigrationsResponse) => any;
|
|
11101
11285
|
/**
|
|
11102
11286
|
* @internal
|
|
11103
11287
|
*/
|
|
11104
|
-
export declare const
|
|
11288
|
+
export declare const DescribeEndpointsResponseFilterSensitiveLog: (obj: DescribeEndpointsResponse) => any;
|