@aws-sdk/client-database-migration-service 3.282.0 → 3.286.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 +32 -0
- package/dist-cjs/DatabaseMigrationService.js +60 -0
- package/dist-cjs/commands/BatchStartRecommendationsCommand.js +46 -0
- package/dist-cjs/commands/DescribeRecommendationLimitationsCommand.js +46 -0
- package/dist-cjs/commands/DescribeRecommendationsCommand.js +46 -0
- package/dist-cjs/commands/StartRecommendationsCommand.js +46 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +70 -4
- package/dist-cjs/pagination/DescribeRecommendationLimitationsPaginator.js +36 -0
- package/dist-cjs/pagination/DescribeRecommendationsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +363 -3
- package/dist-es/DatabaseMigrationService.js +60 -0
- package/dist-es/commands/BatchStartRecommendationsCommand.js +42 -0
- package/dist-es/commands/DescribeRecommendationLimitationsCommand.js +42 -0
- package/dist-es/commands/DescribeRecommendationsCommand.js +42 -0
- package/dist-es/commands/StartRecommendationsCommand.js +42 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +49 -0
- package/dist-es/pagination/DescribeRecommendationLimitationsPaginator.js +32 -0
- package/dist-es/pagination/DescribeRecommendationsPaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +352 -0
- package/dist-types/DatabaseMigrationService.d.ts +42 -8
- package/dist-types/DatabaseMigrationServiceClient.d.ts +6 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +1 -1
- package/dist-types/commands/BatchStartRecommendationsCommand.d.ts +48 -0
- package/dist-types/commands/DescribeFleetAdvisorLsaAnalysisCommand.d.ts +2 -3
- package/dist-types/commands/DescribeRecommendationLimitationsCommand.d.ts +44 -0
- package/dist-types/commands/DescribeRecommendationsCommand.d.ts +44 -0
- package/dist-types/commands/DescribeSchemasCommand.d.ts +0 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ModifyReplicationInstanceCommand.d.ts +0 -1
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartRecommendationsCommand.d.ts +45 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +560 -108
- package/dist-types/pagination/DescribeRecommendationLimitationsPaginator.d.ts +4 -0
- package/dist-types/pagination/DescribeRecommendationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +12 -0
- package/dist-types/ts3.4/DatabaseMigrationService.d.ts +74 -0
- package/dist-types/ts3.4/DatabaseMigrationServiceClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/BatchStartRecommendationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeRecommendationLimitationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeRecommendationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/StartRecommendationsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +137 -7
- package/dist-types/ts3.4/pagination/DescribeRecommendationLimitationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeRecommendationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +1 -1
|
@@ -205,6 +205,80 @@ export interface ApplyPendingMaintenanceActionResponse {
|
|
|
205
205
|
*/
|
|
206
206
|
ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
|
|
207
207
|
}
|
|
208
|
+
/**
|
|
209
|
+
* <p>Provides information about the required target engine settings.</p>
|
|
210
|
+
*/
|
|
211
|
+
export interface RecommendationSettings {
|
|
212
|
+
/**
|
|
213
|
+
* <p>The size of your target instance. Fleet Advisor calculates this value based on your
|
|
214
|
+
* data collection type, such as total capacity and resource utilization. Valid values
|
|
215
|
+
* include <code>"total-capacity"</code> and <code>"utilization"</code>.</p>
|
|
216
|
+
*/
|
|
217
|
+
InstanceSizingType: string | undefined;
|
|
218
|
+
/**
|
|
219
|
+
* <p>The deployment option for your target engine. For production databases, Fleet Advisor
|
|
220
|
+
* chooses Multi-AZ deployment. For development or test databases, Fleet Advisor chooses
|
|
221
|
+
* Single-AZ deployment. Valid values include <code>"development"</code> and
|
|
222
|
+
* <code>"production"</code>.</p>
|
|
223
|
+
*/
|
|
224
|
+
WorkloadType: string | undefined;
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* <p>Provides information about the source database to analyze and provide target
|
|
228
|
+
* recommendations according to the specified requirements.</p>
|
|
229
|
+
*/
|
|
230
|
+
export interface StartRecommendationsRequestEntry {
|
|
231
|
+
/**
|
|
232
|
+
* <p>The identifier of the source database.</p>
|
|
233
|
+
*/
|
|
234
|
+
DatabaseId: string | undefined;
|
|
235
|
+
/**
|
|
236
|
+
* <p>The required target engine settings.</p>
|
|
237
|
+
*/
|
|
238
|
+
Settings: RecommendationSettings | undefined;
|
|
239
|
+
}
|
|
240
|
+
export interface BatchStartRecommendationsRequest {
|
|
241
|
+
/**
|
|
242
|
+
* <p>Provides information about source databases to analyze. After this analysis, Fleet
|
|
243
|
+
* Advisor recommends target engines for each source database.</p>
|
|
244
|
+
*/
|
|
245
|
+
Data?: StartRecommendationsRequestEntry[];
|
|
246
|
+
}
|
|
247
|
+
/**
|
|
248
|
+
* <p>Provides information about the errors that occurred during the analysis of the source
|
|
249
|
+
* database.</p>
|
|
250
|
+
*/
|
|
251
|
+
export interface BatchStartRecommendationsErrorEntry {
|
|
252
|
+
/**
|
|
253
|
+
* <p>The identifier of the source database.</p>
|
|
254
|
+
*/
|
|
255
|
+
DatabaseId?: string;
|
|
256
|
+
/**
|
|
257
|
+
* <p>The information about the error.</p>
|
|
258
|
+
*/
|
|
259
|
+
Message?: string;
|
|
260
|
+
/**
|
|
261
|
+
* <p>The code of an error that occurred during the analysis of the source database.</p>
|
|
262
|
+
*/
|
|
263
|
+
Code?: string;
|
|
264
|
+
}
|
|
265
|
+
export interface BatchStartRecommendationsResponse {
|
|
266
|
+
/**
|
|
267
|
+
* <p>A list with error details about the analysis of each source database.</p>
|
|
268
|
+
*/
|
|
269
|
+
ErrorEntries?: BatchStartRecommendationsErrorEntry[];
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
273
|
+
*/
|
|
274
|
+
export declare class InvalidResourceStateFault extends __BaseException {
|
|
275
|
+
readonly name: "InvalidResourceStateFault";
|
|
276
|
+
readonly $fault: "client";
|
|
277
|
+
/**
|
|
278
|
+
* @internal
|
|
279
|
+
*/
|
|
280
|
+
constructor(opts: __ExceptionOptionType<InvalidResourceStateFault, __BaseException>);
|
|
281
|
+
}
|
|
208
282
|
/**
|
|
209
283
|
* <p></p>
|
|
210
284
|
*/
|
|
@@ -350,17 +424,6 @@ export interface CancelReplicationTaskAssessmentRunResponse {
|
|
|
350
424
|
*/
|
|
351
425
|
ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun;
|
|
352
426
|
}
|
|
353
|
-
/**
|
|
354
|
-
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
355
|
-
*/
|
|
356
|
-
export declare class InvalidResourceStateFault extends __BaseException {
|
|
357
|
-
readonly name: "InvalidResourceStateFault";
|
|
358
|
-
readonly $fault: "client";
|
|
359
|
-
/**
|
|
360
|
-
* @internal
|
|
361
|
-
*/
|
|
362
|
-
constructor(opts: __ExceptionOptionType<InvalidResourceStateFault, __BaseException>);
|
|
363
|
-
}
|
|
364
427
|
/**
|
|
365
428
|
* <p> The settings in JSON format for the DMS Transfer type source endpoint. </p>
|
|
366
429
|
*/
|
|
@@ -512,14 +575,14 @@ export interface GcpMySQLSettings {
|
|
|
512
575
|
/**
|
|
513
576
|
* <p>Specifies a script to run immediately after DMS connects to the endpoint.
|
|
514
577
|
* The migration task continues running regardless if the SQL statement succeeds or fails.</p>
|
|
515
|
-
*
|
|
516
578
|
* <p>For this parameter, provide the code of the script itself, not the name of a file containing the script. </p>
|
|
517
579
|
*/
|
|
518
580
|
AfterConnectScript?: string;
|
|
519
581
|
/**
|
|
520
|
-
* <p>
|
|
521
|
-
*
|
|
522
|
-
*
|
|
582
|
+
* <p>Cleans and recreates table metadata information on the replication instance
|
|
583
|
+
* when a mismatch occurs. For example, in a situation where running an alter DDL
|
|
584
|
+
* on the table could result in different information about the table cached in the
|
|
585
|
+
* replication instance. </p>
|
|
523
586
|
*/
|
|
524
587
|
CleanSourceMetadataOnMismatch?: boolean;
|
|
525
588
|
/**
|
|
@@ -554,7 +617,6 @@ export interface GcpMySQLSettings {
|
|
|
554
617
|
* threads to use to load the data into the MySQL-compatible target database. Setting a large number of
|
|
555
618
|
* threads can have an adverse effect on database performance, because a separate connection is required
|
|
556
619
|
* for each thread. The default is one.</p>
|
|
557
|
-
*
|
|
558
620
|
* <p>Example: <code>parallelLoadThreads=1</code>
|
|
559
621
|
* </p>
|
|
560
622
|
*/
|
|
@@ -564,19 +626,17 @@ export interface GcpMySQLSettings {
|
|
|
564
626
|
*/
|
|
565
627
|
Password?: string;
|
|
566
628
|
/**
|
|
567
|
-
* <p
|
|
629
|
+
* <p>Endpoint TCP port.</p>
|
|
568
630
|
*/
|
|
569
631
|
Port?: number;
|
|
570
632
|
/**
|
|
571
|
-
* <p>
|
|
633
|
+
* <p>The MySQL host name.</p>
|
|
572
634
|
*/
|
|
573
635
|
ServerName?: string;
|
|
574
636
|
/**
|
|
575
637
|
* <p>Specifies the time zone for the source MySQL database.</p>
|
|
576
|
-
*
|
|
577
638
|
* <p>Example: <code>serverTimezone=US/Pacific;</code>
|
|
578
639
|
* </p>
|
|
579
|
-
*
|
|
580
640
|
* <p>Note: Do not enclose time zones in single quotes.</p>
|
|
581
641
|
*/
|
|
582
642
|
ServerTimezone?: string;
|
|
@@ -935,7 +995,10 @@ export interface MicrosoftSQLServerSettings {
|
|
|
935
995
|
*/
|
|
936
996
|
SafeguardPolicy?: SafeguardPolicy | string;
|
|
937
997
|
/**
|
|
938
|
-
* <p>Fully qualified domain name of the endpoint
|
|
998
|
+
* <p>Fully qualified domain name of the endpoint. For an Amazon RDS SQL Server instance, this is the
|
|
999
|
+
* output of <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html">DescribeDBInstances</a>,
|
|
1000
|
+
* in the <code>
|
|
1001
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html">Endpoint</a>.Address</code> field.</p>
|
|
939
1002
|
*/
|
|
940
1003
|
ServerName?: string;
|
|
941
1004
|
/**
|
|
@@ -1099,10 +1162,10 @@ export interface MySQLSettings {
|
|
|
1099
1162
|
*/
|
|
1100
1163
|
AfterConnectScript?: string;
|
|
1101
1164
|
/**
|
|
1102
|
-
* <p>
|
|
1103
|
-
*
|
|
1104
|
-
*
|
|
1105
|
-
*
|
|
1165
|
+
* <p>Cleans and recreates table metadata information on the replication instance
|
|
1166
|
+
* when a mismatch occurs. For example, in a situation where running an alter DDL
|
|
1167
|
+
* on the table could result in different information about the table cached in the
|
|
1168
|
+
* replication instance. </p>
|
|
1106
1169
|
*/
|
|
1107
1170
|
CleanSourceMetadataOnMismatch?: boolean;
|
|
1108
1171
|
/**
|
|
@@ -1157,7 +1220,14 @@ export interface MySQLSettings {
|
|
|
1157
1220
|
*/
|
|
1158
1221
|
Port?: number;
|
|
1159
1222
|
/**
|
|
1160
|
-
* <p>
|
|
1223
|
+
* <p>The host name of the endpoint database. </p>
|
|
1224
|
+
* <p>For an Amazon RDS MySQL instance, this is the
|
|
1225
|
+
* output of <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html">DescribeDBInstances</a>,
|
|
1226
|
+
* in the <code>
|
|
1227
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html">Endpoint</a>.Address</code> field.</p>
|
|
1228
|
+
* <p>For an Aurora MySQL instance, this is the
|
|
1229
|
+
* output of <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBClusters.html">DescribeDBClusters</a>,
|
|
1230
|
+
* in the <code>Endpoint</code> field.</p>
|
|
1161
1231
|
*/
|
|
1162
1232
|
ServerName?: string;
|
|
1163
1233
|
/**
|
|
@@ -1493,6 +1563,10 @@ export interface OracleSettings {
|
|
|
1493
1563
|
SecurityDbEncryptionName?: string;
|
|
1494
1564
|
/**
|
|
1495
1565
|
* <p>Fully qualified domain name of the endpoint.</p>
|
|
1566
|
+
* <p>For an Amazon RDS Oracle instance, this is the
|
|
1567
|
+
* output of <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html">DescribeDBInstances</a>,
|
|
1568
|
+
* in the <code>
|
|
1569
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html">Endpoint</a>.Address</code> field.</p>
|
|
1496
1570
|
*/
|
|
1497
1571
|
ServerName?: string;
|
|
1498
1572
|
/**
|
|
@@ -1675,7 +1749,14 @@ export interface PostgreSQLSettings {
|
|
|
1675
1749
|
*/
|
|
1676
1750
|
Port?: number;
|
|
1677
1751
|
/**
|
|
1678
|
-
* <p>
|
|
1752
|
+
* <p>The host name of the endpoint database. </p>
|
|
1753
|
+
* <p>For an Amazon RDS PostgreSQL instance, this is the
|
|
1754
|
+
* output of <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html">DescribeDBInstances</a>,
|
|
1755
|
+
* in the <code>
|
|
1756
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html">Endpoint</a>.Address</code> field.</p>
|
|
1757
|
+
* <p>For an Aurora PostgreSQL instance, this is the
|
|
1758
|
+
* output of <a href="https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBClusters.html">DescribeDBClusters</a>,
|
|
1759
|
+
* in the <code>Endpoint</code> field.</p>
|
|
1679
1760
|
*/
|
|
1680
1761
|
ServerName?: string;
|
|
1681
1762
|
/**
|
|
@@ -2284,19 +2365,15 @@ export interface S3Settings {
|
|
|
2284
2365
|
* <code>false</code>, every CDC record is written without a first field to indicate the
|
|
2285
2366
|
* INSERT operation at the source. For more information about how these settings work
|
|
2286
2367
|
* together, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.Configuring.InsertOps">Indicating Source DB Operations in Migrated S3 Data</a> in the <i>Database Migration Service User Guide.</i>.</p>
|
|
2287
|
-
*
|
|
2288
2368
|
* <note>
|
|
2289
|
-
*
|
|
2290
|
-
* <p>DMS supports the interaction described preceding between the
|
|
2369
|
+
* <p>DMS supports the interaction described preceding between the
|
|
2291
2370
|
* <code>CdcInsertsOnly</code> and <code>IncludeOpForFullLoad</code> parameters in
|
|
2292
2371
|
* versions 3.1.4 and later. </p>
|
|
2293
|
-
*
|
|
2294
|
-
* <p>
|
|
2372
|
+
* <p>
|
|
2295
2373
|
* <code>CdcInsertsOnly</code> and <code>CdcInsertsAndUpdates</code> can't
|
|
2296
2374
|
* both be set to <code>true</code> for the same endpoint. Set either
|
|
2297
2375
|
* <code>CdcInsertsOnly</code> or <code>CdcInsertsAndUpdates</code> to <code>true</code>
|
|
2298
2376
|
* for the same endpoint, but not both.</p>
|
|
2299
|
-
*
|
|
2300
2377
|
* </note>
|
|
2301
2378
|
*/
|
|
2302
2379
|
CdcInsertsOnly?: boolean;
|
|
@@ -2341,11 +2418,10 @@ export interface S3Settings {
|
|
|
2341
2418
|
* this parameter to <code>true</code> for S3 endpoint object
|
|
2342
2419
|
* files that are .parquet formatted only if you plan to query or process the data with Athena or Glue.</p>
|
|
2343
2420
|
* <note>
|
|
2344
|
-
*
|
|
2421
|
+
* <p>DMS writes any <code>TIMESTAMP</code> column
|
|
2345
2422
|
* values written to an S3 file in .csv format with
|
|
2346
2423
|
* microsecond precision.</p>
|
|
2347
|
-
*
|
|
2348
|
-
* <p>Setting <code>ParquetTimestampInMillisecond</code> has no effect on the string
|
|
2424
|
+
* <p>Setting <code>ParquetTimestampInMillisecond</code> has no effect on the string
|
|
2349
2425
|
* format of the timestamp column value that is inserted by setting the
|
|
2350
2426
|
* <code>TimestampColumnName</code> parameter.</p>
|
|
2351
2427
|
* </note>
|
|
@@ -2366,16 +2442,13 @@ export interface S3Settings {
|
|
|
2366
2442
|
* operations at the source. For more information about how these settings work together, see
|
|
2367
2443
|
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.Configuring.InsertOps">Indicating Source DB Operations in Migrated S3 Data</a> in the <i>Database Migration Service User Guide.</i>.</p>
|
|
2368
2444
|
* <note>
|
|
2369
|
-
*
|
|
2370
2445
|
* <p>DMS supports the use of the <code>CdcInsertsAndUpdates</code> parameter in
|
|
2371
2446
|
* versions 3.3.1 and later.</p>
|
|
2372
|
-
*
|
|
2373
2447
|
* <p>
|
|
2374
2448
|
* <code>CdcInsertsOnly</code> and <code>CdcInsertsAndUpdates</code> can't
|
|
2375
2449
|
* both be set to <code>true</code> for the same endpoint. Set either
|
|
2376
2450
|
* <code>CdcInsertsOnly</code> or <code>CdcInsertsAndUpdates</code> to <code>true</code>
|
|
2377
2451
|
* for the same endpoint, but not both.</p>
|
|
2378
|
-
*
|
|
2379
2452
|
* </note>
|
|
2380
2453
|
*/
|
|
2381
2454
|
CdcInsertsAndUpdates?: boolean;
|
|
@@ -2465,7 +2538,6 @@ export interface S3Settings {
|
|
|
2465
2538
|
* the time data is written to target. For full load, when <code>useTaskStartTimeForFullLoadTimestamp</code>
|
|
2466
2539
|
* is set to <code>true</code>, each row of the timestamp column contains the task start time. For CDC loads,
|
|
2467
2540
|
* each row of the timestamp column contains the transaction commit time.</p>
|
|
2468
|
-
*
|
|
2469
2541
|
* <p>When <code>useTaskStartTimeForFullLoadTimestamp</code> is set to <code>false</code>, the full load timestamp
|
|
2470
2542
|
* in the timestamp column increments with the time data arrives at the target. </p>
|
|
2471
2543
|
*/
|
|
@@ -3157,7 +3229,7 @@ export interface CreateEventSubscriptionMessage {
|
|
|
3157
3229
|
/**
|
|
3158
3230
|
* <p>A list of identifiers for which DMS provides notification events.</p>
|
|
3159
3231
|
* <p>If you don't specify a value, notifications are provided for all sources.</p>
|
|
3160
|
-
*
|
|
3232
|
+
* <p>If you specify multiple values, they must be of the same type. For example, if you
|
|
3161
3233
|
* specify a database instance ID, then all of the other values must be database instance
|
|
3162
3234
|
* IDs.</p>
|
|
3163
3235
|
*/
|
|
@@ -3445,6 +3517,13 @@ export interface CreateReplicationInstanceMessage {
|
|
|
3445
3517
|
* <code>true</code>.</p>
|
|
3446
3518
|
* <p>Default: <code>true</code>
|
|
3447
3519
|
* </p>
|
|
3520
|
+
* <p>When <code>AutoMinorVersionUpgrade</code> is enabled, DMS uses the current default
|
|
3521
|
+
* engine version when you create a replication instance. For example, if you set
|
|
3522
|
+
* <code>EngineVersion</code> to a lower version number than the current default version,
|
|
3523
|
+
* DMS uses the default version.</p>
|
|
3524
|
+
* <p>If <code>AutoMinorVersionUpgrade</code>
|
|
3525
|
+
* <i>isn’t</i> enabled when you create a replication instance, DMS uses the
|
|
3526
|
+
* engine version specified by the <code>EngineVersion</code> parameter. </p>
|
|
3448
3527
|
*/
|
|
3449
3528
|
AutoMinorVersionUpgrade?: boolean;
|
|
3450
3529
|
/**
|
|
@@ -3649,7 +3728,6 @@ export interface ReplicationInstance {
|
|
|
3649
3728
|
ReplicationInstanceClass?: string;
|
|
3650
3729
|
/**
|
|
3651
3730
|
* <p>The status of the replication instance. The possible return values include:</p>
|
|
3652
|
-
*
|
|
3653
3731
|
* <ul>
|
|
3654
3732
|
* <li>
|
|
3655
3733
|
* <p>
|
|
@@ -4005,7 +4083,7 @@ export interface CreateReplicationTaskMessage {
|
|
|
4005
4083
|
* <p>Indicates when you want a change data capture (CDC) operation to stop. The value can be
|
|
4006
4084
|
* either server time or commit time.</p>
|
|
4007
4085
|
* <p>Server time example: --cdc-stop-position “server_time:2018-02-09T12:12:12”</p>
|
|
4008
|
-
* <p>Commit time example: --cdc-stop-position “commit_time: 2018-02-09T12:12:12
|
|
4086
|
+
* <p>Commit time example: --cdc-stop-position “commit_time: 2018-02-09T12:12:12“</p>
|
|
4009
4087
|
*/
|
|
4010
4088
|
CdcStopPosition?: string;
|
|
4011
4089
|
/**
|
|
@@ -4340,7 +4418,7 @@ export interface ReplicationTask {
|
|
|
4340
4418
|
* <p>Indicates when you want a change data capture (CDC) operation to stop. The value can be
|
|
4341
4419
|
* either server time or commit time.</p>
|
|
4342
4420
|
* <p>Server time example: --cdc-stop-position “server_time:2018-02-09T12:12:12”</p>
|
|
4343
|
-
* <p>Commit time example: --cdc-stop-position “commit_time: 2018-02-09T12:12:12
|
|
4421
|
+
* <p>Commit time example: --cdc-stop-position “commit_time: 2018-02-09T12:12:12“</p>
|
|
4344
4422
|
*/
|
|
4345
4423
|
CdcStopPosition?: string;
|
|
4346
4424
|
/**
|
|
@@ -5215,20 +5293,18 @@ export interface DescribeFleetAdvisorCollectorsRequest {
|
|
|
5215
5293
|
/**
|
|
5216
5294
|
* <p> If you specify any of the following filters, the output includes information for only
|
|
5217
5295
|
* those collectors that meet the filter criteria:</p>
|
|
5218
|
-
*
|
|
5219
|
-
* <ul>
|
|
5296
|
+
* <ul>
|
|
5220
5297
|
* <li>
|
|
5221
5298
|
* <p>
|
|
5222
|
-
* <code>collector-referenced-id</code> – The ID of the collector agent,
|
|
5223
|
-
*
|
|
5299
|
+
* <code>collector-referenced-id</code> – The ID of the collector agent,
|
|
5300
|
+
* for example <code>d4610ac5-e323-4ad9-bc50-eaf7249dfe9d</code>.</p>
|
|
5224
5301
|
* </li>
|
|
5225
5302
|
* <li>
|
|
5226
5303
|
* <p>
|
|
5227
5304
|
* <code>collector-name</code> – The name of the collector agent.</p>
|
|
5228
5305
|
* </li>
|
|
5229
5306
|
* </ul>
|
|
5230
|
-
*
|
|
5231
|
-
* <p>An example is: <code>describe-fleet-advisor-collectors --filter
|
|
5307
|
+
* <p>An example is: <code>describe-fleet-advisor-collectors --filter
|
|
5232
5308
|
* Name="collector-referenced-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"</code>
|
|
5233
5309
|
* </p>
|
|
5234
5310
|
*/
|
|
@@ -5238,9 +5314,10 @@ export interface DescribeFleetAdvisorCollectorsRequest {
|
|
|
5238
5314
|
*/
|
|
5239
5315
|
MaxRecords?: number;
|
|
5240
5316
|
/**
|
|
5241
|
-
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5242
|
-
* <code>NextToken</code> is a unique pagination token for each
|
|
5243
|
-
* token to retrieve the next page. Keep all
|
|
5317
|
+
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5318
|
+
* available. The value of <code>NextToken</code> is a unique pagination token for each
|
|
5319
|
+
* page. Make the call again using the returned token to retrieve the next page. Keep all
|
|
5320
|
+
* other arguments unchanged. </p>
|
|
5244
5321
|
*/
|
|
5245
5322
|
NextToken?: string;
|
|
5246
5323
|
}
|
|
@@ -5363,8 +5440,9 @@ export interface DescribeFleetAdvisorCollectorsResponse {
|
|
|
5363
5440
|
Collectors?: CollectorResponse[];
|
|
5364
5441
|
/**
|
|
5365
5442
|
* <p>If <code>NextToken</code> is returned, there are more results available. The value of
|
|
5366
|
-
*
|
|
5367
|
-
* token to retrieve the next page. Keep all other arguments
|
|
5443
|
+
* <code>NextToken</code> is a unique pagination token for each page. Make the call
|
|
5444
|
+
* again using the returned token to retrieve the next page. Keep all other arguments
|
|
5445
|
+
* unchanged. </p>
|
|
5368
5446
|
*/
|
|
5369
5447
|
NextToken?: string;
|
|
5370
5448
|
}
|
|
@@ -5372,8 +5450,7 @@ export interface DescribeFleetAdvisorDatabasesRequest {
|
|
|
5372
5450
|
/**
|
|
5373
5451
|
* <p> If you specify any of the following filters, the output includes information for only
|
|
5374
5452
|
* those databases that meet the filter criteria: </p>
|
|
5375
|
-
*
|
|
5376
|
-
* <ul>
|
|
5453
|
+
* <ul>
|
|
5377
5454
|
* <li>
|
|
5378
5455
|
* <p>
|
|
5379
5456
|
* <code>database-id</code> – The ID of the database.</p>
|
|
@@ -5388,19 +5465,20 @@ export interface DescribeFleetAdvisorDatabasesRequest {
|
|
|
5388
5465
|
* </li>
|
|
5389
5466
|
* <li>
|
|
5390
5467
|
* <p>
|
|
5391
|
-
* <code>server-ip-address</code> – The IP address of the database
|
|
5468
|
+
* <code>server-ip-address</code> – The IP address of the database
|
|
5469
|
+
* server.</p>
|
|
5392
5470
|
* </li>
|
|
5393
5471
|
* <li>
|
|
5394
5472
|
* <p>
|
|
5395
|
-
* <code>database-ip-address</code> – The IP address of the
|
|
5473
|
+
* <code>database-ip-address</code> – The IP address of the
|
|
5474
|
+
* database.</p>
|
|
5396
5475
|
* </li>
|
|
5397
5476
|
* <li>
|
|
5398
5477
|
* <p>
|
|
5399
5478
|
* <code>collector-name</code> – The name of the associated Fleet Advisor collector.</p>
|
|
5400
5479
|
* </li>
|
|
5401
5480
|
* </ul>
|
|
5402
|
-
*
|
|
5403
|
-
* <p>An example is: <code>describe-fleet-advisor-databases --filter
|
|
5481
|
+
* <p>An example is: <code>describe-fleet-advisor-databases --filter
|
|
5404
5482
|
* Name="database-id",Values="45"</code>
|
|
5405
5483
|
* </p>
|
|
5406
5484
|
*/
|
|
@@ -5410,9 +5488,10 @@ export interface DescribeFleetAdvisorDatabasesRequest {
|
|
|
5410
5488
|
*/
|
|
5411
5489
|
MaxRecords?: number;
|
|
5412
5490
|
/**
|
|
5413
|
-
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5414
|
-
* <code>NextToken</code> is a unique pagination token for each
|
|
5415
|
-
* token to retrieve the next page. Keep all
|
|
5491
|
+
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5492
|
+
* available. The value of <code>NextToken</code> is a unique pagination token for each
|
|
5493
|
+
* page. Make the call again using the returned token to retrieve the next page. Keep all
|
|
5494
|
+
* other arguments unchanged. </p>
|
|
5416
5495
|
*/
|
|
5417
5496
|
NextToken?: string;
|
|
5418
5497
|
}
|
|
@@ -5508,7 +5587,8 @@ export interface DatabaseResponse {
|
|
|
5508
5587
|
*/
|
|
5509
5588
|
Server?: ServerShortInfoResponse;
|
|
5510
5589
|
/**
|
|
5511
|
-
* <p>The software details of a database in a Fleet Advisor collector inventory, such as database engine and
|
|
5590
|
+
* <p>The software details of a database in a Fleet Advisor collector inventory, such as database engine and
|
|
5591
|
+
* version.</p>
|
|
5512
5592
|
*/
|
|
5513
5593
|
SoftwareDetails?: DatabaseInstanceSoftwareDetailsResponse;
|
|
5514
5594
|
/**
|
|
@@ -5518,13 +5598,15 @@ export interface DatabaseResponse {
|
|
|
5518
5598
|
}
|
|
5519
5599
|
export interface DescribeFleetAdvisorDatabasesResponse {
|
|
5520
5600
|
/**
|
|
5521
|
-
* <p>Provides descriptions of the Fleet Advisor collector databases, including the database's collector, ID,
|
|
5601
|
+
* <p>Provides descriptions of the Fleet Advisor collector databases, including the database's collector, ID,
|
|
5602
|
+
* and name.</p>
|
|
5522
5603
|
*/
|
|
5523
5604
|
Databases?: DatabaseResponse[];
|
|
5524
5605
|
/**
|
|
5525
5606
|
* <p>If <code>NextToken</code> is returned, there are more results available. The value of
|
|
5526
|
-
*
|
|
5527
|
-
* token to retrieve the next page. Keep all other arguments
|
|
5607
|
+
* <code>NextToken</code> is a unique pagination token for each page. Make the call
|
|
5608
|
+
* again using the returned token to retrieve the next page. Keep all other arguments
|
|
5609
|
+
* unchanged. </p>
|
|
5528
5610
|
*/
|
|
5529
5611
|
NextToken?: string;
|
|
5530
5612
|
}
|
|
@@ -5534,9 +5616,10 @@ export interface DescribeFleetAdvisorLsaAnalysisRequest {
|
|
|
5534
5616
|
*/
|
|
5535
5617
|
MaxRecords?: number;
|
|
5536
5618
|
/**
|
|
5537
|
-
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5538
|
-
* <code>NextToken</code> is a unique pagination token for each
|
|
5539
|
-
* token to retrieve the next page. Keep all
|
|
5619
|
+
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5620
|
+
* available. The value of <code>NextToken</code> is a unique pagination token for each
|
|
5621
|
+
* page. Make the call again using the returned token to retrieve the next page. Keep all
|
|
5622
|
+
* other arguments unchanged. </p>
|
|
5540
5623
|
*/
|
|
5541
5624
|
NextToken?: string;
|
|
5542
5625
|
}
|
|
@@ -5560,8 +5643,9 @@ export interface DescribeFleetAdvisorLsaAnalysisResponse {
|
|
|
5560
5643
|
Analysis?: FleetAdvisorLsaAnalysisResponse[];
|
|
5561
5644
|
/**
|
|
5562
5645
|
* <p>If <code>NextToken</code> is returned, there are more results available. The value of
|
|
5563
|
-
*
|
|
5564
|
-
* token to retrieve the next page. Keep all other arguments
|
|
5646
|
+
* <code>NextToken</code> is a unique pagination token for each page. Make the call
|
|
5647
|
+
* again using the returned token to retrieve the next page. Keep all other arguments
|
|
5648
|
+
* unchanged. </p>
|
|
5565
5649
|
*/
|
|
5566
5650
|
NextToken?: string;
|
|
5567
5651
|
}
|
|
@@ -5569,16 +5653,15 @@ export interface DescribeFleetAdvisorSchemaObjectSummaryRequest {
|
|
|
5569
5653
|
/**
|
|
5570
5654
|
* <p> If you specify any of the following filters, the output includes information for only
|
|
5571
5655
|
* those schema objects that meet the filter criteria:</p>
|
|
5572
|
-
*
|
|
5573
|
-
* <ul>
|
|
5656
|
+
* <ul>
|
|
5574
5657
|
* <li>
|
|
5575
5658
|
* <p>
|
|
5576
5659
|
* <code>schema-id</code> – The ID of the schema, for example
|
|
5577
5660
|
* <code>d4610ac5-e323-4ad9-bc50-eaf7249dfe9d</code>.</p>
|
|
5578
5661
|
* </li>
|
|
5579
5662
|
* </ul>
|
|
5580
|
-
*
|
|
5581
|
-
*
|
|
5663
|
+
* <p>Example: <code>describe-fleet-advisor-schema-object-summary --filter
|
|
5664
|
+
* Name="schema-id",Values="50"</code>
|
|
5582
5665
|
* </p>
|
|
5583
5666
|
*/
|
|
5584
5667
|
Filters?: Filter[];
|
|
@@ -5587,9 +5670,10 @@ export interface DescribeFleetAdvisorSchemaObjectSummaryRequest {
|
|
|
5587
5670
|
*/
|
|
5588
5671
|
MaxRecords?: number;
|
|
5589
5672
|
/**
|
|
5590
|
-
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5591
|
-
* <code>NextToken</code> is a unique pagination token for each
|
|
5592
|
-
* token to retrieve the next page. Keep all
|
|
5673
|
+
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5674
|
+
* available. The value of <code>NextToken</code> is a unique pagination token for each
|
|
5675
|
+
* page. Make the call again using the returned token to retrieve the next page. Keep all
|
|
5676
|
+
* other arguments unchanged. </p>
|
|
5593
5677
|
*/
|
|
5594
5678
|
NextToken?: string;
|
|
5595
5679
|
}
|
|
@@ -5602,8 +5686,9 @@ export interface FleetAdvisorSchemaObjectResponse {
|
|
|
5602
5686
|
*/
|
|
5603
5687
|
SchemaId?: string;
|
|
5604
5688
|
/**
|
|
5605
|
-
* <p>The type of the schema object, as reported by the database engine. Examples include
|
|
5606
|
-
*
|
|
5689
|
+
* <p>The type of the schema object, as reported by the database engine. Examples include
|
|
5690
|
+
* the following:</p>
|
|
5691
|
+
* <ul>
|
|
5607
5692
|
* <li>
|
|
5608
5693
|
* <p>
|
|
5609
5694
|
* <code>function</code>
|
|
@@ -5647,8 +5732,9 @@ export interface DescribeFleetAdvisorSchemaObjectSummaryResponse {
|
|
|
5647
5732
|
FleetAdvisorSchemaObjects?: FleetAdvisorSchemaObjectResponse[];
|
|
5648
5733
|
/**
|
|
5649
5734
|
* <p>If <code>NextToken</code> is returned, there are more results available. The value of
|
|
5650
|
-
*
|
|
5651
|
-
* token to retrieve the next page. Keep all other arguments
|
|
5735
|
+
* <code>NextToken</code> is a unique pagination token for each page. Make the call
|
|
5736
|
+
* again using the returned token to retrieve the next page. Keep all other arguments
|
|
5737
|
+
* unchanged. </p>
|
|
5652
5738
|
*/
|
|
5653
5739
|
NextToken?: string;
|
|
5654
5740
|
}
|
|
@@ -5656,12 +5742,11 @@ export interface DescribeFleetAdvisorSchemasRequest {
|
|
|
5656
5742
|
/**
|
|
5657
5743
|
* <p> If you specify any of the following filters, the output includes information for only
|
|
5658
5744
|
* those schemas that meet the filter criteria:</p>
|
|
5659
|
-
*
|
|
5660
|
-
* <ul>
|
|
5745
|
+
* <ul>
|
|
5661
5746
|
* <li>
|
|
5662
5747
|
* <p>
|
|
5663
5748
|
* <code>complexity</code> – The schema's complexity, for example
|
|
5664
|
-
*
|
|
5749
|
+
* <code>Simple</code>.</p>
|
|
5665
5750
|
* </li>
|
|
5666
5751
|
* <li>
|
|
5667
5752
|
* <p>
|
|
@@ -5669,7 +5754,8 @@ export interface DescribeFleetAdvisorSchemasRequest {
|
|
|
5669
5754
|
* </li>
|
|
5670
5755
|
* <li>
|
|
5671
5756
|
* <p>
|
|
5672
|
-
* <code>database-ip-address</code> – The IP address of the schema's
|
|
5757
|
+
* <code>database-ip-address</code> – The IP address of the schema's
|
|
5758
|
+
* database.</p>
|
|
5673
5759
|
* </li>
|
|
5674
5760
|
* <li>
|
|
5675
5761
|
* <p>
|
|
@@ -5677,15 +5763,18 @@ export interface DescribeFleetAdvisorSchemasRequest {
|
|
|
5677
5763
|
* </li>
|
|
5678
5764
|
* <li>
|
|
5679
5765
|
* <p>
|
|
5680
|
-
* <code>database-engine</code> – The name of the schema database's
|
|
5766
|
+
* <code>database-engine</code> – The name of the schema database's
|
|
5767
|
+
* engine.</p>
|
|
5681
5768
|
* </li>
|
|
5682
5769
|
* <li>
|
|
5683
5770
|
* <p>
|
|
5684
|
-
* <code>original-schema-name</code> – The name of the schema's database's
|
|
5771
|
+
* <code>original-schema-name</code> – The name of the schema's database's
|
|
5772
|
+
* main schema.</p>
|
|
5685
5773
|
* </li>
|
|
5686
5774
|
* <li>
|
|
5687
5775
|
* <p>
|
|
5688
|
-
* <code>schema-id</code> – The ID of the schema, for example
|
|
5776
|
+
* <code>schema-id</code> – The ID of the schema, for example
|
|
5777
|
+
* <code>15</code>.</p>
|
|
5689
5778
|
* </li>
|
|
5690
5779
|
* <li>
|
|
5691
5780
|
* <p>
|
|
@@ -5693,11 +5782,11 @@ export interface DescribeFleetAdvisorSchemasRequest {
|
|
|
5693
5782
|
* </li>
|
|
5694
5783
|
* <li>
|
|
5695
5784
|
* <p>
|
|
5696
|
-
* <code>server-ip-address</code> – The IP address of the schema
|
|
5785
|
+
* <code>server-ip-address</code> – The IP address of the schema
|
|
5786
|
+
* database's server.</p>
|
|
5697
5787
|
* </li>
|
|
5698
5788
|
* </ul>
|
|
5699
|
-
*
|
|
5700
|
-
* <p>An example is: <code>describe-fleet-advisor-schemas --filter
|
|
5789
|
+
* <p>An example is: <code>describe-fleet-advisor-schemas --filter
|
|
5701
5790
|
* Name="schema-id",Values="50"</code>
|
|
5702
5791
|
* </p>
|
|
5703
5792
|
*/
|
|
@@ -5707,9 +5796,10 @@ export interface DescribeFleetAdvisorSchemasRequest {
|
|
|
5707
5796
|
*/
|
|
5708
5797
|
MaxRecords?: number;
|
|
5709
5798
|
/**
|
|
5710
|
-
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5711
|
-
* <code>NextToken</code> is a unique pagination token for each
|
|
5712
|
-
* token to retrieve the next page. Keep all
|
|
5799
|
+
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
5800
|
+
* available. The value of <code>NextToken</code> is a unique pagination token for each
|
|
5801
|
+
* page. Make the call again using the returned token to retrieve the next page. Keep all
|
|
5802
|
+
* other arguments unchanged. </p>
|
|
5713
5803
|
*/
|
|
5714
5804
|
NextToken?: string;
|
|
5715
5805
|
}
|
|
@@ -5809,8 +5899,9 @@ export interface DescribeFleetAdvisorSchemasResponse {
|
|
|
5809
5899
|
FleetAdvisorSchemas?: SchemaResponse[];
|
|
5810
5900
|
/**
|
|
5811
5901
|
* <p>If <code>NextToken</code> is returned, there are more results available. The value of
|
|
5812
|
-
*
|
|
5813
|
-
* token to retrieve the next page. Keep all other arguments
|
|
5902
|
+
* <code>NextToken</code> is a unique pagination token for each page. Make the call
|
|
5903
|
+
* again using the returned token to retrieve the next page. Keep all other arguments
|
|
5904
|
+
* unchanged. </p>
|
|
5814
5905
|
*/
|
|
5815
5906
|
NextToken?: string;
|
|
5816
5907
|
}
|
|
@@ -5834,7 +5925,8 @@ export interface DescribeOrderableReplicationInstancesMessage {
|
|
|
5834
5925
|
Marker?: string;
|
|
5835
5926
|
}
|
|
5836
5927
|
export declare enum ReleaseStatusValues {
|
|
5837
|
-
BETA = "beta"
|
|
5928
|
+
BETA = "beta",
|
|
5929
|
+
PROD = "prod"
|
|
5838
5930
|
}
|
|
5839
5931
|
/**
|
|
5840
5932
|
* <p>In response to the <code>DescribeOrderableReplicationInstances</code> operation, this
|
|
@@ -5949,6 +6041,275 @@ export interface DescribePendingMaintenanceActionsResponse {
|
|
|
5949
6041
|
*/
|
|
5950
6042
|
Marker?: string;
|
|
5951
6043
|
}
|
|
6044
|
+
export interface DescribeRecommendationLimitationsRequest {
|
|
6045
|
+
/**
|
|
6046
|
+
* <p>Filters applied to the limitations described in the form of key-value pairs.</p>
|
|
6047
|
+
*/
|
|
6048
|
+
Filters?: Filter[];
|
|
6049
|
+
/**
|
|
6050
|
+
* <p>The maximum number of records to include in the response. If more records exist than
|
|
6051
|
+
* the specified <code>MaxRecords</code> value, Fleet Advisor includes a pagination token
|
|
6052
|
+
* in the response so that you can retrieve the remaining results.</p>
|
|
6053
|
+
*/
|
|
6054
|
+
MaxRecords?: number;
|
|
6055
|
+
/**
|
|
6056
|
+
* <p>Specifies the unique pagination token that makes it possible to display the next page
|
|
6057
|
+
* of results. If this parameter is specified, the response includes only records beyond
|
|
6058
|
+
* the marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
6059
|
+
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
6060
|
+
* available. The value of <code>NextToken</code> is a unique pagination token for each
|
|
6061
|
+
* page. Make the call again using the returned token to retrieve the next page. Keep all
|
|
6062
|
+
* other arguments unchanged.</p>
|
|
6063
|
+
*/
|
|
6064
|
+
NextToken?: string;
|
|
6065
|
+
}
|
|
6066
|
+
/**
|
|
6067
|
+
* <p>Provides information about the limitations of target Amazon Web Services engines.</p>
|
|
6068
|
+
* <p>Your source database might include features that the target Amazon Web Services engine doesn't
|
|
6069
|
+
* support. Fleet Advisor lists these features as limitations. You should consider these
|
|
6070
|
+
* limitations during database migration. For each limitation, Fleet Advisor recommends an
|
|
6071
|
+
* action that you can take to address or avoid this limitation.</p>
|
|
6072
|
+
*/
|
|
6073
|
+
export interface Limitation {
|
|
6074
|
+
/**
|
|
6075
|
+
* <p>The identifier of the source database.</p>
|
|
6076
|
+
*/
|
|
6077
|
+
DatabaseId?: string;
|
|
6078
|
+
/**
|
|
6079
|
+
* <p>The name of the target engine that Fleet Advisor should use in the target engine
|
|
6080
|
+
* recommendation. Valid values include <code>"rds-aurora-mysql"</code>,
|
|
6081
|
+
* <code>"rds-aurora-postgresql"</code>, <code>"rds-mysql"</code>,
|
|
6082
|
+
* <code>"rds-oracle"</code>, <code>"rds-sql-server"</code>, and
|
|
6083
|
+
* <code>"rds-postgresql"</code>.</p>
|
|
6084
|
+
*/
|
|
6085
|
+
EngineName?: string;
|
|
6086
|
+
/**
|
|
6087
|
+
* <p>The name of the limitation. Describes unsupported database features, migration action
|
|
6088
|
+
* items, and other limitations.</p>
|
|
6089
|
+
*/
|
|
6090
|
+
Name?: string;
|
|
6091
|
+
/**
|
|
6092
|
+
* <p>A description of the limitation. Provides additional information about the limitation,
|
|
6093
|
+
* and includes recommended actions that you can take to address or avoid this
|
|
6094
|
+
* limitation.</p>
|
|
6095
|
+
*/
|
|
6096
|
+
Description?: string;
|
|
6097
|
+
/**
|
|
6098
|
+
* <p>The impact of the limitation. You can use this parameter to prioritize limitations
|
|
6099
|
+
* that you want to address. Valid values include <code>"Blocker"</code>,
|
|
6100
|
+
* <code>"High"</code>, <code>"Medium"</code>, and <code>"Low"</code>.</p>
|
|
6101
|
+
*/
|
|
6102
|
+
Impact?: string;
|
|
6103
|
+
/**
|
|
6104
|
+
* <p>The type of the limitation, such as action required, upgrade required, and limited
|
|
6105
|
+
* feature.</p>
|
|
6106
|
+
*/
|
|
6107
|
+
Type?: string;
|
|
6108
|
+
}
|
|
6109
|
+
export interface DescribeRecommendationLimitationsResponse {
|
|
6110
|
+
/**
|
|
6111
|
+
* <p>The unique pagination token returned for you to pass to a subsequent request. Fleet
|
|
6112
|
+
* Advisor returns this token when the number of records in the response is greater than
|
|
6113
|
+
* the <code>MaxRecords</code> value. To retrieve the next page, make the call again using
|
|
6114
|
+
* the returned token and keeping all other arguments unchanged.</p>
|
|
6115
|
+
*/
|
|
6116
|
+
NextToken?: string;
|
|
6117
|
+
/**
|
|
6118
|
+
* <p>The list of limitations for recommendations of target Amazon Web Services engines.</p>
|
|
6119
|
+
*/
|
|
6120
|
+
Limitations?: Limitation[];
|
|
6121
|
+
}
|
|
6122
|
+
export interface DescribeRecommendationsRequest {
|
|
6123
|
+
/**
|
|
6124
|
+
* <p>Filters applied to the target engine recommendations described in the form of
|
|
6125
|
+
* key-value pairs.</p>
|
|
6126
|
+
*/
|
|
6127
|
+
Filters?: Filter[];
|
|
6128
|
+
/**
|
|
6129
|
+
* <p>The maximum number of records to include in the response. If more records exist than
|
|
6130
|
+
* the specified <code>MaxRecords</code> value, Fleet Advisor includes a pagination token
|
|
6131
|
+
* in the response so that you can retrieve the remaining results.</p>
|
|
6132
|
+
*/
|
|
6133
|
+
MaxRecords?: number;
|
|
6134
|
+
/**
|
|
6135
|
+
* <p>Specifies the unique pagination token that makes it possible to display the next page
|
|
6136
|
+
* of results. If this parameter is specified, the response includes only records beyond
|
|
6137
|
+
* the marker, up to the value specified by <code>MaxRecords</code>.</p>
|
|
6138
|
+
* <p>If <code>NextToken</code> is returned by a previous response, there are more results
|
|
6139
|
+
* available. The value of <code>NextToken</code> is a unique pagination token for each
|
|
6140
|
+
* page. Make the call again using the returned token to retrieve the next page. Keep all
|
|
6141
|
+
* other arguments unchanged.</p>
|
|
6142
|
+
*/
|
|
6143
|
+
NextToken?: string;
|
|
6144
|
+
}
|
|
6145
|
+
/**
|
|
6146
|
+
* <p>Provides information that describes the requirements to the target engine on
|
|
6147
|
+
* Amazon RDS.</p>
|
|
6148
|
+
*/
|
|
6149
|
+
export interface RdsRequirements {
|
|
6150
|
+
/**
|
|
6151
|
+
* <p>The required target Amazon RDS engine edition.</p>
|
|
6152
|
+
*/
|
|
6153
|
+
EngineEdition?: string;
|
|
6154
|
+
/**
|
|
6155
|
+
* <p>The required number of virtual CPUs (vCPU) on the Amazon RDS DB instance.</p>
|
|
6156
|
+
*/
|
|
6157
|
+
InstanceVcpu?: number;
|
|
6158
|
+
/**
|
|
6159
|
+
* <p>The required memory on the Amazon RDS DB instance.</p>
|
|
6160
|
+
*/
|
|
6161
|
+
InstanceMemory?: number;
|
|
6162
|
+
/**
|
|
6163
|
+
* <p>The required Amazon RDS DB instance storage size.</p>
|
|
6164
|
+
*/
|
|
6165
|
+
StorageSize?: number;
|
|
6166
|
+
/**
|
|
6167
|
+
* <p>The required number of I/O operations completed each second (IOPS) on your Amazon RDS DB
|
|
6168
|
+
* instance.</p>
|
|
6169
|
+
*/
|
|
6170
|
+
StorageIops?: number;
|
|
6171
|
+
/**
|
|
6172
|
+
* <p>The required deployment option for the Amazon RDS DB instance. Valid values include
|
|
6173
|
+
* <code>"MULTI_AZ"</code> for Multi-AZ deployments and <code>"SINGLE_AZ"</code> for
|
|
6174
|
+
* Single-AZ deployments.</p>
|
|
6175
|
+
*/
|
|
6176
|
+
DeploymentOption?: string;
|
|
6177
|
+
}
|
|
6178
|
+
/**
|
|
6179
|
+
* <p>Provides information that describes the configuration of the recommended target engine
|
|
6180
|
+
* on Amazon RDS.</p>
|
|
6181
|
+
*/
|
|
6182
|
+
export interface RdsConfiguration {
|
|
6183
|
+
/**
|
|
6184
|
+
* <p>Describes the recommended target Amazon RDS engine edition.</p>
|
|
6185
|
+
*/
|
|
6186
|
+
EngineEdition?: string;
|
|
6187
|
+
/**
|
|
6188
|
+
* <p>Describes the recommended target Amazon RDS instance type.</p>
|
|
6189
|
+
*/
|
|
6190
|
+
InstanceType?: string;
|
|
6191
|
+
/**
|
|
6192
|
+
* <p>Describes the number of virtual CPUs (vCPU) on the recommended Amazon RDS DB instance that
|
|
6193
|
+
* meets your requirements.</p>
|
|
6194
|
+
*/
|
|
6195
|
+
InstanceVcpu?: number;
|
|
6196
|
+
/**
|
|
6197
|
+
* <p>Describes the memory on the recommended Amazon RDS DB instance that meets your
|
|
6198
|
+
* requirements.</p>
|
|
6199
|
+
*/
|
|
6200
|
+
InstanceMemory?: number;
|
|
6201
|
+
/**
|
|
6202
|
+
* <p>Describes the storage type of the recommended Amazon RDS DB instance that meets your
|
|
6203
|
+
* requirements.</p>
|
|
6204
|
+
* <p>Amazon RDS provides three storage types: General Purpose SSD (also known as gp2 and gp3),
|
|
6205
|
+
* Provisioned IOPS SSD (also known as io1), and magnetic (also known as standard).</p>
|
|
6206
|
+
*/
|
|
6207
|
+
StorageType?: string;
|
|
6208
|
+
/**
|
|
6209
|
+
* <p>Describes the storage size of the recommended Amazon RDS DB instance that meets your
|
|
6210
|
+
* requirements.</p>
|
|
6211
|
+
*/
|
|
6212
|
+
StorageSize?: number;
|
|
6213
|
+
/**
|
|
6214
|
+
* <p>Describes the number of I/O operations completed each second (IOPS) on the recommended
|
|
6215
|
+
* Amazon RDS DB instance that meets your requirements.</p>
|
|
6216
|
+
*/
|
|
6217
|
+
StorageIops?: number;
|
|
6218
|
+
/**
|
|
6219
|
+
* <p>Describes the deployment option for the recommended Amazon RDS DB instance. The deployment
|
|
6220
|
+
* options include Multi-AZ and Single-AZ deployments. Valid values include
|
|
6221
|
+
* <code>"MULTI_AZ"</code> and <code>"SINGLE_AZ"</code>.</p>
|
|
6222
|
+
*/
|
|
6223
|
+
DeploymentOption?: string;
|
|
6224
|
+
}
|
|
6225
|
+
/**
|
|
6226
|
+
* <p>Provides information that describes a recommendation of a target engine on
|
|
6227
|
+
* Amazon RDS.</p>
|
|
6228
|
+
*/
|
|
6229
|
+
export interface RdsRecommendation {
|
|
6230
|
+
/**
|
|
6231
|
+
* <p>Supplemental information about the requirements to the recommended target database on
|
|
6232
|
+
* Amazon RDS.</p>
|
|
6233
|
+
*/
|
|
6234
|
+
RequirementsToTarget?: RdsRequirements;
|
|
6235
|
+
/**
|
|
6236
|
+
* <p>Supplemental information about the configuration of the recommended target database on
|
|
6237
|
+
* Amazon RDS.</p>
|
|
6238
|
+
*/
|
|
6239
|
+
TargetConfiguration?: RdsConfiguration;
|
|
6240
|
+
}
|
|
6241
|
+
/**
|
|
6242
|
+
* <p>Provides information about the target engine for the specified source database.</p>
|
|
6243
|
+
*/
|
|
6244
|
+
export interface RecommendationData {
|
|
6245
|
+
/**
|
|
6246
|
+
* <p>The recommendation of a target Amazon RDS database engine.</p>
|
|
6247
|
+
*/
|
|
6248
|
+
RdsEngine?: RdsRecommendation;
|
|
6249
|
+
}
|
|
6250
|
+
/**
|
|
6251
|
+
* <p>Provides information that describes a recommendation of a target engine.</p>
|
|
6252
|
+
* <p>A <i>recommendation</i> is a set of possible Amazon Web Services target engines that
|
|
6253
|
+
* you can choose to migrate your source on-premises database. In this set, Fleet Advisor
|
|
6254
|
+
* suggests a single target engine as the right sized migration destination. To determine
|
|
6255
|
+
* this rightsized migration destination, Fleet Advisor uses the inventory metadata and
|
|
6256
|
+
* metrics from data collector. You can use recommendations before the start of migration
|
|
6257
|
+
* to save costs and reduce risks.</p>
|
|
6258
|
+
* <p>With recommendations, you can explore different target options and compare metrics, so
|
|
6259
|
+
* you can make an informed decision when you choose the migration target.</p>
|
|
6260
|
+
*/
|
|
6261
|
+
export interface Recommendation {
|
|
6262
|
+
/**
|
|
6263
|
+
* <p>The identifier of the source database for which Fleet Advisor provided this
|
|
6264
|
+
* recommendation.</p>
|
|
6265
|
+
*/
|
|
6266
|
+
DatabaseId?: string;
|
|
6267
|
+
/**
|
|
6268
|
+
* <p>The name of the target engine. Valid values include <code>"rds-aurora-mysql"</code>,
|
|
6269
|
+
* <code>"rds-aurora-postgresql"</code>, <code>"rds-mysql"</code>,
|
|
6270
|
+
* <code>"rds-oracle"</code>, <code>"rds-sql-server"</code>, and
|
|
6271
|
+
* <code>"rds-postgresql"</code>.</p>
|
|
6272
|
+
*/
|
|
6273
|
+
EngineName?: string;
|
|
6274
|
+
/**
|
|
6275
|
+
* <p>The date when Fleet Advisor created the target engine recommendation.</p>
|
|
6276
|
+
*/
|
|
6277
|
+
CreatedDate?: string;
|
|
6278
|
+
/**
|
|
6279
|
+
* <p>The status of the target engine recommendation. Valid values include
|
|
6280
|
+
* <code>"alternate"</code>, <code>"in-progress"</code>, <code>"not-viable"</code>, and
|
|
6281
|
+
* <code>"recommended"</code>.</p>
|
|
6282
|
+
*/
|
|
6283
|
+
Status?: string;
|
|
6284
|
+
/**
|
|
6285
|
+
* <p>Indicates that this target is the rightsized migration destination.</p>
|
|
6286
|
+
*/
|
|
6287
|
+
Preferred?: boolean;
|
|
6288
|
+
/**
|
|
6289
|
+
* <p>The settings in JSON format for the preferred target engine parameters. These
|
|
6290
|
+
* parameters include capacity, resource utilization, and the usage type (production,
|
|
6291
|
+
* development, or testing).</p>
|
|
6292
|
+
*/
|
|
6293
|
+
Settings?: RecommendationSettings;
|
|
6294
|
+
/**
|
|
6295
|
+
* <p>The recommendation of a target engine for the specified source database.</p>
|
|
6296
|
+
*/
|
|
6297
|
+
Data?: RecommendationData;
|
|
6298
|
+
}
|
|
6299
|
+
export interface DescribeRecommendationsResponse {
|
|
6300
|
+
/**
|
|
6301
|
+
* <p>The unique pagination token returned for you to pass to a subsequent request. Fleet
|
|
6302
|
+
* Advisor returns this token when the number of records in the response is greater than
|
|
6303
|
+
* the <code>MaxRecords</code> value. To retrieve the next page, make the call again using
|
|
6304
|
+
* the returned token and keeping all other arguments unchanged.</p>
|
|
6305
|
+
*/
|
|
6306
|
+
NextToken?: string;
|
|
6307
|
+
/**
|
|
6308
|
+
* <p>The list of recommendations of target engines that Fleet Advisor created for the
|
|
6309
|
+
* source database.</p>
|
|
6310
|
+
*/
|
|
6311
|
+
Recommendations?: Recommendation[];
|
|
6312
|
+
}
|
|
5952
6313
|
/**
|
|
5953
6314
|
* <p></p>
|
|
5954
6315
|
*/
|
|
@@ -6648,7 +7009,7 @@ export interface ImportCertificateMessage {
|
|
|
6648
7009
|
/**
|
|
6649
7010
|
* <p>The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a <code>.sso</code> file
|
|
6650
7011
|
* using the <code>fileb://</code> prefix. You can't provide the certificate inline.</p>
|
|
6651
|
-
*
|
|
7012
|
+
* <p>Example: <code>filebase64("${path.root}/rds-ca-2019-root.sso")</code>
|
|
6652
7013
|
* </p>
|
|
6653
7014
|
*/
|
|
6654
7015
|
CertificateWallet?: Uint8Array;
|
|
@@ -7069,6 +7430,13 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
7069
7430
|
* <p>DMS has enabled automatic patching for the given engine version. </p>
|
|
7070
7431
|
* </li>
|
|
7071
7432
|
* </ul>
|
|
7433
|
+
* <p>When <code>AutoMinorVersionUpgrade</code> is enabled, DMS uses the current default
|
|
7434
|
+
* engine version when you modify a replication instance. For example, if you set
|
|
7435
|
+
* <code>EngineVersion</code> to a lower version number than the current default version,
|
|
7436
|
+
* DMS uses the default version.</p>
|
|
7437
|
+
* <p>If <code>AutoMinorVersionUpgrade</code>
|
|
7438
|
+
* <i>isn’t</i> enabled when you modify a replication instance, DMS uses the
|
|
7439
|
+
* engine version specified by the <code>EngineVersion</code> parameter.</p>
|
|
7072
7440
|
*/
|
|
7073
7441
|
AutoMinorVersionUpgrade?: boolean;
|
|
7074
7442
|
/**
|
|
@@ -7210,7 +7578,7 @@ export interface ModifyReplicationTaskMessage {
|
|
|
7210
7578
|
* <p>Indicates when you want a change data capture (CDC) operation to stop. The value can be
|
|
7211
7579
|
* either server time or commit time.</p>
|
|
7212
7580
|
* <p>Server time example: --cdc-stop-position “server_time:2018-02-09T12:12:12”</p>
|
|
7213
|
-
* <p>Commit time example: --cdc-stop-position “commit_time: 2018-02-09T12:12:12
|
|
7581
|
+
* <p>Commit time example: --cdc-stop-position “commit_time: 2018-02-09T12:12:12“</p>
|
|
7214
7582
|
*/
|
|
7215
7583
|
CdcStopPosition?: string;
|
|
7216
7584
|
/**
|
|
@@ -7368,6 +7736,22 @@ export interface RunFleetAdvisorLsaAnalysisResponse {
|
|
|
7368
7736
|
*/
|
|
7369
7737
|
Status?: string;
|
|
7370
7738
|
}
|
|
7739
|
+
export interface StartRecommendationsRequest {
|
|
7740
|
+
/**
|
|
7741
|
+
* <p>The identifier of the source database to analyze and provide recommendations
|
|
7742
|
+
* for.</p>
|
|
7743
|
+
*/
|
|
7744
|
+
DatabaseId: string | undefined;
|
|
7745
|
+
/**
|
|
7746
|
+
* <p>The settings in JSON format that Fleet Advisor uses to determine target engine
|
|
7747
|
+
* recommendations. These parameters include target instance sizing and availability and
|
|
7748
|
+
* durability settings. For target instance sizing, Fleet Advisor supports the following
|
|
7749
|
+
* two options: total capacity and resource utilization. For availability and durability,
|
|
7750
|
+
* Fleet Advisor supports the following two options: production (Multi-AZ deployments) and
|
|
7751
|
+
* Dev/Test (Single-AZ deployments).</p>
|
|
7752
|
+
*/
|
|
7753
|
+
Settings: RecommendationSettings | undefined;
|
|
7754
|
+
}
|
|
7371
7755
|
export declare enum StartReplicationTaskTypeValue {
|
|
7372
7756
|
RELOAD_TARGET = "reload-target",
|
|
7373
7757
|
RESUME_PROCESSING = "resume-processing",
|
|
@@ -7384,11 +7768,15 @@ export interface StartReplicationTaskMessage {
|
|
|
7384
7768
|
/**
|
|
7385
7769
|
* <p>The type of replication task to start.</p>
|
|
7386
7770
|
* <p>When the migration type is <code>full-load</code> or <code>full-load-and-cdc</code>, the only valid value
|
|
7387
|
-
* for the first run of the task is <code>start-replication</code>.
|
|
7388
|
-
*
|
|
7389
|
-
*
|
|
7390
|
-
*
|
|
7391
|
-
*
|
|
7771
|
+
* for the first run of the task is <code>start-replication</code>. This option will start the migration.</p>
|
|
7772
|
+
* <p>You can also use <a>ReloadTables</a> to reload specific tables that failed during migration instead
|
|
7773
|
+
* of restarting the task.</p>
|
|
7774
|
+
* <p>The <code>resume-processing</code> option isn't applicable for a full-load task,
|
|
7775
|
+
* because you can't resume partially loaded tables during the full load phase.</p>
|
|
7776
|
+
* <p>For a <code>full-load-and-cdc</code> task, DMS migrates table data, and then applies data changes
|
|
7777
|
+
* that occur on the source. To load all the tables again, and start capturing source changes,
|
|
7778
|
+
* use <code>reload-target</code>. Otherwise use <code>resume-processing</code>, to replicate the
|
|
7779
|
+
* changes from the last stop position.</p>
|
|
7392
7780
|
*/
|
|
7393
7781
|
StartReplicationTaskType: StartReplicationTaskTypeValue | string | undefined;
|
|
7394
7782
|
/**
|
|
@@ -7420,7 +7808,7 @@ export interface StartReplicationTaskMessage {
|
|
|
7420
7808
|
* <p>Indicates when you want a change data capture (CDC) operation to stop. The value can be
|
|
7421
7809
|
* either server time or commit time.</p>
|
|
7422
7810
|
* <p>Server time example: --cdc-stop-position “server_time:2018-02-09T12:12:12”</p>
|
|
7423
|
-
* <p>Commit time example: --cdc-stop-position “commit_time: 2018-02-09T12:12:12
|
|
7811
|
+
* <p>Commit time example: --cdc-stop-position “commit_time: 2018-02-09T12:12:12“</p>
|
|
7424
7812
|
*/
|
|
7425
7813
|
CdcStopPosition?: string;
|
|
7426
7814
|
}
|
|
@@ -7647,6 +8035,26 @@ export declare const ResourcePendingMaintenanceActionsFilterSensitiveLog: (obj:
|
|
|
7647
8035
|
* @internal
|
|
7648
8036
|
*/
|
|
7649
8037
|
export declare const ApplyPendingMaintenanceActionResponseFilterSensitiveLog: (obj: ApplyPendingMaintenanceActionResponse) => any;
|
|
8038
|
+
/**
|
|
8039
|
+
* @internal
|
|
8040
|
+
*/
|
|
8041
|
+
export declare const RecommendationSettingsFilterSensitiveLog: (obj: RecommendationSettings) => any;
|
|
8042
|
+
/**
|
|
8043
|
+
* @internal
|
|
8044
|
+
*/
|
|
8045
|
+
export declare const StartRecommendationsRequestEntryFilterSensitiveLog: (obj: StartRecommendationsRequestEntry) => any;
|
|
8046
|
+
/**
|
|
8047
|
+
* @internal
|
|
8048
|
+
*/
|
|
8049
|
+
export declare const BatchStartRecommendationsRequestFilterSensitiveLog: (obj: BatchStartRecommendationsRequest) => any;
|
|
8050
|
+
/**
|
|
8051
|
+
* @internal
|
|
8052
|
+
*/
|
|
8053
|
+
export declare const BatchStartRecommendationsErrorEntryFilterSensitiveLog: (obj: BatchStartRecommendationsErrorEntry) => any;
|
|
8054
|
+
/**
|
|
8055
|
+
* @internal
|
|
8056
|
+
*/
|
|
8057
|
+
export declare const BatchStartRecommendationsResponseFilterSensitiveLog: (obj: BatchStartRecommendationsResponse) => any;
|
|
7650
8058
|
/**
|
|
7651
8059
|
* @internal
|
|
7652
8060
|
*/
|
|
@@ -8115,6 +8523,46 @@ export declare const DescribePendingMaintenanceActionsMessageFilterSensitiveLog:
|
|
|
8115
8523
|
* @internal
|
|
8116
8524
|
*/
|
|
8117
8525
|
export declare const DescribePendingMaintenanceActionsResponseFilterSensitiveLog: (obj: DescribePendingMaintenanceActionsResponse) => any;
|
|
8526
|
+
/**
|
|
8527
|
+
* @internal
|
|
8528
|
+
*/
|
|
8529
|
+
export declare const DescribeRecommendationLimitationsRequestFilterSensitiveLog: (obj: DescribeRecommendationLimitationsRequest) => any;
|
|
8530
|
+
/**
|
|
8531
|
+
* @internal
|
|
8532
|
+
*/
|
|
8533
|
+
export declare const LimitationFilterSensitiveLog: (obj: Limitation) => any;
|
|
8534
|
+
/**
|
|
8535
|
+
* @internal
|
|
8536
|
+
*/
|
|
8537
|
+
export declare const DescribeRecommendationLimitationsResponseFilterSensitiveLog: (obj: DescribeRecommendationLimitationsResponse) => any;
|
|
8538
|
+
/**
|
|
8539
|
+
* @internal
|
|
8540
|
+
*/
|
|
8541
|
+
export declare const DescribeRecommendationsRequestFilterSensitiveLog: (obj: DescribeRecommendationsRequest) => any;
|
|
8542
|
+
/**
|
|
8543
|
+
* @internal
|
|
8544
|
+
*/
|
|
8545
|
+
export declare const RdsRequirementsFilterSensitiveLog: (obj: RdsRequirements) => any;
|
|
8546
|
+
/**
|
|
8547
|
+
* @internal
|
|
8548
|
+
*/
|
|
8549
|
+
export declare const RdsConfigurationFilterSensitiveLog: (obj: RdsConfiguration) => any;
|
|
8550
|
+
/**
|
|
8551
|
+
* @internal
|
|
8552
|
+
*/
|
|
8553
|
+
export declare const RdsRecommendationFilterSensitiveLog: (obj: RdsRecommendation) => any;
|
|
8554
|
+
/**
|
|
8555
|
+
* @internal
|
|
8556
|
+
*/
|
|
8557
|
+
export declare const RecommendationDataFilterSensitiveLog: (obj: RecommendationData) => any;
|
|
8558
|
+
/**
|
|
8559
|
+
* @internal
|
|
8560
|
+
*/
|
|
8561
|
+
export declare const RecommendationFilterSensitiveLog: (obj: Recommendation) => any;
|
|
8562
|
+
/**
|
|
8563
|
+
* @internal
|
|
8564
|
+
*/
|
|
8565
|
+
export declare const DescribeRecommendationsResponseFilterSensitiveLog: (obj: DescribeRecommendationsResponse) => any;
|
|
8118
8566
|
/**
|
|
8119
8567
|
* @internal
|
|
8120
8568
|
*/
|
|
@@ -8319,6 +8767,10 @@ export declare const RemoveTagsFromResourceResponseFilterSensitiveLog: (obj: Rem
|
|
|
8319
8767
|
* @internal
|
|
8320
8768
|
*/
|
|
8321
8769
|
export declare const RunFleetAdvisorLsaAnalysisResponseFilterSensitiveLog: (obj: RunFleetAdvisorLsaAnalysisResponse) => any;
|
|
8770
|
+
/**
|
|
8771
|
+
* @internal
|
|
8772
|
+
*/
|
|
8773
|
+
export declare const StartRecommendationsRequestFilterSensitiveLog: (obj: StartRecommendationsRequest) => any;
|
|
8322
8774
|
/**
|
|
8323
8775
|
* @internal
|
|
8324
8776
|
*/
|