@aws-sdk/client-database-migration-service 3.928.0 → 3.930.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 +56 -0
- package/dist-cjs/index.js +313 -80
- package/dist-es/DatabaseMigrationService.js +14 -0
- package/dist-es/commands/CancelMetadataModelConversionCommand.js +16 -0
- package/dist-es/commands/CancelMetadataModelCreationCommand.js +16 -0
- package/dist-es/commands/DescribeMetadataModelChildrenCommand.js +16 -0
- package/dist-es/commands/DescribeMetadataModelCommand.js +16 -0
- package/dist-es/commands/DescribeMetadataModelCreationsCommand.js +16 -0
- package/dist-es/commands/GetTargetSelectionRulesCommand.js +16 -0
- package/dist-es/commands/StartMetadataModelCreationCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +4 -34
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/pagination/DescribeMetadataModelChildrenPaginator.js +4 -0
- package/dist-es/pagination/DescribeMetadataModelCreationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +205 -42
- package/dist-types/DatabaseMigrationService.d.ts +49 -0
- package/dist-types/DatabaseMigrationServiceClient.d.ts +9 -2
- package/dist-types/commands/CancelMetadataModelConversionCommand.d.ts +98 -0
- package/dist-types/commands/CancelMetadataModelCreationCommand.d.ts +98 -0
- package/dist-types/commands/DescribeMetadataModelChildrenCommand.d.ts +91 -0
- package/dist-types/commands/DescribeMetadataModelCommand.d.ts +91 -0
- package/dist-types/commands/DescribeMetadataModelCreationsCommand.d.ts +107 -0
- package/dist-types/commands/DescribeReplicationSubnetGroupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationTableStatisticsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationsCommand.d.ts +2 -1
- package/dist-types/commands/GetTargetSelectionRulesCommand.d.ts +85 -0
- package/dist-types/commands/StartMetadataModelCreationCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +331 -843
- package/dist-types/models/models_1.d.ts +825 -7
- package/dist-types/pagination/DescribeMetadataModelChildrenPaginator.d.ts +7 -0
- package/dist-types/pagination/DescribeMetadataModelCreationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +25 -0
- package/dist-types/ts3.4/DatabaseMigrationService.d.ts +119 -0
- package/dist-types/ts3.4/DatabaseMigrationServiceClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelMetadataModelConversionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelMetadataModelCreationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeMetadataModelChildrenCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeMetadataModelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeMetadataModelCreationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeReplicationSubnetGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReplicationTableStatisticsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReplicationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetTargetSelectionRulesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartMetadataModelCreationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +87 -151
- package/dist-types/ts3.4/models/models_1.d.ts +156 -8
- package/dist-types/ts3.4/pagination/DescribeMetadataModelChildrenPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeMetadataModelCreationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
- package/package.json +34 -34
|
@@ -332,6 +332,147 @@ export interface BatchStartRecommendationsResponse {
|
|
|
332
332
|
*/
|
|
333
333
|
ErrorEntries?: BatchStartRecommendationsErrorEntry[] | undefined;
|
|
334
334
|
}
|
|
335
|
+
/**
|
|
336
|
+
* @public
|
|
337
|
+
*/
|
|
338
|
+
export interface CancelMetadataModelConversionMessage {
|
|
339
|
+
/**
|
|
340
|
+
* <p>The migration project name or Amazon Resource Name (ARN).</p>
|
|
341
|
+
* @public
|
|
342
|
+
*/
|
|
343
|
+
MigrationProjectIdentifier: string | undefined;
|
|
344
|
+
/**
|
|
345
|
+
* <p>The identifier for the metadata model conversion operation to cancel. This operation was initiated by StartMetadataModelConversion.</p>
|
|
346
|
+
* @public
|
|
347
|
+
*/
|
|
348
|
+
RequestIdentifier: string | undefined;
|
|
349
|
+
}
|
|
350
|
+
/**
|
|
351
|
+
* <p>Provides error information about a schema conversion operation.</p>
|
|
352
|
+
* @public
|
|
353
|
+
*/
|
|
354
|
+
export interface DefaultErrorDetails {
|
|
355
|
+
/**
|
|
356
|
+
* <p>The error message.</p>
|
|
357
|
+
* @public
|
|
358
|
+
*/
|
|
359
|
+
Message?: string | undefined;
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
* <p>Provides error information about a project.</p>
|
|
363
|
+
* @public
|
|
364
|
+
*/
|
|
365
|
+
export type ErrorDetails = ErrorDetails.DefaultErrorDetailsMember | ErrorDetails.$UnknownMember;
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
*/
|
|
369
|
+
export declare namespace ErrorDetails {
|
|
370
|
+
/**
|
|
371
|
+
* <p>Error information about a project.</p>
|
|
372
|
+
* @public
|
|
373
|
+
*/
|
|
374
|
+
interface DefaultErrorDetailsMember {
|
|
375
|
+
defaultErrorDetails: DefaultErrorDetails;
|
|
376
|
+
$unknown?: never;
|
|
377
|
+
}
|
|
378
|
+
/**
|
|
379
|
+
* @public
|
|
380
|
+
*/
|
|
381
|
+
interface $UnknownMember {
|
|
382
|
+
defaultErrorDetails?: never;
|
|
383
|
+
$unknown: [string, any];
|
|
384
|
+
}
|
|
385
|
+
/**
|
|
386
|
+
* @deprecated unused in schema-serde mode.
|
|
387
|
+
*
|
|
388
|
+
*/
|
|
389
|
+
interface Visitor<T> {
|
|
390
|
+
defaultErrorDetails: (value: DefaultErrorDetails) => T;
|
|
391
|
+
_: (name: string, value: any) => T;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
/**
|
|
395
|
+
* <p>Provides information about a metadata model assessment exported to SQL.</p>
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
export interface ExportSqlDetails {
|
|
399
|
+
/**
|
|
400
|
+
* <p>The Amazon S3 object key for the object containing the exported metadata model assessment.</p>
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
403
|
+
S3ObjectKey?: string | undefined;
|
|
404
|
+
/**
|
|
405
|
+
* <p>The URL for the object containing the exported metadata model assessment.</p>
|
|
406
|
+
* @public
|
|
407
|
+
*/
|
|
408
|
+
ObjectURL?: string | undefined;
|
|
409
|
+
}
|
|
410
|
+
/**
|
|
411
|
+
* <p>Provides information about a schema conversion action.</p>
|
|
412
|
+
* @public
|
|
413
|
+
*/
|
|
414
|
+
export interface SchemaConversionRequest {
|
|
415
|
+
/**
|
|
416
|
+
* <p>The schema conversion action status.</p>
|
|
417
|
+
* @public
|
|
418
|
+
*/
|
|
419
|
+
Status?: string | undefined;
|
|
420
|
+
/**
|
|
421
|
+
* <p>The identifier for the schema conversion action.</p>
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
RequestIdentifier?: string | undefined;
|
|
425
|
+
/**
|
|
426
|
+
* <p>The migration project ARN.</p>
|
|
427
|
+
* @public
|
|
428
|
+
*/
|
|
429
|
+
MigrationProjectArn?: string | undefined;
|
|
430
|
+
/**
|
|
431
|
+
* <p>Provides error information about a project.</p>
|
|
432
|
+
* @public
|
|
433
|
+
*/
|
|
434
|
+
Error?: ErrorDetails | undefined;
|
|
435
|
+
/**
|
|
436
|
+
* <p>Provides information about a metadata model assessment exported to SQL.</p>
|
|
437
|
+
* @public
|
|
438
|
+
*/
|
|
439
|
+
ExportSqlDetails?: ExportSqlDetails | undefined;
|
|
440
|
+
}
|
|
441
|
+
/**
|
|
442
|
+
* @public
|
|
443
|
+
*/
|
|
444
|
+
export interface CancelMetadataModelConversionResponse {
|
|
445
|
+
/**
|
|
446
|
+
* <p>Provides information about a schema conversion action.</p>
|
|
447
|
+
* @public
|
|
448
|
+
*/
|
|
449
|
+
Request?: SchemaConversionRequest | undefined;
|
|
450
|
+
}
|
|
451
|
+
/**
|
|
452
|
+
* @public
|
|
453
|
+
*/
|
|
454
|
+
export interface CancelMetadataModelCreationMessage {
|
|
455
|
+
/**
|
|
456
|
+
* <p>The migration project name or Amazon Resource Name (ARN).</p>
|
|
457
|
+
* @public
|
|
458
|
+
*/
|
|
459
|
+
MigrationProjectIdentifier: string | undefined;
|
|
460
|
+
/**
|
|
461
|
+
* <p>The identifier for the metadata model creation operation to cancel. This operation was initiated by <code>StartMetadataModelCreation</code>.</p>
|
|
462
|
+
* @public
|
|
463
|
+
*/
|
|
464
|
+
RequestIdentifier: string | undefined;
|
|
465
|
+
}
|
|
466
|
+
/**
|
|
467
|
+
* @public
|
|
468
|
+
*/
|
|
469
|
+
export interface CancelMetadataModelCreationResponse {
|
|
470
|
+
/**
|
|
471
|
+
* <p>Provides information about a schema conversion action.</p>
|
|
472
|
+
* @public
|
|
473
|
+
*/
|
|
474
|
+
Request?: SchemaConversionRequest | undefined;
|
|
475
|
+
}
|
|
335
476
|
/**
|
|
336
477
|
* <p></p>
|
|
337
478
|
* @public
|
|
@@ -1587,6 +1728,10 @@ export declare namespace DataProviderSettings {
|
|
|
1587
1728
|
MongoDbSettings?: never;
|
|
1588
1729
|
$unknown: [string, any];
|
|
1589
1730
|
}
|
|
1731
|
+
/**
|
|
1732
|
+
* @deprecated unused in schema-serde mode.
|
|
1733
|
+
*
|
|
1734
|
+
*/
|
|
1590
1735
|
interface Visitor<T> {
|
|
1591
1736
|
RedshiftSettings: (value: RedshiftDataProviderSettings) => T;
|
|
1592
1737
|
PostgreSqlSettings: (value: PostgreSqlDataProviderSettings) => T;
|
|
@@ -1600,7 +1745,6 @@ export declare namespace DataProviderSettings {
|
|
|
1600
1745
|
MongoDbSettings: (value: MongoDbDataProviderSettings) => T;
|
|
1601
1746
|
_: (name: string, value: any) => T;
|
|
1602
1747
|
}
|
|
1603
|
-
const visit: <T>(value: DataProviderSettings, visitor: Visitor<T>) => T;
|
|
1604
1748
|
}
|
|
1605
1749
|
/**
|
|
1606
1750
|
* @public
|
|
@@ -8725,94 +8869,6 @@ export interface DescribeExtensionPackAssociationsMessage {
|
|
|
8725
8869
|
*/
|
|
8726
8870
|
MaxRecords?: number | undefined;
|
|
8727
8871
|
}
|
|
8728
|
-
/**
|
|
8729
|
-
* <p>Provides error information about a schema conversion operation.</p>
|
|
8730
|
-
* @public
|
|
8731
|
-
*/
|
|
8732
|
-
export interface DefaultErrorDetails {
|
|
8733
|
-
/**
|
|
8734
|
-
* <p>The error message.</p>
|
|
8735
|
-
* @public
|
|
8736
|
-
*/
|
|
8737
|
-
Message?: string | undefined;
|
|
8738
|
-
}
|
|
8739
|
-
/**
|
|
8740
|
-
* <p>Provides error information about a project.</p>
|
|
8741
|
-
* @public
|
|
8742
|
-
*/
|
|
8743
|
-
export type ErrorDetails = ErrorDetails.DefaultErrorDetailsMember | ErrorDetails.$UnknownMember;
|
|
8744
|
-
/**
|
|
8745
|
-
* @public
|
|
8746
|
-
*/
|
|
8747
|
-
export declare namespace ErrorDetails {
|
|
8748
|
-
/**
|
|
8749
|
-
* <p>Error information about a project.</p>
|
|
8750
|
-
* @public
|
|
8751
|
-
*/
|
|
8752
|
-
interface DefaultErrorDetailsMember {
|
|
8753
|
-
defaultErrorDetails: DefaultErrorDetails;
|
|
8754
|
-
$unknown?: never;
|
|
8755
|
-
}
|
|
8756
|
-
/**
|
|
8757
|
-
* @public
|
|
8758
|
-
*/
|
|
8759
|
-
interface $UnknownMember {
|
|
8760
|
-
defaultErrorDetails?: never;
|
|
8761
|
-
$unknown: [string, any];
|
|
8762
|
-
}
|
|
8763
|
-
interface Visitor<T> {
|
|
8764
|
-
defaultErrorDetails: (value: DefaultErrorDetails) => T;
|
|
8765
|
-
_: (name: string, value: any) => T;
|
|
8766
|
-
}
|
|
8767
|
-
const visit: <T>(value: ErrorDetails, visitor: Visitor<T>) => T;
|
|
8768
|
-
}
|
|
8769
|
-
/**
|
|
8770
|
-
* <p>Provides information about a metadata model assessment exported to SQL.</p>
|
|
8771
|
-
* @public
|
|
8772
|
-
*/
|
|
8773
|
-
export interface ExportSqlDetails {
|
|
8774
|
-
/**
|
|
8775
|
-
* <p>The Amazon S3 object key for the object containing the exported metadata model assessment.</p>
|
|
8776
|
-
* @public
|
|
8777
|
-
*/
|
|
8778
|
-
S3ObjectKey?: string | undefined;
|
|
8779
|
-
/**
|
|
8780
|
-
* <p>The URL for the object containing the exported metadata model assessment.</p>
|
|
8781
|
-
* @public
|
|
8782
|
-
*/
|
|
8783
|
-
ObjectURL?: string | undefined;
|
|
8784
|
-
}
|
|
8785
|
-
/**
|
|
8786
|
-
* <p>Provides information about a schema conversion action.</p>
|
|
8787
|
-
* @public
|
|
8788
|
-
*/
|
|
8789
|
-
export interface SchemaConversionRequest {
|
|
8790
|
-
/**
|
|
8791
|
-
* <p>The schema conversion action status.</p>
|
|
8792
|
-
* @public
|
|
8793
|
-
*/
|
|
8794
|
-
Status?: string | undefined;
|
|
8795
|
-
/**
|
|
8796
|
-
* <p>The identifier for the schema conversion action.</p>
|
|
8797
|
-
* @public
|
|
8798
|
-
*/
|
|
8799
|
-
RequestIdentifier?: string | undefined;
|
|
8800
|
-
/**
|
|
8801
|
-
* <p>The migration project ARN.</p>
|
|
8802
|
-
* @public
|
|
8803
|
-
*/
|
|
8804
|
-
MigrationProjectArn?: string | undefined;
|
|
8805
|
-
/**
|
|
8806
|
-
* <p>Provides error information about a project.</p>
|
|
8807
|
-
* @public
|
|
8808
|
-
*/
|
|
8809
|
-
Error?: ErrorDetails | undefined;
|
|
8810
|
-
/**
|
|
8811
|
-
* <p>Provides information about a metadata model assessment exported to SQL.</p>
|
|
8812
|
-
* @public
|
|
8813
|
-
*/
|
|
8814
|
-
ExportSqlDetails?: ExportSqlDetails | undefined;
|
|
8815
|
-
}
|
|
8816
8872
|
/**
|
|
8817
8873
|
* @public
|
|
8818
8874
|
*/
|
|
@@ -9649,56 +9705,174 @@ export interface DescribeInstanceProfilesResponse {
|
|
|
9649
9705
|
}
|
|
9650
9706
|
/**
|
|
9651
9707
|
* @public
|
|
9708
|
+
* @enum
|
|
9652
9709
|
*/
|
|
9653
|
-
export
|
|
9654
|
-
|
|
9655
|
-
|
|
9656
|
-
|
|
9657
|
-
|
|
9658
|
-
|
|
9710
|
+
export declare const OriginTypeValue: {
|
|
9711
|
+
readonly SOURCE: "SOURCE";
|
|
9712
|
+
readonly TARGET: "TARGET";
|
|
9713
|
+
};
|
|
9714
|
+
/**
|
|
9715
|
+
* @public
|
|
9716
|
+
*/
|
|
9717
|
+
export type OriginTypeValue = (typeof OriginTypeValue)[keyof typeof OriginTypeValue];
|
|
9718
|
+
/**
|
|
9719
|
+
* @public
|
|
9720
|
+
*/
|
|
9721
|
+
export interface DescribeMetadataModelMessage {
|
|
9659
9722
|
/**
|
|
9660
|
-
* <p>
|
|
9723
|
+
* <p>The JSON string that specifies which metadata model to retrieve. Only one selection rule with "rule-action": "explicit" can be provided. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.SelectionTransformation.Selections.html">Selection Rules</a> in the DMS User Guide.</p>
|
|
9661
9724
|
* @public
|
|
9662
9725
|
*/
|
|
9663
|
-
|
|
9726
|
+
SelectionRules: string | undefined;
|
|
9664
9727
|
/**
|
|
9665
|
-
* <p>
|
|
9666
|
-
* If this parameter is specified, the response includes only records beyond the marker, up to the
|
|
9667
|
-
* value specified by <code>MaxRecords</code>.</p>
|
|
9668
|
-
* <p>If <code>Marker</code> is returned by a previous response, there are more results available.
|
|
9669
|
-
* The value of <code>Marker</code> is a unique pagination token for each page. To retrieve the next page,
|
|
9670
|
-
* make the call again using the returned token and keeping all other arguments unchanged.</p>
|
|
9728
|
+
* <p>The migration project name or Amazon Resource Name (ARN).</p>
|
|
9671
9729
|
* @public
|
|
9672
9730
|
*/
|
|
9673
|
-
|
|
9731
|
+
MigrationProjectIdentifier: string | undefined;
|
|
9674
9732
|
/**
|
|
9675
|
-
* <p>
|
|
9676
|
-
* the specified <code>MaxRecords</code> value, DMS includes a pagination token
|
|
9677
|
-
* in the response so that you can retrieve the remaining results.</p>
|
|
9733
|
+
* <p>Specifies whether to retrieve metadata from the source or target tree. Valid values: SOURCE | TARGET</p>
|
|
9678
9734
|
* @public
|
|
9679
9735
|
*/
|
|
9680
|
-
|
|
9736
|
+
Origin: OriginTypeValue | undefined;
|
|
9681
9737
|
}
|
|
9682
9738
|
/**
|
|
9739
|
+
* <p>A reference to a metadata model, including its name and selection rules for location identification.</p>
|
|
9683
9740
|
* @public
|
|
9684
9741
|
*/
|
|
9685
|
-
export interface
|
|
9742
|
+
export interface MetadataModelReference {
|
|
9686
9743
|
/**
|
|
9687
|
-
* <p>
|
|
9688
|
-
* If this parameter is specified, the response includes only records beyond the marker, up to the
|
|
9689
|
-
* value specified by <code>MaxRecords</code>.</p>
|
|
9690
|
-
* <p>If <code>Marker</code> is returned by a previous response, there are more results available.
|
|
9691
|
-
* The value of <code>Marker</code> is a unique pagination token for each page. To retrieve the next page,
|
|
9692
|
-
* make the call again using the returned token and keeping all other arguments unchanged.</p>
|
|
9744
|
+
* <p>The name of the metadata model.</p>
|
|
9693
9745
|
* @public
|
|
9694
9746
|
*/
|
|
9695
|
-
|
|
9747
|
+
MetadataModelName?: string | undefined;
|
|
9696
9748
|
/**
|
|
9697
|
-
* <p>
|
|
9749
|
+
* <p>The JSON string representing metadata model location.</p>
|
|
9750
|
+
* @public
|
|
9751
|
+
*/
|
|
9752
|
+
SelectionRules?: string | undefined;
|
|
9753
|
+
}
|
|
9754
|
+
/**
|
|
9755
|
+
* @public
|
|
9756
|
+
*/
|
|
9757
|
+
export interface DescribeMetadataModelResponse {
|
|
9758
|
+
/**
|
|
9759
|
+
* <p>The name of the metadata model.</p>
|
|
9760
|
+
* @public
|
|
9761
|
+
*/
|
|
9762
|
+
MetadataModelName?: string | undefined;
|
|
9763
|
+
/**
|
|
9764
|
+
* <p>The type of the metadata model.</p>
|
|
9765
|
+
* @public
|
|
9766
|
+
*/
|
|
9767
|
+
MetadataModelType?: string | undefined;
|
|
9768
|
+
/**
|
|
9769
|
+
* <p>A list of counterpart metadata models in the target. This field is populated only when Origin is SOURCE and after the object has been converted by DMS Schema Conversion.</p>
|
|
9770
|
+
* @public
|
|
9771
|
+
*/
|
|
9772
|
+
TargetMetadataModels?: MetadataModelReference[] | undefined;
|
|
9773
|
+
/**
|
|
9774
|
+
* <p>The SQL text of the metadata model. This field might not be populated for some metadata models.</p>
|
|
9775
|
+
* @public
|
|
9776
|
+
*/
|
|
9777
|
+
Definition?: string | undefined;
|
|
9778
|
+
}
|
|
9779
|
+
/**
|
|
9780
|
+
* @public
|
|
9781
|
+
*/
|
|
9782
|
+
export interface DescribeMetadataModelAssessmentsMessage {
|
|
9783
|
+
/**
|
|
9784
|
+
* <p>The name or Amazon Resource Name (ARN) of the migration project.</p>
|
|
9785
|
+
* @public
|
|
9786
|
+
*/
|
|
9787
|
+
MigrationProjectIdentifier: string | undefined;
|
|
9788
|
+
/**
|
|
9789
|
+
* <p>Filters applied to the metadata model assessments described in the form of key-value pairs.</p>
|
|
9790
|
+
* @public
|
|
9791
|
+
*/
|
|
9792
|
+
Filters?: Filter[] | undefined;
|
|
9793
|
+
/**
|
|
9794
|
+
* <p>Specifies the unique pagination token that makes it possible to display the next page of results.
|
|
9795
|
+
* If this parameter is specified, the response includes only records beyond the marker, up to the
|
|
9796
|
+
* value specified by <code>MaxRecords</code>.</p>
|
|
9797
|
+
* <p>If <code>Marker</code> is returned by a previous response, there are more results available.
|
|
9798
|
+
* The value of <code>Marker</code> is a unique pagination token for each page. To retrieve the next page,
|
|
9799
|
+
* make the call again using the returned token and keeping all other arguments unchanged.</p>
|
|
9800
|
+
* @public
|
|
9801
|
+
*/
|
|
9802
|
+
Marker?: string | undefined;
|
|
9803
|
+
/**
|
|
9804
|
+
* <p>The maximum number of records to include in the response. If more records exist than
|
|
9805
|
+
* the specified <code>MaxRecords</code> value, DMS includes a pagination token
|
|
9806
|
+
* in the response so that you can retrieve the remaining results.</p>
|
|
9807
|
+
* @public
|
|
9808
|
+
*/
|
|
9809
|
+
MaxRecords?: number | undefined;
|
|
9810
|
+
}
|
|
9811
|
+
/**
|
|
9812
|
+
* @public
|
|
9813
|
+
*/
|
|
9814
|
+
export interface DescribeMetadataModelAssessmentsResponse {
|
|
9815
|
+
/**
|
|
9816
|
+
* <p>Specifies the unique pagination token that makes it possible to display the next page of results.
|
|
9817
|
+
* If this parameter is specified, the response includes only records beyond the marker, up to the
|
|
9818
|
+
* value specified by <code>MaxRecords</code>.</p>
|
|
9819
|
+
* <p>If <code>Marker</code> is returned by a previous response, there are more results available.
|
|
9820
|
+
* The value of <code>Marker</code> is a unique pagination token for each page. To retrieve the next page,
|
|
9821
|
+
* make the call again using the returned token and keeping all other arguments unchanged.</p>
|
|
9822
|
+
* @public
|
|
9823
|
+
*/
|
|
9824
|
+
Marker?: string | undefined;
|
|
9825
|
+
/**
|
|
9826
|
+
* <p>A paginated list of metadata model assessments for the specified migration project.</p>
|
|
9698
9827
|
* @public
|
|
9699
9828
|
*/
|
|
9700
9829
|
Requests?: SchemaConversionRequest[] | undefined;
|
|
9701
9830
|
}
|
|
9831
|
+
/**
|
|
9832
|
+
* @public
|
|
9833
|
+
*/
|
|
9834
|
+
export interface DescribeMetadataModelChildrenMessage {
|
|
9835
|
+
/**
|
|
9836
|
+
* <p>The JSON string that specifies which metadata model's children to retrieve. Only one selection rule with "rule-action": "explicit" can be provided. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.CustomizingTasks.TableMapping.SelectionTransformation.Selections.html">Selection Rules</a> in the DMS User Guide.</p>
|
|
9837
|
+
* @public
|
|
9838
|
+
*/
|
|
9839
|
+
SelectionRules: string | undefined;
|
|
9840
|
+
/**
|
|
9841
|
+
* <p>The migration project name or Amazon Resource Name (ARN).</p>
|
|
9842
|
+
* @public
|
|
9843
|
+
*/
|
|
9844
|
+
MigrationProjectIdentifier: string | undefined;
|
|
9845
|
+
/**
|
|
9846
|
+
* <p>Specifies whether to retrieve metadata from the source or target tree. Valid values: SOURCE | TARGET</p>
|
|
9847
|
+
* @public
|
|
9848
|
+
*/
|
|
9849
|
+
Origin: OriginTypeValue | undefined;
|
|
9850
|
+
/**
|
|
9851
|
+
* <p>Specifies the unique pagination token that indicates where the next page should start. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.</p>
|
|
9852
|
+
* @public
|
|
9853
|
+
*/
|
|
9854
|
+
Marker?: string | undefined;
|
|
9855
|
+
/**
|
|
9856
|
+
* <p>The maximum number of metadata model children to include in the response. If more items exist than the specified MaxRecords value, a marker is included in the response so that the remaining results can be retrieved.</p>
|
|
9857
|
+
* @public
|
|
9858
|
+
*/
|
|
9859
|
+
MaxRecords?: number | undefined;
|
|
9860
|
+
}
|
|
9861
|
+
/**
|
|
9862
|
+
* @public
|
|
9863
|
+
*/
|
|
9864
|
+
export interface DescribeMetadataModelChildrenResponse {
|
|
9865
|
+
/**
|
|
9866
|
+
* <p>Specifies the unique pagination token that makes it possible to display the next page of metadata model children. If a marker is returned, there are more metadata model children available.</p>
|
|
9867
|
+
* @public
|
|
9868
|
+
*/
|
|
9869
|
+
Marker?: string | undefined;
|
|
9870
|
+
/**
|
|
9871
|
+
* <p>A list of child metadata models.</p>
|
|
9872
|
+
* @public
|
|
9873
|
+
*/
|
|
9874
|
+
MetadataModelChildren?: MetadataModelReference[] | undefined;
|
|
9875
|
+
}
|
|
9702
9876
|
/**
|
|
9703
9877
|
* @public
|
|
9704
9878
|
*/
|
|
@@ -9751,6 +9925,46 @@ export interface DescribeMetadataModelConversionsResponse {
|
|
|
9751
9925
|
*/
|
|
9752
9926
|
Requests?: SchemaConversionRequest[] | undefined;
|
|
9753
9927
|
}
|
|
9928
|
+
/**
|
|
9929
|
+
* @public
|
|
9930
|
+
*/
|
|
9931
|
+
export interface DescribeMetadataModelCreationsMessage {
|
|
9932
|
+
/**
|
|
9933
|
+
* <p>Filters applied to the metadata model creation requests described in the form of key-value pairs. The supported filters are request-id and status.</p>
|
|
9934
|
+
* @public
|
|
9935
|
+
*/
|
|
9936
|
+
Filters?: Filter[] | undefined;
|
|
9937
|
+
/**
|
|
9938
|
+
* <p>Specifies the unique pagination token that makes it possible to display the next page of metadata model creation requests. If Marker is returned by a previous response, there are more metadata model creation requests available.</p>
|
|
9939
|
+
* @public
|
|
9940
|
+
*/
|
|
9941
|
+
Marker?: string | undefined;
|
|
9942
|
+
/**
|
|
9943
|
+
* <p>The maximum number of metadata model creation requests to include in the response. If more requests exist than the specified MaxRecords value, a pagination token is provided in the response so that you can retrieve the remaining results.</p>
|
|
9944
|
+
* @public
|
|
9945
|
+
*/
|
|
9946
|
+
MaxRecords?: number | undefined;
|
|
9947
|
+
/**
|
|
9948
|
+
* <p>The migration project name or Amazon Resource Name (ARN).</p>
|
|
9949
|
+
* @public
|
|
9950
|
+
*/
|
|
9951
|
+
MigrationProjectIdentifier: string | undefined;
|
|
9952
|
+
}
|
|
9953
|
+
/**
|
|
9954
|
+
* @public
|
|
9955
|
+
*/
|
|
9956
|
+
export interface DescribeMetadataModelCreationsResponse {
|
|
9957
|
+
/**
|
|
9958
|
+
* <p>Specifies the unique pagination token that makes it possible to display the next page of metadata model creation requests. If Marker is returned, there are more metadata model creation requests available.</p>
|
|
9959
|
+
* @public
|
|
9960
|
+
*/
|
|
9961
|
+
Marker?: string | undefined;
|
|
9962
|
+
/**
|
|
9963
|
+
* <p>A list of metadata model creation requests. The ExportSqlDetails field will never be populated for the DescribeMetadataModelCreations operation.</p>
|
|
9964
|
+
* @public
|
|
9965
|
+
*/
|
|
9966
|
+
Requests?: SchemaConversionRequest[] | undefined;
|
|
9967
|
+
}
|
|
9754
9968
|
/**
|
|
9755
9969
|
* @public
|
|
9756
9970
|
*/
|
|
@@ -10844,729 +11058,3 @@ export interface PremigrationAssessmentStatus {
|
|
|
10844
11058
|
*/
|
|
10845
11059
|
ResultStatistic?: ReplicationTaskAssessmentRunResultStatistic | undefined;
|
|
10846
11060
|
}
|
|
10847
|
-
/**
|
|
10848
|
-
* <p>Information about provisioning resources for an DMS serverless replication.</p>
|
|
10849
|
-
* @public
|
|
10850
|
-
*/
|
|
10851
|
-
export interface ProvisionData {
|
|
10852
|
-
/**
|
|
10853
|
-
* <p>The current provisioning state </p>
|
|
10854
|
-
* @public
|
|
10855
|
-
*/
|
|
10856
|
-
ProvisionState?: string | undefined;
|
|
10857
|
-
/**
|
|
10858
|
-
* <p>The number of capacity units the replication is using.</p>
|
|
10859
|
-
* @public
|
|
10860
|
-
*/
|
|
10861
|
-
ProvisionedCapacityUnits?: number | undefined;
|
|
10862
|
-
/**
|
|
10863
|
-
* <p>The timestamp when DMS provisioned replication resources.</p>
|
|
10864
|
-
* @public
|
|
10865
|
-
*/
|
|
10866
|
-
DateProvisioned?: Date | undefined;
|
|
10867
|
-
/**
|
|
10868
|
-
* <p>Whether the new provisioning is available to the replication.</p>
|
|
10869
|
-
* @public
|
|
10870
|
-
*/
|
|
10871
|
-
IsNewProvisioningAvailable?: boolean | undefined;
|
|
10872
|
-
/**
|
|
10873
|
-
* <p>The timestamp when provisioning became available.</p>
|
|
10874
|
-
* @public
|
|
10875
|
-
*/
|
|
10876
|
-
DateNewProvisioningDataAvailable?: Date | undefined;
|
|
10877
|
-
/**
|
|
10878
|
-
* <p>A message describing the reason that DMS provisioned new resources for the serverless
|
|
10879
|
-
* replication.</p>
|
|
10880
|
-
* @public
|
|
10881
|
-
*/
|
|
10882
|
-
ReasonForNewProvisioningData?: string | undefined;
|
|
10883
|
-
}
|
|
10884
|
-
/**
|
|
10885
|
-
* <p>This object provides a collection of statistics about a serverless replication.</p>
|
|
10886
|
-
* @public
|
|
10887
|
-
*/
|
|
10888
|
-
export interface ReplicationStats {
|
|
10889
|
-
/**
|
|
10890
|
-
* <p>The percent complete for the full load serverless replication.</p>
|
|
10891
|
-
* @public
|
|
10892
|
-
*/
|
|
10893
|
-
FullLoadProgressPercent?: number | undefined;
|
|
10894
|
-
/**
|
|
10895
|
-
* <p>The elapsed time of the replication, in milliseconds.</p>
|
|
10896
|
-
* @public
|
|
10897
|
-
*/
|
|
10898
|
-
ElapsedTimeMillis?: number | undefined;
|
|
10899
|
-
/**
|
|
10900
|
-
* <p>The number of tables loaded for this replication.</p>
|
|
10901
|
-
* @public
|
|
10902
|
-
*/
|
|
10903
|
-
TablesLoaded?: number | undefined;
|
|
10904
|
-
/**
|
|
10905
|
-
* <p>The number of tables currently loading for this replication.</p>
|
|
10906
|
-
* @public
|
|
10907
|
-
*/
|
|
10908
|
-
TablesLoading?: number | undefined;
|
|
10909
|
-
/**
|
|
10910
|
-
* <p>The number of tables queued for this replication.</p>
|
|
10911
|
-
* @public
|
|
10912
|
-
*/
|
|
10913
|
-
TablesQueued?: number | undefined;
|
|
10914
|
-
/**
|
|
10915
|
-
* <p>The number of errors that have occured for this replication.</p>
|
|
10916
|
-
* @public
|
|
10917
|
-
*/
|
|
10918
|
-
TablesErrored?: number | undefined;
|
|
10919
|
-
/**
|
|
10920
|
-
* <p>The date the replication was started either with a fresh start or a target
|
|
10921
|
-
* reload.</p>
|
|
10922
|
-
* @public
|
|
10923
|
-
*/
|
|
10924
|
-
FreshStartDate?: Date | undefined;
|
|
10925
|
-
/**
|
|
10926
|
-
* <p>The date the replication is scheduled to start.</p>
|
|
10927
|
-
* @public
|
|
10928
|
-
*/
|
|
10929
|
-
StartDate?: Date | undefined;
|
|
10930
|
-
/**
|
|
10931
|
-
* <p>The date the replication was stopped.</p>
|
|
10932
|
-
* @public
|
|
10933
|
-
*/
|
|
10934
|
-
StopDate?: Date | undefined;
|
|
10935
|
-
/**
|
|
10936
|
-
* <p>The date the replication full load was started.</p>
|
|
10937
|
-
* @public
|
|
10938
|
-
*/
|
|
10939
|
-
FullLoadStartDate?: Date | undefined;
|
|
10940
|
-
/**
|
|
10941
|
-
* <p>The date the replication full load was finished.</p>
|
|
10942
|
-
* @public
|
|
10943
|
-
*/
|
|
10944
|
-
FullLoadFinishDate?: Date | undefined;
|
|
10945
|
-
}
|
|
10946
|
-
/**
|
|
10947
|
-
* <p>Provides information that describes a serverless replication created by the
|
|
10948
|
-
* <code>CreateReplication</code> operation.</p>
|
|
10949
|
-
* @public
|
|
10950
|
-
*/
|
|
10951
|
-
export interface Replication {
|
|
10952
|
-
/**
|
|
10953
|
-
* <p>The identifier for the <code>ReplicationConfig</code> associated with the
|
|
10954
|
-
* replication.</p>
|
|
10955
|
-
* @public
|
|
10956
|
-
*/
|
|
10957
|
-
ReplicationConfigIdentifier?: string | undefined;
|
|
10958
|
-
/**
|
|
10959
|
-
* <p>The Amazon Resource Name for the <code>ReplicationConfig</code> associated with the
|
|
10960
|
-
* replication.</p>
|
|
10961
|
-
* @public
|
|
10962
|
-
*/
|
|
10963
|
-
ReplicationConfigArn?: string | undefined;
|
|
10964
|
-
/**
|
|
10965
|
-
* <p>The Amazon Resource Name for an existing <code>Endpoint</code> the serverless
|
|
10966
|
-
* replication uses for its data source.</p>
|
|
10967
|
-
* @public
|
|
10968
|
-
*/
|
|
10969
|
-
SourceEndpointArn?: string | undefined;
|
|
10970
|
-
/**
|
|
10971
|
-
* <p>The Amazon Resource Name for an existing <code>Endpoint</code> the serverless
|
|
10972
|
-
* replication uses for its data target.</p>
|
|
10973
|
-
* @public
|
|
10974
|
-
*/
|
|
10975
|
-
TargetEndpointArn?: string | undefined;
|
|
10976
|
-
/**
|
|
10977
|
-
* <p>The type of the serverless replication.</p>
|
|
10978
|
-
* @public
|
|
10979
|
-
*/
|
|
10980
|
-
ReplicationType?: MigrationTypeValue | undefined;
|
|
10981
|
-
/**
|
|
10982
|
-
* <p>The current status of the serverless replication.</p>
|
|
10983
|
-
* @public
|
|
10984
|
-
*/
|
|
10985
|
-
Status?: string | undefined;
|
|
10986
|
-
/**
|
|
10987
|
-
* <p>Information about provisioning resources for an DMS serverless replication.</p>
|
|
10988
|
-
* @public
|
|
10989
|
-
*/
|
|
10990
|
-
ProvisionData?: ProvisionData | undefined;
|
|
10991
|
-
/**
|
|
10992
|
-
* <p>The status output of premigration assessment in describe-replications.</p>
|
|
10993
|
-
* @public
|
|
10994
|
-
*/
|
|
10995
|
-
PremigrationAssessmentStatuses?: PremigrationAssessmentStatus[] | undefined;
|
|
10996
|
-
/**
|
|
10997
|
-
* <p>The reason the replication task was stopped. This response parameter can return one of
|
|
10998
|
-
* the following values:</p>
|
|
10999
|
-
* <ul>
|
|
11000
|
-
* <li>
|
|
11001
|
-
* <p>
|
|
11002
|
-
* <code>"Stop Reason NORMAL"</code>
|
|
11003
|
-
* </p>
|
|
11004
|
-
* </li>
|
|
11005
|
-
* <li>
|
|
11006
|
-
* <p>
|
|
11007
|
-
* <code>"Stop Reason RECOVERABLE_ERROR"</code>
|
|
11008
|
-
* </p>
|
|
11009
|
-
* </li>
|
|
11010
|
-
* <li>
|
|
11011
|
-
* <p>
|
|
11012
|
-
* <code>"Stop Reason FATAL_ERROR"</code>
|
|
11013
|
-
* </p>
|
|
11014
|
-
* </li>
|
|
11015
|
-
* <li>
|
|
11016
|
-
* <p>
|
|
11017
|
-
* <code>"Stop Reason FULL_LOAD_ONLY_FINISHED"</code>
|
|
11018
|
-
* </p>
|
|
11019
|
-
* </li>
|
|
11020
|
-
* <li>
|
|
11021
|
-
* <p>
|
|
11022
|
-
* <code>"Stop Reason STOPPED_AFTER_FULL_LOAD"</code> – Full load
|
|
11023
|
-
* completed, with cached changes not applied</p>
|
|
11024
|
-
* </li>
|
|
11025
|
-
* <li>
|
|
11026
|
-
* <p>
|
|
11027
|
-
* <code>"Stop Reason STOPPED_AFTER_CACHED_EVENTS"</code> – Full
|
|
11028
|
-
* load completed, with cached changes applied</p>
|
|
11029
|
-
* </li>
|
|
11030
|
-
* <li>
|
|
11031
|
-
* <p>
|
|
11032
|
-
* <code>"Stop Reason EXPRESS_LICENSE_LIMITS_REACHED"</code>
|
|
11033
|
-
* </p>
|
|
11034
|
-
* </li>
|
|
11035
|
-
* <li>
|
|
11036
|
-
* <p>
|
|
11037
|
-
* <code>"Stop Reason STOPPED_AFTER_DDL_APPLY"</code> – User-defined
|
|
11038
|
-
* stop task after DDL applied</p>
|
|
11039
|
-
* </li>
|
|
11040
|
-
* <li>
|
|
11041
|
-
* <p>
|
|
11042
|
-
* <code>"Stop Reason STOPPED_DUE_TO_LOW_MEMORY"</code>
|
|
11043
|
-
* </p>
|
|
11044
|
-
* </li>
|
|
11045
|
-
* <li>
|
|
11046
|
-
* <p>
|
|
11047
|
-
* <code>"Stop Reason STOPPED_DUE_TO_LOW_DISK"</code>
|
|
11048
|
-
* </p>
|
|
11049
|
-
* </li>
|
|
11050
|
-
* <li>
|
|
11051
|
-
* <p>
|
|
11052
|
-
* <code>"Stop Reason STOPPED_AT_SERVER_TIME"</code> – User-defined
|
|
11053
|
-
* server time for stopping task</p>
|
|
11054
|
-
* </li>
|
|
11055
|
-
* <li>
|
|
11056
|
-
* <p>
|
|
11057
|
-
* <code>"Stop Reason STOPPED_AT_COMMIT_TIME"</code> – User-defined
|
|
11058
|
-
* commit time for stopping task</p>
|
|
11059
|
-
* </li>
|
|
11060
|
-
* <li>
|
|
11061
|
-
* <p>
|
|
11062
|
-
* <code>"Stop Reason RECONFIGURATION_RESTART"</code>
|
|
11063
|
-
* </p>
|
|
11064
|
-
* </li>
|
|
11065
|
-
* <li>
|
|
11066
|
-
* <p>
|
|
11067
|
-
* <code>"Stop Reason RECYCLE_TASK"</code>
|
|
11068
|
-
* </p>
|
|
11069
|
-
* </li>
|
|
11070
|
-
* </ul>
|
|
11071
|
-
* @public
|
|
11072
|
-
*/
|
|
11073
|
-
StopReason?: string | undefined;
|
|
11074
|
-
/**
|
|
11075
|
-
* <p>Error and other information about why a serverless replication failed.</p>
|
|
11076
|
-
* @public
|
|
11077
|
-
*/
|
|
11078
|
-
FailureMessages?: string[] | undefined;
|
|
11079
|
-
/**
|
|
11080
|
-
* <p>This object provides a collection of statistics about a serverless replication.</p>
|
|
11081
|
-
* @public
|
|
11082
|
-
*/
|
|
11083
|
-
ReplicationStats?: ReplicationStats | undefined;
|
|
11084
|
-
/**
|
|
11085
|
-
* <p>The type of replication to start.</p>
|
|
11086
|
-
* @public
|
|
11087
|
-
*/
|
|
11088
|
-
StartReplicationType?: string | undefined;
|
|
11089
|
-
/**
|
|
11090
|
-
* <p>Indicates the start time for a change data capture (CDC) operation. Use either
|
|
11091
|
-
* <code>CdcStartTime</code> or <code>CdcStartPosition</code> to specify when you want a
|
|
11092
|
-
* CDC operation to start. Specifying both values results in an error.</p>
|
|
11093
|
-
* @public
|
|
11094
|
-
*/
|
|
11095
|
-
CdcStartTime?: Date | undefined;
|
|
11096
|
-
/**
|
|
11097
|
-
* <p>Indicates the start time for a change data capture (CDC) operation. Use either
|
|
11098
|
-
* <code>CdcStartTime</code> or <code>CdcStartPosition</code> to specify when you want a
|
|
11099
|
-
* CDC operation to start. Specifying both values results in an error.</p>
|
|
11100
|
-
* @public
|
|
11101
|
-
*/
|
|
11102
|
-
CdcStartPosition?: string | undefined;
|
|
11103
|
-
/**
|
|
11104
|
-
* <p>Indicates when you want a change data capture (CDC) operation to stop. The value can be
|
|
11105
|
-
* either server time or commit time.</p>
|
|
11106
|
-
* @public
|
|
11107
|
-
*/
|
|
11108
|
-
CdcStopPosition?: string | undefined;
|
|
11109
|
-
/**
|
|
11110
|
-
* <p>Indicates the last checkpoint that occurred during a change data capture (CDC)
|
|
11111
|
-
* operation. You can provide this value to the <code>CdcStartPosition</code> parameter to
|
|
11112
|
-
* start a CDC operation that begins at that checkpoint.</p>
|
|
11113
|
-
* @public
|
|
11114
|
-
*/
|
|
11115
|
-
RecoveryCheckpoint?: string | undefined;
|
|
11116
|
-
/**
|
|
11117
|
-
* <p>The time the serverless replication was created.</p>
|
|
11118
|
-
* @public
|
|
11119
|
-
*/
|
|
11120
|
-
ReplicationCreateTime?: Date | undefined;
|
|
11121
|
-
/**
|
|
11122
|
-
* <p>The time the serverless replication was updated.</p>
|
|
11123
|
-
* @public
|
|
11124
|
-
*/
|
|
11125
|
-
ReplicationUpdateTime?: Date | undefined;
|
|
11126
|
-
/**
|
|
11127
|
-
* <p>The timestamp when replication was last stopped.</p>
|
|
11128
|
-
* @public
|
|
11129
|
-
*/
|
|
11130
|
-
ReplicationLastStopTime?: Date | undefined;
|
|
11131
|
-
/**
|
|
11132
|
-
* <p>The timestamp when DMS will deprovision the replication.</p>
|
|
11133
|
-
* @public
|
|
11134
|
-
*/
|
|
11135
|
-
ReplicationDeprovisionTime?: Date | undefined;
|
|
11136
|
-
}
|
|
11137
|
-
/**
|
|
11138
|
-
* <p></p>
|
|
11139
|
-
* @public
|
|
11140
|
-
*/
|
|
11141
|
-
export interface DescribeReplicationsResponse {
|
|
11142
|
-
/**
|
|
11143
|
-
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
11144
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11145
|
-
* by <code>MaxRecords</code>. </p>
|
|
11146
|
-
* @public
|
|
11147
|
-
*/
|
|
11148
|
-
Marker?: string | undefined;
|
|
11149
|
-
/**
|
|
11150
|
-
* <p>The replication descriptions.</p>
|
|
11151
|
-
* @public
|
|
11152
|
-
*/
|
|
11153
|
-
Replications?: Replication[] | undefined;
|
|
11154
|
-
}
|
|
11155
|
-
/**
|
|
11156
|
-
* <p></p>
|
|
11157
|
-
* @public
|
|
11158
|
-
*/
|
|
11159
|
-
export interface DescribeReplicationSubnetGroupsMessage {
|
|
11160
|
-
/**
|
|
11161
|
-
* <p>Filters applied to replication subnet groups.</p>
|
|
11162
|
-
* <p>Valid filter names: replication-subnet-group-id</p>
|
|
11163
|
-
* @public
|
|
11164
|
-
*/
|
|
11165
|
-
Filters?: Filter[] | undefined;
|
|
11166
|
-
/**
|
|
11167
|
-
* <p> The maximum number of records to include in the response. If more records exist than
|
|
11168
|
-
* the specified <code>MaxRecords</code> value, a pagination token called a marker is included
|
|
11169
|
-
* in the response so that the remaining results can be retrieved. </p>
|
|
11170
|
-
* <p>Default: 100</p>
|
|
11171
|
-
* <p>Constraints: Minimum 20, maximum 100.</p>
|
|
11172
|
-
* @public
|
|
11173
|
-
*/
|
|
11174
|
-
MaxRecords?: number | undefined;
|
|
11175
|
-
/**
|
|
11176
|
-
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
11177
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11178
|
-
* by <code>MaxRecords</code>. </p>
|
|
11179
|
-
* @public
|
|
11180
|
-
*/
|
|
11181
|
-
Marker?: string | undefined;
|
|
11182
|
-
}
|
|
11183
|
-
/**
|
|
11184
|
-
* <p></p>
|
|
11185
|
-
* @public
|
|
11186
|
-
*/
|
|
11187
|
-
export interface DescribeReplicationSubnetGroupsResponse {
|
|
11188
|
-
/**
|
|
11189
|
-
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
11190
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11191
|
-
* by <code>MaxRecords</code>. </p>
|
|
11192
|
-
* @public
|
|
11193
|
-
*/
|
|
11194
|
-
Marker?: string | undefined;
|
|
11195
|
-
/**
|
|
11196
|
-
* <p>A description of the replication subnet groups.</p>
|
|
11197
|
-
* @public
|
|
11198
|
-
*/
|
|
11199
|
-
ReplicationSubnetGroups?: ReplicationSubnetGroup[] | undefined;
|
|
11200
|
-
}
|
|
11201
|
-
/**
|
|
11202
|
-
* <p></p>
|
|
11203
|
-
* @public
|
|
11204
|
-
*/
|
|
11205
|
-
export interface DescribeReplicationTableStatisticsMessage {
|
|
11206
|
-
/**
|
|
11207
|
-
* <p>The replication config to describe.</p>
|
|
11208
|
-
* @public
|
|
11209
|
-
*/
|
|
11210
|
-
ReplicationConfigArn: string | undefined;
|
|
11211
|
-
/**
|
|
11212
|
-
* <p>The maximum number of records to include in the response. If more records exist than the
|
|
11213
|
-
* specified <code>MaxRecords</code> value, a pagination token called a marker is included in
|
|
11214
|
-
* the response so that the remaining results can be retrieved. </p>
|
|
11215
|
-
* @public
|
|
11216
|
-
*/
|
|
11217
|
-
MaxRecords?: number | undefined;
|
|
11218
|
-
/**
|
|
11219
|
-
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
11220
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11221
|
-
* by <code>MaxRecords</code>. </p>
|
|
11222
|
-
* @public
|
|
11223
|
-
*/
|
|
11224
|
-
Marker?: string | undefined;
|
|
11225
|
-
/**
|
|
11226
|
-
* <p>Filters applied to the replication table statistics.</p>
|
|
11227
|
-
* @public
|
|
11228
|
-
*/
|
|
11229
|
-
Filters?: Filter[] | undefined;
|
|
11230
|
-
}
|
|
11231
|
-
/**
|
|
11232
|
-
* <p>Provides a collection of table statistics in response to a request by the
|
|
11233
|
-
* <code>DescribeTableStatistics</code> operation.</p>
|
|
11234
|
-
* @public
|
|
11235
|
-
*/
|
|
11236
|
-
export interface TableStatistics {
|
|
11237
|
-
/**
|
|
11238
|
-
* <p>The schema name.</p>
|
|
11239
|
-
* @public
|
|
11240
|
-
*/
|
|
11241
|
-
SchemaName?: string | undefined;
|
|
11242
|
-
/**
|
|
11243
|
-
* <p>The name of the table.</p>
|
|
11244
|
-
* @public
|
|
11245
|
-
*/
|
|
11246
|
-
TableName?: string | undefined;
|
|
11247
|
-
/**
|
|
11248
|
-
* <p>The number of insert actions performed on a table.</p>
|
|
11249
|
-
* @public
|
|
11250
|
-
*/
|
|
11251
|
-
Inserts?: number | undefined;
|
|
11252
|
-
/**
|
|
11253
|
-
* <p>The number of delete actions performed on a table.</p>
|
|
11254
|
-
* @public
|
|
11255
|
-
*/
|
|
11256
|
-
Deletes?: number | undefined;
|
|
11257
|
-
/**
|
|
11258
|
-
* <p>The number of update actions performed on a table.</p>
|
|
11259
|
-
* @public
|
|
11260
|
-
*/
|
|
11261
|
-
Updates?: number | undefined;
|
|
11262
|
-
/**
|
|
11263
|
-
* <p>The data definition language (DDL) used to build and modify the structure of your
|
|
11264
|
-
* tables.</p>
|
|
11265
|
-
* @public
|
|
11266
|
-
*/
|
|
11267
|
-
Ddls?: number | undefined;
|
|
11268
|
-
/**
|
|
11269
|
-
* <p>The number of insert actions applied on a target table.</p>
|
|
11270
|
-
* @public
|
|
11271
|
-
*/
|
|
11272
|
-
AppliedInserts?: number | undefined;
|
|
11273
|
-
/**
|
|
11274
|
-
* <p>The number of delete actions applied on a target table.</p>
|
|
11275
|
-
* @public
|
|
11276
|
-
*/
|
|
11277
|
-
AppliedDeletes?: number | undefined;
|
|
11278
|
-
/**
|
|
11279
|
-
* <p>The number of update actions applied on a target table.</p>
|
|
11280
|
-
* @public
|
|
11281
|
-
*/
|
|
11282
|
-
AppliedUpdates?: number | undefined;
|
|
11283
|
-
/**
|
|
11284
|
-
* <p>The number of data definition language (DDL) statements used to build and modify the
|
|
11285
|
-
* structure of your tables applied on the target.</p>
|
|
11286
|
-
* @public
|
|
11287
|
-
*/
|
|
11288
|
-
AppliedDdls?: number | undefined;
|
|
11289
|
-
/**
|
|
11290
|
-
* <p>The number of rows added during the full load operation.</p>
|
|
11291
|
-
* @public
|
|
11292
|
-
*/
|
|
11293
|
-
FullLoadRows?: number | undefined;
|
|
11294
|
-
/**
|
|
11295
|
-
* <p>The number of rows that failed conditional checks during the full load operation (valid
|
|
11296
|
-
* only for migrations where DynamoDB is the target).</p>
|
|
11297
|
-
* @public
|
|
11298
|
-
*/
|
|
11299
|
-
FullLoadCondtnlChkFailedRows?: number | undefined;
|
|
11300
|
-
/**
|
|
11301
|
-
* <p>The number of rows that failed to load during the full load operation (valid only for
|
|
11302
|
-
* migrations where DynamoDB is the target).</p>
|
|
11303
|
-
* @public
|
|
11304
|
-
*/
|
|
11305
|
-
FullLoadErrorRows?: number | undefined;
|
|
11306
|
-
/**
|
|
11307
|
-
* <p>The time when the full load operation started.</p>
|
|
11308
|
-
* @public
|
|
11309
|
-
*/
|
|
11310
|
-
FullLoadStartTime?: Date | undefined;
|
|
11311
|
-
/**
|
|
11312
|
-
* <p>The time when the full load operation completed.</p>
|
|
11313
|
-
* @public
|
|
11314
|
-
*/
|
|
11315
|
-
FullLoadEndTime?: Date | undefined;
|
|
11316
|
-
/**
|
|
11317
|
-
* <p>A value that indicates if the table was reloaded (<code>true</code>) or loaded as part
|
|
11318
|
-
* of a new full load operation (<code>false</code>).</p>
|
|
11319
|
-
* @public
|
|
11320
|
-
*/
|
|
11321
|
-
FullLoadReloaded?: boolean | undefined;
|
|
11322
|
-
/**
|
|
11323
|
-
* <p>The last time a table was updated.</p>
|
|
11324
|
-
* @public
|
|
11325
|
-
*/
|
|
11326
|
-
LastUpdateTime?: Date | undefined;
|
|
11327
|
-
/**
|
|
11328
|
-
* <p>The state of the tables described.</p>
|
|
11329
|
-
* <p>Valid states: Table does not exist | Before load | Full load | Table completed | Table
|
|
11330
|
-
* cancelled | Table error | Table is being reloaded</p>
|
|
11331
|
-
* @public
|
|
11332
|
-
*/
|
|
11333
|
-
TableState?: string | undefined;
|
|
11334
|
-
/**
|
|
11335
|
-
* <p>The number of records that have yet to be validated.</p>
|
|
11336
|
-
* @public
|
|
11337
|
-
*/
|
|
11338
|
-
ValidationPendingRecords?: number | undefined;
|
|
11339
|
-
/**
|
|
11340
|
-
* <p>The number of records that failed validation.</p>
|
|
11341
|
-
* @public
|
|
11342
|
-
*/
|
|
11343
|
-
ValidationFailedRecords?: number | undefined;
|
|
11344
|
-
/**
|
|
11345
|
-
* <p>The number of records that couldn't be validated.</p>
|
|
11346
|
-
* @public
|
|
11347
|
-
*/
|
|
11348
|
-
ValidationSuspendedRecords?: number | undefined;
|
|
11349
|
-
/**
|
|
11350
|
-
* <p>The validation state of the table.</p>
|
|
11351
|
-
* <p>This parameter can have the following values:</p>
|
|
11352
|
-
* <ul>
|
|
11353
|
-
* <li>
|
|
11354
|
-
* <p>Not enabled – Validation isn't enabled for the table in the migration
|
|
11355
|
-
* task.</p>
|
|
11356
|
-
* </li>
|
|
11357
|
-
* <li>
|
|
11358
|
-
* <p>Pending records – Some records in the table are waiting for
|
|
11359
|
-
* validation.</p>
|
|
11360
|
-
* </li>
|
|
11361
|
-
* <li>
|
|
11362
|
-
* <p>Mismatched records – Some records in the table don't match between the
|
|
11363
|
-
* source and target.</p>
|
|
11364
|
-
* </li>
|
|
11365
|
-
* <li>
|
|
11366
|
-
* <p>Suspended records – Some records in the table couldn't be
|
|
11367
|
-
* validated.</p>
|
|
11368
|
-
* </li>
|
|
11369
|
-
* <li>
|
|
11370
|
-
* <p>No primary key –The table couldn't be validated because it has no
|
|
11371
|
-
* primary key.</p>
|
|
11372
|
-
* </li>
|
|
11373
|
-
* <li>
|
|
11374
|
-
* <p>Table error – The table wasn't validated because it's in an error
|
|
11375
|
-
* state and some data wasn't migrated.</p>
|
|
11376
|
-
* </li>
|
|
11377
|
-
* <li>
|
|
11378
|
-
* <p>Validated – All rows in the table are validated. If the table is updated,
|
|
11379
|
-
* the status can change from Validated.</p>
|
|
11380
|
-
* </li>
|
|
11381
|
-
* <li>
|
|
11382
|
-
* <p>Error – The table couldn't be validated because of an unexpected
|
|
11383
|
-
* error.</p>
|
|
11384
|
-
* </li>
|
|
11385
|
-
* <li>
|
|
11386
|
-
* <p>Pending validation – The table is waiting validation.</p>
|
|
11387
|
-
* </li>
|
|
11388
|
-
* <li>
|
|
11389
|
-
* <p>Preparing table – Preparing the table enabled in the migration task for
|
|
11390
|
-
* validation.</p>
|
|
11391
|
-
* </li>
|
|
11392
|
-
* <li>
|
|
11393
|
-
* <p>Pending revalidation – All rows in the table are pending validation after
|
|
11394
|
-
* the table was updated.</p>
|
|
11395
|
-
* </li>
|
|
11396
|
-
* </ul>
|
|
11397
|
-
* @public
|
|
11398
|
-
*/
|
|
11399
|
-
ValidationState?: string | undefined;
|
|
11400
|
-
/**
|
|
11401
|
-
* <p>Additional details about the state of validation.</p>
|
|
11402
|
-
* @public
|
|
11403
|
-
*/
|
|
11404
|
-
ValidationStateDetails?: string | undefined;
|
|
11405
|
-
/**
|
|
11406
|
-
* <p>Records the current state of table resynchronization in the migration task.</p>
|
|
11407
|
-
* <p>This parameter can have the following values:</p>
|
|
11408
|
-
* <ul>
|
|
11409
|
-
* <li>
|
|
11410
|
-
* <p>Not enabled – Resync is not enabled for the table in the migration task.</p>
|
|
11411
|
-
* </li>
|
|
11412
|
-
* <li>
|
|
11413
|
-
* <p>Pending – The tables are waiting for resync.</p>
|
|
11414
|
-
* </li>
|
|
11415
|
-
* <li>
|
|
11416
|
-
* <p>In progress – Resync in progress for some records in the table.</p>
|
|
11417
|
-
* </li>
|
|
11418
|
-
* <li>
|
|
11419
|
-
* <p>No primary key – The table could not be resynced because it has no primary key.</p>
|
|
11420
|
-
* </li>
|
|
11421
|
-
* <li>
|
|
11422
|
-
* <p>Last resync at: <code>date/time</code> – Resync session is finished at time. Time provided in UTC format.</p>
|
|
11423
|
-
* </li>
|
|
11424
|
-
* </ul>
|
|
11425
|
-
* @public
|
|
11426
|
-
*/
|
|
11427
|
-
ResyncState?: string | undefined;
|
|
11428
|
-
/**
|
|
11429
|
-
* <p>Records the total number of mismatched data rows where the system attempted to apply
|
|
11430
|
-
* fixes in the target database.</p>
|
|
11431
|
-
* @public
|
|
11432
|
-
*/
|
|
11433
|
-
ResyncRowsAttempted?: number | undefined;
|
|
11434
|
-
/**
|
|
11435
|
-
* <p>Records the total number of mismatched data rows where fixes were successfully applied in the target database.</p>
|
|
11436
|
-
* @public
|
|
11437
|
-
*/
|
|
11438
|
-
ResyncRowsSucceeded?: number | undefined;
|
|
11439
|
-
/**
|
|
11440
|
-
* <p>Records the total number of mismatched data rows where fix attempts failed in the target
|
|
11441
|
-
* database.</p>
|
|
11442
|
-
* @public
|
|
11443
|
-
*/
|
|
11444
|
-
ResyncRowsFailed?: number | undefined;
|
|
11445
|
-
/**
|
|
11446
|
-
* <p>Calculates the percentage of failed validations that were successfully resynced to the system.</p>
|
|
11447
|
-
* @public
|
|
11448
|
-
*/
|
|
11449
|
-
ResyncProgress?: number | undefined;
|
|
11450
|
-
}
|
|
11451
|
-
/**
|
|
11452
|
-
* <p></p>
|
|
11453
|
-
* @public
|
|
11454
|
-
*/
|
|
11455
|
-
export interface DescribeReplicationTableStatisticsResponse {
|
|
11456
|
-
/**
|
|
11457
|
-
* <p>The Amazon Resource Name of the replication config.</p>
|
|
11458
|
-
* @public
|
|
11459
|
-
*/
|
|
11460
|
-
ReplicationConfigArn?: string | undefined;
|
|
11461
|
-
/**
|
|
11462
|
-
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
11463
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11464
|
-
* by <code>MaxRecords</code>. </p>
|
|
11465
|
-
* @public
|
|
11466
|
-
*/
|
|
11467
|
-
Marker?: string | undefined;
|
|
11468
|
-
/**
|
|
11469
|
-
* <p>Returns table statistics on the replication, including table name, rows inserted, rows
|
|
11470
|
-
* updated, and rows deleted.</p>
|
|
11471
|
-
* @public
|
|
11472
|
-
*/
|
|
11473
|
-
ReplicationTableStatistics?: TableStatistics[] | undefined;
|
|
11474
|
-
}
|
|
11475
|
-
/**
|
|
11476
|
-
* <p></p>
|
|
11477
|
-
* @public
|
|
11478
|
-
*/
|
|
11479
|
-
export interface DescribeReplicationTaskAssessmentResultsMessage {
|
|
11480
|
-
/**
|
|
11481
|
-
* <p>The Amazon Resource Name (ARN) string that uniquely identifies the task. When this input
|
|
11482
|
-
* parameter is specified, the API returns only one result and ignore the values of the
|
|
11483
|
-
* <code>MaxRecords</code> and <code>Marker</code> parameters. </p>
|
|
11484
|
-
* @public
|
|
11485
|
-
*/
|
|
11486
|
-
ReplicationTaskArn?: string | undefined;
|
|
11487
|
-
/**
|
|
11488
|
-
* <p> The maximum number of records to include in the response. If more records exist than
|
|
11489
|
-
* the specified <code>MaxRecords</code> value, a pagination token called a marker is included
|
|
11490
|
-
* in the response so that the remaining results can be retrieved. </p>
|
|
11491
|
-
* <p>Default: 100</p>
|
|
11492
|
-
* <p>Constraints: Minimum 20, maximum 100.</p>
|
|
11493
|
-
* @public
|
|
11494
|
-
*/
|
|
11495
|
-
MaxRecords?: number | undefined;
|
|
11496
|
-
/**
|
|
11497
|
-
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
11498
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11499
|
-
* by <code>MaxRecords</code>. </p>
|
|
11500
|
-
* @public
|
|
11501
|
-
*/
|
|
11502
|
-
Marker?: string | undefined;
|
|
11503
|
-
}
|
|
11504
|
-
/**
|
|
11505
|
-
* <p> The task assessment report in JSON format. </p>
|
|
11506
|
-
* @public
|
|
11507
|
-
*/
|
|
11508
|
-
export interface ReplicationTaskAssessmentResult {
|
|
11509
|
-
/**
|
|
11510
|
-
* <p> The replication task identifier of the task on which the task assessment was run.
|
|
11511
|
-
* </p>
|
|
11512
|
-
* @public
|
|
11513
|
-
*/
|
|
11514
|
-
ReplicationTaskIdentifier?: string | undefined;
|
|
11515
|
-
/**
|
|
11516
|
-
* <p>The Amazon Resource Name (ARN) of the replication task. </p>
|
|
11517
|
-
* @public
|
|
11518
|
-
*/
|
|
11519
|
-
ReplicationTaskArn?: string | undefined;
|
|
11520
|
-
/**
|
|
11521
|
-
* <p>The date the task assessment was completed. </p>
|
|
11522
|
-
* @public
|
|
11523
|
-
*/
|
|
11524
|
-
ReplicationTaskLastAssessmentDate?: Date | undefined;
|
|
11525
|
-
/**
|
|
11526
|
-
* <p> The status of the task assessment. </p>
|
|
11527
|
-
* @public
|
|
11528
|
-
*/
|
|
11529
|
-
AssessmentStatus?: string | undefined;
|
|
11530
|
-
/**
|
|
11531
|
-
* <p> The file containing the results of the task assessment. </p>
|
|
11532
|
-
* @public
|
|
11533
|
-
*/
|
|
11534
|
-
AssessmentResultsFile?: string | undefined;
|
|
11535
|
-
/**
|
|
11536
|
-
* <p> The task assessment results in JSON format. </p>
|
|
11537
|
-
* <p>The response object only contains this field if you provide <a>DescribeReplicationTaskAssessmentResultsMessage$ReplicationTaskArn</a> in the
|
|
11538
|
-
* request.</p>
|
|
11539
|
-
* @public
|
|
11540
|
-
*/
|
|
11541
|
-
AssessmentResults?: string | undefined;
|
|
11542
|
-
/**
|
|
11543
|
-
* <p> The URL of the S3 object containing the task assessment results. </p>
|
|
11544
|
-
* <p>The response object only contains this field if you provide <a>DescribeReplicationTaskAssessmentResultsMessage$ReplicationTaskArn</a> in the
|
|
11545
|
-
* request.</p>
|
|
11546
|
-
* @public
|
|
11547
|
-
*/
|
|
11548
|
-
S3ObjectUrl?: string | undefined;
|
|
11549
|
-
}
|
|
11550
|
-
/**
|
|
11551
|
-
* <p></p>
|
|
11552
|
-
* @public
|
|
11553
|
-
*/
|
|
11554
|
-
export interface DescribeReplicationTaskAssessmentResultsResponse {
|
|
11555
|
-
/**
|
|
11556
|
-
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
11557
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11558
|
-
* by <code>MaxRecords</code>. </p>
|
|
11559
|
-
* @public
|
|
11560
|
-
*/
|
|
11561
|
-
Marker?: string | undefined;
|
|
11562
|
-
/**
|
|
11563
|
-
* <p>- The Amazon S3 bucket where the task assessment report is located. </p>
|
|
11564
|
-
* @public
|
|
11565
|
-
*/
|
|
11566
|
-
BucketName?: string | undefined;
|
|
11567
|
-
/**
|
|
11568
|
-
* <p> The task assessment report. </p>
|
|
11569
|
-
* @public
|
|
11570
|
-
*/
|
|
11571
|
-
ReplicationTaskAssessmentResults?: ReplicationTaskAssessmentResult[] | undefined;
|
|
11572
|
-
}
|