@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
|
@@ -2,6 +2,7 @@ export * from "./AddTagsToResourceCommand";
|
|
|
2
2
|
export * from "./ApplyPendingMaintenanceActionCommand";
|
|
3
3
|
export * from "./BatchStartRecommendationsCommand";
|
|
4
4
|
export * from "./CancelReplicationTaskAssessmentRunCommand";
|
|
5
|
+
export * from "./CreateDataMigrationCommand";
|
|
5
6
|
export * from "./CreateDataProviderCommand";
|
|
6
7
|
export * from "./CreateEndpointCommand";
|
|
7
8
|
export * from "./CreateEventSubscriptionCommand";
|
|
@@ -14,6 +15,7 @@ export * from "./CreateReplicationSubnetGroupCommand";
|
|
|
14
15
|
export * from "./CreateReplicationTaskCommand";
|
|
15
16
|
export * from "./DeleteCertificateCommand";
|
|
16
17
|
export * from "./DeleteConnectionCommand";
|
|
18
|
+
export * from "./DeleteDataMigrationCommand";
|
|
17
19
|
export * from "./DeleteDataProviderCommand";
|
|
18
20
|
export * from "./DeleteEndpointCommand";
|
|
19
21
|
export * from "./DeleteEventSubscriptionCommand";
|
|
@@ -31,6 +33,7 @@ export * from "./DescribeApplicableIndividualAssessmentsCommand";
|
|
|
31
33
|
export * from "./DescribeCertificatesCommand";
|
|
32
34
|
export * from "./DescribeConnectionsCommand";
|
|
33
35
|
export * from "./DescribeConversionConfigurationCommand";
|
|
36
|
+
export * from "./DescribeDataMigrationsCommand";
|
|
34
37
|
export * from "./DescribeDataProvidersCommand";
|
|
35
38
|
export * from "./DescribeEndpointSettingsCommand";
|
|
36
39
|
export * from "./DescribeEndpointTypesCommand";
|
|
@@ -73,6 +76,7 @@ export * from "./ExportMetadataModelAssessmentCommand";
|
|
|
73
76
|
export * from "./ImportCertificateCommand";
|
|
74
77
|
export * from "./ListTagsForResourceCommand";
|
|
75
78
|
export * from "./ModifyConversionConfigurationCommand";
|
|
79
|
+
export * from "./ModifyDataMigrationCommand";
|
|
76
80
|
export * from "./ModifyDataProviderCommand";
|
|
77
81
|
export * from "./ModifyEndpointCommand";
|
|
78
82
|
export * from "./ModifyEventSubscriptionCommand";
|
|
@@ -89,6 +93,7 @@ export * from "./ReloadReplicationTablesCommand";
|
|
|
89
93
|
export * from "./ReloadTablesCommand";
|
|
90
94
|
export * from "./RemoveTagsFromResourceCommand";
|
|
91
95
|
export * from "./RunFleetAdvisorLsaAnalysisCommand";
|
|
96
|
+
export * from "./StartDataMigrationCommand";
|
|
92
97
|
export * from "./StartExtensionPackAssociationCommand";
|
|
93
98
|
export * from "./StartMetadataModelAssessmentCommand";
|
|
94
99
|
export * from "./StartMetadataModelConversionCommand";
|
|
@@ -100,6 +105,7 @@ export * from "./StartReplicationCommand";
|
|
|
100
105
|
export * from "./StartReplicationTaskAssessmentCommand";
|
|
101
106
|
export * from "./StartReplicationTaskAssessmentRunCommand";
|
|
102
107
|
export * from "./StartReplicationTaskCommand";
|
|
108
|
+
export * from "./StopDataMigrationCommand";
|
|
103
109
|
export * from "./StopReplicationCommand";
|
|
104
110
|
export * from "./StopReplicationTaskCommand";
|
|
105
111
|
export * from "./TestConnectionCommand";
|
|
@@ -20,6 +20,13 @@ export interface AddTagsToResourceMessage {
|
|
|
20
20
|
Tags: Tag[] | undefined;
|
|
21
21
|
}
|
|
22
22
|
export interface AddTagsToResourceResponse {}
|
|
23
|
+
export declare class InvalidResourceStateFault extends __BaseException {
|
|
24
|
+
readonly name: "InvalidResourceStateFault";
|
|
25
|
+
readonly $fault: "client";
|
|
26
|
+
constructor(
|
|
27
|
+
opts: __ExceptionOptionType<InvalidResourceStateFault, __BaseException>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
23
30
|
export declare class ResourceNotFoundFault extends __BaseException {
|
|
24
31
|
readonly name: "ResourceNotFoundFault";
|
|
25
32
|
readonly $fault: "client";
|
|
@@ -66,13 +73,6 @@ export interface BatchStartRecommendationsErrorEntry {
|
|
|
66
73
|
export interface BatchStartRecommendationsResponse {
|
|
67
74
|
ErrorEntries?: BatchStartRecommendationsErrorEntry[];
|
|
68
75
|
}
|
|
69
|
-
export declare class InvalidResourceStateFault extends __BaseException {
|
|
70
|
-
readonly name: "InvalidResourceStateFault";
|
|
71
|
-
readonly $fault: "client";
|
|
72
|
-
constructor(
|
|
73
|
-
opts: __ExceptionOptionType<InvalidResourceStateFault, __BaseException>
|
|
74
|
-
);
|
|
75
|
-
}
|
|
76
76
|
export interface CancelReplicationTaskAssessmentRunMessage {
|
|
77
77
|
ReplicationTaskAssessmentRunArn: string | undefined;
|
|
78
78
|
}
|
|
@@ -97,6 +97,95 @@ export interface ReplicationTaskAssessmentRun {
|
|
|
97
97
|
export interface CancelReplicationTaskAssessmentRunResponse {
|
|
98
98
|
ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun;
|
|
99
99
|
}
|
|
100
|
+
export declare const MigrationTypeValue: {
|
|
101
|
+
readonly CDC: "cdc";
|
|
102
|
+
readonly FULL_LOAD: "full-load";
|
|
103
|
+
readonly FULL_LOAD_AND_CDC: "full-load-and-cdc";
|
|
104
|
+
};
|
|
105
|
+
export type MigrationTypeValue =
|
|
106
|
+
(typeof MigrationTypeValue)[keyof typeof MigrationTypeValue];
|
|
107
|
+
export interface SourceDataSetting {
|
|
108
|
+
CDCStartPosition?: string;
|
|
109
|
+
CDCStartTime?: Date;
|
|
110
|
+
CDCStopTime?: Date;
|
|
111
|
+
SlotName?: string;
|
|
112
|
+
}
|
|
113
|
+
export interface CreateDataMigrationMessage {
|
|
114
|
+
DataMigrationName?: string;
|
|
115
|
+
MigrationProjectIdentifier: string | undefined;
|
|
116
|
+
DataMigrationType: MigrationTypeValue | undefined;
|
|
117
|
+
ServiceAccessRoleArn: string | undefined;
|
|
118
|
+
EnableCloudwatchLogs?: boolean;
|
|
119
|
+
SourceDataSettings?: SourceDataSetting[];
|
|
120
|
+
NumberOfJobs?: number;
|
|
121
|
+
Tags?: Tag[];
|
|
122
|
+
SelectionRules?: string;
|
|
123
|
+
}
|
|
124
|
+
export interface DataMigrationSettings {
|
|
125
|
+
NumberOfJobs?: number;
|
|
126
|
+
CloudwatchLogsEnabled?: boolean;
|
|
127
|
+
SelectionRules?: string;
|
|
128
|
+
}
|
|
129
|
+
export interface DataMigrationStatistics {
|
|
130
|
+
TablesLoaded?: number;
|
|
131
|
+
ElapsedTimeMillis?: number;
|
|
132
|
+
TablesLoading?: number;
|
|
133
|
+
FullLoadPercentage?: number;
|
|
134
|
+
CDCLatency?: number;
|
|
135
|
+
TablesQueued?: number;
|
|
136
|
+
TablesErrored?: number;
|
|
137
|
+
StartTime?: Date;
|
|
138
|
+
StopTime?: Date;
|
|
139
|
+
}
|
|
140
|
+
export interface DataMigration {
|
|
141
|
+
DataMigrationName?: string;
|
|
142
|
+
DataMigrationArn?: string;
|
|
143
|
+
DataMigrationCreateTime?: Date;
|
|
144
|
+
DataMigrationStartTime?: Date;
|
|
145
|
+
DataMigrationEndTime?: Date;
|
|
146
|
+
ServiceAccessRoleArn?: string;
|
|
147
|
+
MigrationProjectArn?: string;
|
|
148
|
+
DataMigrationType?: MigrationTypeValue;
|
|
149
|
+
DataMigrationSettings?: DataMigrationSettings;
|
|
150
|
+
SourceDataSettings?: SourceDataSetting[];
|
|
151
|
+
DataMigrationStatistics?: DataMigrationStatistics;
|
|
152
|
+
DataMigrationStatus?: string;
|
|
153
|
+
PublicIpAddresses?: string[];
|
|
154
|
+
LastFailureMessage?: string;
|
|
155
|
+
StopReason?: string;
|
|
156
|
+
}
|
|
157
|
+
export interface CreateDataMigrationResponse {
|
|
158
|
+
DataMigration?: DataMigration;
|
|
159
|
+
}
|
|
160
|
+
export declare class FailedDependencyFault extends __BaseException {
|
|
161
|
+
readonly name: "FailedDependencyFault";
|
|
162
|
+
readonly $fault: "client";
|
|
163
|
+
constructor(
|
|
164
|
+
opts: __ExceptionOptionType<FailedDependencyFault, __BaseException>
|
|
165
|
+
);
|
|
166
|
+
}
|
|
167
|
+
export declare class InvalidOperationFault extends __BaseException {
|
|
168
|
+
readonly name: "InvalidOperationFault";
|
|
169
|
+
readonly $fault: "client";
|
|
170
|
+
constructor(
|
|
171
|
+
opts: __ExceptionOptionType<InvalidOperationFault, __BaseException>
|
|
172
|
+
);
|
|
173
|
+
}
|
|
174
|
+
export declare class ResourceAlreadyExistsFault extends __BaseException {
|
|
175
|
+
readonly name: "ResourceAlreadyExistsFault";
|
|
176
|
+
readonly $fault: "client";
|
|
177
|
+
resourceArn?: string;
|
|
178
|
+
constructor(
|
|
179
|
+
opts: __ExceptionOptionType<ResourceAlreadyExistsFault, __BaseException>
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
export declare class ResourceQuotaExceededFault extends __BaseException {
|
|
183
|
+
readonly name: "ResourceQuotaExceededFault";
|
|
184
|
+
readonly $fault: "client";
|
|
185
|
+
constructor(
|
|
186
|
+
opts: __ExceptionOptionType<ResourceQuotaExceededFault, __BaseException>
|
|
187
|
+
);
|
|
188
|
+
}
|
|
100
189
|
export declare const DmsSslModeValue: {
|
|
101
190
|
readonly NONE: "none";
|
|
102
191
|
readonly REQUIRE: "require";
|
|
@@ -320,21 +409,6 @@ export interface DataProvider {
|
|
|
320
409
|
export interface CreateDataProviderResponse {
|
|
321
410
|
DataProvider?: DataProvider;
|
|
322
411
|
}
|
|
323
|
-
export declare class ResourceAlreadyExistsFault extends __BaseException {
|
|
324
|
-
readonly name: "ResourceAlreadyExistsFault";
|
|
325
|
-
readonly $fault: "client";
|
|
326
|
-
resourceArn?: string;
|
|
327
|
-
constructor(
|
|
328
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsFault, __BaseException>
|
|
329
|
-
);
|
|
330
|
-
}
|
|
331
|
-
export declare class ResourceQuotaExceededFault extends __BaseException {
|
|
332
|
-
readonly name: "ResourceQuotaExceededFault";
|
|
333
|
-
readonly $fault: "client";
|
|
334
|
-
constructor(
|
|
335
|
-
opts: __ExceptionOptionType<ResourceQuotaExceededFault, __BaseException>
|
|
336
|
-
);
|
|
337
|
-
}
|
|
338
412
|
export interface DmsTransferSettings {
|
|
339
413
|
ServiceAccessRoleArn?: string;
|
|
340
414
|
BucketName?: string;
|
|
@@ -1077,13 +1151,6 @@ export interface ComputeConfig {
|
|
|
1077
1151
|
ReplicationSubnetGroupId?: string;
|
|
1078
1152
|
VpcSecurityGroupIds?: string[];
|
|
1079
1153
|
}
|
|
1080
|
-
export declare const MigrationTypeValue: {
|
|
1081
|
-
readonly CDC: "cdc";
|
|
1082
|
-
readonly FULL_LOAD: "full-load";
|
|
1083
|
-
readonly FULL_LOAD_AND_CDC: "full-load-and-cdc";
|
|
1084
|
-
};
|
|
1085
|
-
export type MigrationTypeValue =
|
|
1086
|
-
(typeof MigrationTypeValue)[keyof typeof MigrationTypeValue];
|
|
1087
1154
|
export interface CreateReplicationConfigMessage {
|
|
1088
1155
|
ReplicationConfigIdentifier: string | undefined;
|
|
1089
1156
|
SourceEndpointArn: string | undefined;
|
|
@@ -1313,6 +1380,12 @@ export interface Connection {
|
|
|
1313
1380
|
export interface DeleteConnectionResponse {
|
|
1314
1381
|
Connection?: Connection;
|
|
1315
1382
|
}
|
|
1383
|
+
export interface DeleteDataMigrationMessage {
|
|
1384
|
+
DataMigrationIdentifier: string | undefined;
|
|
1385
|
+
}
|
|
1386
|
+
export interface DeleteDataMigrationResponse {
|
|
1387
|
+
DataMigration?: DataMigration;
|
|
1388
|
+
}
|
|
1316
1389
|
export interface DeleteDataProviderMessage {
|
|
1317
1390
|
DataProviderIdentifier: string | undefined;
|
|
1318
1391
|
}
|
|
@@ -1347,13 +1420,6 @@ export interface DeleteFleetAdvisorDatabasesRequest {
|
|
|
1347
1420
|
export interface DeleteFleetAdvisorDatabasesResponse {
|
|
1348
1421
|
DatabaseIds?: string[];
|
|
1349
1422
|
}
|
|
1350
|
-
export declare class InvalidOperationFault extends __BaseException {
|
|
1351
|
-
readonly name: "InvalidOperationFault";
|
|
1352
|
-
readonly $fault: "client";
|
|
1353
|
-
constructor(
|
|
1354
|
-
opts: __ExceptionOptionType<InvalidOperationFault, __BaseException>
|
|
1355
|
-
);
|
|
1356
|
-
}
|
|
1357
1423
|
export interface DeleteInstanceProfileMessage {
|
|
1358
1424
|
InstanceProfileIdentifier: string | undefined;
|
|
1359
1425
|
}
|
|
@@ -1441,6 +1507,17 @@ export interface DescribeConversionConfigurationResponse {
|
|
|
1441
1507
|
MigrationProjectIdentifier?: string;
|
|
1442
1508
|
ConversionConfiguration?: string;
|
|
1443
1509
|
}
|
|
1510
|
+
export interface DescribeDataMigrationsMessage {
|
|
1511
|
+
Filters?: Filter[];
|
|
1512
|
+
MaxRecords?: number;
|
|
1513
|
+
Marker?: string;
|
|
1514
|
+
WithoutSettings?: boolean;
|
|
1515
|
+
WithoutStatistics?: boolean;
|
|
1516
|
+
}
|
|
1517
|
+
export interface DescribeDataMigrationsResponse {
|
|
1518
|
+
DataMigrations?: DataMigration[];
|
|
1519
|
+
Marker?: string;
|
|
1520
|
+
}
|
|
1444
1521
|
export interface DescribeDataProvidersMessage {
|
|
1445
1522
|
Filters?: Filter[];
|
|
1446
1523
|
MaxRecords?: number;
|
|
@@ -2141,56 +2218,18 @@ export interface DescribeTableStatisticsResponse {
|
|
|
2141
2218
|
TableStatistics?: TableStatistics[];
|
|
2142
2219
|
Marker?: string;
|
|
2143
2220
|
}
|
|
2144
|
-
export declare const
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
export
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
export interface ExportMetadataModelAssessmentResultEntry {
|
|
2157
|
-
S3ObjectKey?: string;
|
|
2158
|
-
ObjectURL?: string;
|
|
2159
|
-
}
|
|
2160
|
-
export interface ExportMetadataModelAssessmentResponse {
|
|
2161
|
-
PdfReport?: ExportMetadataModelAssessmentResultEntry;
|
|
2162
|
-
CsvReport?: ExportMetadataModelAssessmentResultEntry;
|
|
2163
|
-
}
|
|
2164
|
-
export interface ImportCertificateMessage {
|
|
2165
|
-
CertificateIdentifier: string | undefined;
|
|
2166
|
-
CertificatePem?: string;
|
|
2167
|
-
CertificateWallet?: Uint8Array;
|
|
2168
|
-
Tags?: Tag[];
|
|
2169
|
-
}
|
|
2170
|
-
export interface ImportCertificateResponse {
|
|
2171
|
-
Certificate?: Certificate;
|
|
2172
|
-
}
|
|
2173
|
-
export declare class InvalidCertificateFault extends __BaseException {
|
|
2174
|
-
readonly name: "InvalidCertificateFault";
|
|
2175
|
-
readonly $fault: "client";
|
|
2176
|
-
constructor(
|
|
2177
|
-
opts: __ExceptionOptionType<InvalidCertificateFault, __BaseException>
|
|
2178
|
-
);
|
|
2179
|
-
}
|
|
2180
|
-
export interface ListTagsForResourceMessage {
|
|
2181
|
-
ResourceArn?: string;
|
|
2182
|
-
ResourceArnList?: string[];
|
|
2183
|
-
}
|
|
2184
|
-
export interface ListTagsForResourceResponse {
|
|
2185
|
-
TagList?: Tag[];
|
|
2186
|
-
}
|
|
2187
|
-
export interface ModifyConversionConfigurationMessage {
|
|
2188
|
-
MigrationProjectIdentifier: string | undefined;
|
|
2189
|
-
ConversionConfiguration: string | undefined;
|
|
2190
|
-
}
|
|
2191
|
-
export interface ModifyConversionConfigurationResponse {
|
|
2192
|
-
MigrationProjectIdentifier?: string;
|
|
2193
|
-
}
|
|
2221
|
+
export declare const CreateDataMigrationMessageFilterSensitiveLog: (
|
|
2222
|
+
obj: CreateDataMigrationMessage
|
|
2223
|
+
) => any;
|
|
2224
|
+
export declare const DataMigrationSettingsFilterSensitiveLog: (
|
|
2225
|
+
obj: DataMigrationSettings
|
|
2226
|
+
) => any;
|
|
2227
|
+
export declare const DataMigrationFilterSensitiveLog: (
|
|
2228
|
+
obj: DataMigration
|
|
2229
|
+
) => any;
|
|
2230
|
+
export declare const CreateDataMigrationResponseFilterSensitiveLog: (
|
|
2231
|
+
obj: CreateDataMigrationResponse
|
|
2232
|
+
) => any;
|
|
2194
2233
|
export declare const DocDbSettingsFilterSensitiveLog: (
|
|
2195
2234
|
obj: DocDbSettings
|
|
2196
2235
|
) => any;
|
|
@@ -2234,12 +2273,15 @@ export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
|
2234
2273
|
export declare const CreateEndpointResponseFilterSensitiveLog: (
|
|
2235
2274
|
obj: CreateEndpointResponse
|
|
2236
2275
|
) => any;
|
|
2276
|
+
export declare const DeleteDataMigrationResponseFilterSensitiveLog: (
|
|
2277
|
+
obj: DeleteDataMigrationResponse
|
|
2278
|
+
) => any;
|
|
2237
2279
|
export declare const DeleteEndpointResponseFilterSensitiveLog: (
|
|
2238
2280
|
obj: DeleteEndpointResponse
|
|
2239
2281
|
) => any;
|
|
2282
|
+
export declare const DescribeDataMigrationsResponseFilterSensitiveLog: (
|
|
2283
|
+
obj: DescribeDataMigrationsResponse
|
|
2284
|
+
) => any;
|
|
2240
2285
|
export declare const DescribeEndpointsResponseFilterSensitiveLog: (
|
|
2241
2286
|
obj: DescribeEndpointsResponse
|
|
2242
2287
|
) => any;
|
|
2243
|
-
export declare const ImportCertificateMessageFilterSensitiveLog: (
|
|
2244
|
-
obj: ImportCertificateMessage
|
|
2245
|
-
) => any;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { DatabaseMigrationServiceServiceException as __BaseException } from "./DatabaseMigrationServiceServiceException";
|
|
3
3
|
import {
|
|
4
|
+
Certificate,
|
|
4
5
|
ComputeConfig,
|
|
5
6
|
Connection,
|
|
7
|
+
DataMigration,
|
|
6
8
|
DataProvider,
|
|
7
9
|
DataProviderDescriptorDefinition,
|
|
8
10
|
DataProviderSettings,
|
|
@@ -39,9 +41,74 @@ import {
|
|
|
39
41
|
ReplicationTaskAssessmentRun,
|
|
40
42
|
S3Settings,
|
|
41
43
|
SCApplicationAttributes,
|
|
44
|
+
SourceDataSetting,
|
|
42
45
|
SybaseSettings,
|
|
46
|
+
Tag,
|
|
43
47
|
TimestreamSettings,
|
|
44
48
|
} from "./models_0";
|
|
49
|
+
export declare const AssessmentReportType: {
|
|
50
|
+
readonly CSV: "csv";
|
|
51
|
+
readonly PDF: "pdf";
|
|
52
|
+
};
|
|
53
|
+
export type AssessmentReportType =
|
|
54
|
+
(typeof AssessmentReportType)[keyof typeof AssessmentReportType];
|
|
55
|
+
export interface ExportMetadataModelAssessmentMessage {
|
|
56
|
+
MigrationProjectIdentifier: string | undefined;
|
|
57
|
+
SelectionRules: string | undefined;
|
|
58
|
+
FileName?: string;
|
|
59
|
+
AssessmentReportTypes?: AssessmentReportType[];
|
|
60
|
+
}
|
|
61
|
+
export interface ExportMetadataModelAssessmentResultEntry {
|
|
62
|
+
S3ObjectKey?: string;
|
|
63
|
+
ObjectURL?: string;
|
|
64
|
+
}
|
|
65
|
+
export interface ExportMetadataModelAssessmentResponse {
|
|
66
|
+
PdfReport?: ExportMetadataModelAssessmentResultEntry;
|
|
67
|
+
CsvReport?: ExportMetadataModelAssessmentResultEntry;
|
|
68
|
+
}
|
|
69
|
+
export interface ImportCertificateMessage {
|
|
70
|
+
CertificateIdentifier: string | undefined;
|
|
71
|
+
CertificatePem?: string;
|
|
72
|
+
CertificateWallet?: Uint8Array;
|
|
73
|
+
Tags?: Tag[];
|
|
74
|
+
}
|
|
75
|
+
export interface ImportCertificateResponse {
|
|
76
|
+
Certificate?: Certificate;
|
|
77
|
+
}
|
|
78
|
+
export declare class InvalidCertificateFault extends __BaseException {
|
|
79
|
+
readonly name: "InvalidCertificateFault";
|
|
80
|
+
readonly $fault: "client";
|
|
81
|
+
constructor(
|
|
82
|
+
opts: __ExceptionOptionType<InvalidCertificateFault, __BaseException>
|
|
83
|
+
);
|
|
84
|
+
}
|
|
85
|
+
export interface ListTagsForResourceMessage {
|
|
86
|
+
ResourceArn?: string;
|
|
87
|
+
ResourceArnList?: string[];
|
|
88
|
+
}
|
|
89
|
+
export interface ListTagsForResourceResponse {
|
|
90
|
+
TagList?: Tag[];
|
|
91
|
+
}
|
|
92
|
+
export interface ModifyConversionConfigurationMessage {
|
|
93
|
+
MigrationProjectIdentifier: string | undefined;
|
|
94
|
+
ConversionConfiguration: string | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface ModifyConversionConfigurationResponse {
|
|
97
|
+
MigrationProjectIdentifier?: string;
|
|
98
|
+
}
|
|
99
|
+
export interface ModifyDataMigrationMessage {
|
|
100
|
+
DataMigrationIdentifier: string | undefined;
|
|
101
|
+
DataMigrationName?: string;
|
|
102
|
+
EnableCloudwatchLogs?: boolean;
|
|
103
|
+
ServiceAccessRoleArn?: string;
|
|
104
|
+
DataMigrationType?: MigrationTypeValue;
|
|
105
|
+
SourceDataSettings?: SourceDataSetting[];
|
|
106
|
+
NumberOfJobs?: number;
|
|
107
|
+
SelectionRules?: string;
|
|
108
|
+
}
|
|
109
|
+
export interface ModifyDataMigrationResponse {
|
|
110
|
+
DataMigration?: DataMigration;
|
|
111
|
+
}
|
|
45
112
|
export interface ModifyDataProviderMessage {
|
|
46
113
|
DataProviderIdentifier: string | undefined;
|
|
47
114
|
DataProviderName?: string;
|
|
@@ -251,6 +318,20 @@ export interface RunFleetAdvisorLsaAnalysisResponse {
|
|
|
251
318
|
LsaAnalysisId?: string;
|
|
252
319
|
Status?: string;
|
|
253
320
|
}
|
|
321
|
+
export declare const StartReplicationMigrationTypeValue: {
|
|
322
|
+
readonly RELOAD_TARGET: "reload-target";
|
|
323
|
+
readonly RESUME_PROCESSING: "resume-processing";
|
|
324
|
+
readonly START_REPLICATION: "start-replication";
|
|
325
|
+
};
|
|
326
|
+
export type StartReplicationMigrationTypeValue =
|
|
327
|
+
(typeof StartReplicationMigrationTypeValue)[keyof typeof StartReplicationMigrationTypeValue];
|
|
328
|
+
export interface StartDataMigrationMessage {
|
|
329
|
+
DataMigrationIdentifier: string | undefined;
|
|
330
|
+
StartType: StartReplicationMigrationTypeValue | undefined;
|
|
331
|
+
}
|
|
332
|
+
export interface StartDataMigrationResponse {
|
|
333
|
+
DataMigration?: DataMigration;
|
|
334
|
+
}
|
|
254
335
|
export interface StartExtensionPackAssociationMessage {
|
|
255
336
|
MigrationProjectIdentifier: string | undefined;
|
|
256
337
|
}
|
|
@@ -359,6 +440,12 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
359
440
|
export interface StartReplicationTaskAssessmentRunResponse {
|
|
360
441
|
ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun;
|
|
361
442
|
}
|
|
443
|
+
export interface StopDataMigrationMessage {
|
|
444
|
+
DataMigrationIdentifier: string | undefined;
|
|
445
|
+
}
|
|
446
|
+
export interface StopDataMigrationResponse {
|
|
447
|
+
DataMigration?: DataMigration;
|
|
448
|
+
}
|
|
362
449
|
export interface StopReplicationMessage {
|
|
363
450
|
ReplicationConfigArn: string | undefined;
|
|
364
451
|
}
|
|
@@ -384,9 +471,24 @@ export interface UpdateSubscriptionsToEventBridgeMessage {
|
|
|
384
471
|
export interface UpdateSubscriptionsToEventBridgeResponse {
|
|
385
472
|
Result?: string;
|
|
386
473
|
}
|
|
474
|
+
export declare const ImportCertificateMessageFilterSensitiveLog: (
|
|
475
|
+
obj: ImportCertificateMessage
|
|
476
|
+
) => any;
|
|
477
|
+
export declare const ModifyDataMigrationMessageFilterSensitiveLog: (
|
|
478
|
+
obj: ModifyDataMigrationMessage
|
|
479
|
+
) => any;
|
|
480
|
+
export declare const ModifyDataMigrationResponseFilterSensitiveLog: (
|
|
481
|
+
obj: ModifyDataMigrationResponse
|
|
482
|
+
) => any;
|
|
387
483
|
export declare const ModifyEndpointMessageFilterSensitiveLog: (
|
|
388
484
|
obj: ModifyEndpointMessage
|
|
389
485
|
) => any;
|
|
390
486
|
export declare const ModifyEndpointResponseFilterSensitiveLog: (
|
|
391
487
|
obj: ModifyEndpointResponse
|
|
392
488
|
) => any;
|
|
489
|
+
export declare const StartDataMigrationResponseFilterSensitiveLog: (
|
|
490
|
+
obj: StartDataMigrationResponse
|
|
491
|
+
) => any;
|
|
492
|
+
export declare const StopDataMigrationResponseFilterSensitiveLog: (
|
|
493
|
+
obj: StopDataMigrationResponse
|
|
494
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeDataMigrationsCommandInput,
|
|
4
|
+
DescribeDataMigrationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDataMigrationsCommand";
|
|
6
|
+
import { DatabaseMigrationServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeDataMigrations: (
|
|
8
|
+
config: DatabaseMigrationServicePaginationConfiguration,
|
|
9
|
+
input: DescribeDataMigrationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeDataMigrationsCommandOutput>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
export * from "./DescribeApplicableIndividualAssessmentsPaginator";
|
|
2
2
|
export * from "./DescribeCertificatesPaginator";
|
|
3
3
|
export * from "./DescribeConnectionsPaginator";
|
|
4
|
+
export * from "./DescribeDataMigrationsPaginator";
|
|
4
5
|
export * from "./DescribeDataProvidersPaginator";
|
|
5
6
|
export * from "./DescribeEndpointSettingsPaginator";
|
|
6
7
|
export * from "./DescribeEndpointTypesPaginator";
|
|
7
8
|
export * from "./DescribeEndpointsPaginator";
|
|
8
9
|
export * from "./DescribeEngineVersionsPaginator";
|
|
9
10
|
export * from "./DescribeEventSubscriptionsPaginator";
|
|
10
|
-
export * from "./DescribeEventsPaginator";
|
|
11
11
|
export * from "./Interfaces";
|
|
12
|
+
export * from "./DescribeEventsPaginator";
|
|
12
13
|
export * from "./DescribeExtensionPackAssociationsPaginator";
|
|
13
14
|
export * from "./DescribeFleetAdvisorCollectorsPaginator";
|
|
14
15
|
export * from "./DescribeFleetAdvisorDatabasesPaginator";
|