@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.
Files changed (58) hide show
  1. package/README.md +56 -0
  2. package/dist-cjs/index.js +313 -80
  3. package/dist-es/DatabaseMigrationService.js +14 -0
  4. package/dist-es/commands/CancelMetadataModelConversionCommand.js +16 -0
  5. package/dist-es/commands/CancelMetadataModelCreationCommand.js +16 -0
  6. package/dist-es/commands/DescribeMetadataModelChildrenCommand.js +16 -0
  7. package/dist-es/commands/DescribeMetadataModelCommand.js +16 -0
  8. package/dist-es/commands/DescribeMetadataModelCreationsCommand.js +16 -0
  9. package/dist-es/commands/GetTargetSelectionRulesCommand.js +16 -0
  10. package/dist-es/commands/StartMetadataModelCreationCommand.js +16 -0
  11. package/dist-es/commands/index.js +7 -0
  12. package/dist-es/models/models_0.js +4 -34
  13. package/dist-es/models/models_1.js +0 -4
  14. package/dist-es/pagination/DescribeMetadataModelChildrenPaginator.js +4 -0
  15. package/dist-es/pagination/DescribeMetadataModelCreationsPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +2 -0
  17. package/dist-es/schemas/schemas_0.js +205 -42
  18. package/dist-types/DatabaseMigrationService.d.ts +49 -0
  19. package/dist-types/DatabaseMigrationServiceClient.d.ts +9 -2
  20. package/dist-types/commands/CancelMetadataModelConversionCommand.d.ts +98 -0
  21. package/dist-types/commands/CancelMetadataModelCreationCommand.d.ts +98 -0
  22. package/dist-types/commands/DescribeMetadataModelChildrenCommand.d.ts +91 -0
  23. package/dist-types/commands/DescribeMetadataModelCommand.d.ts +91 -0
  24. package/dist-types/commands/DescribeMetadataModelCreationsCommand.d.ts +107 -0
  25. package/dist-types/commands/DescribeReplicationSubnetGroupsCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeReplicationTableStatisticsCommand.d.ts +1 -1
  27. package/dist-types/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeReplicationsCommand.d.ts +2 -1
  29. package/dist-types/commands/GetTargetSelectionRulesCommand.d.ts +85 -0
  30. package/dist-types/commands/StartMetadataModelCreationCommand.d.ts +97 -0
  31. package/dist-types/commands/index.d.ts +7 -0
  32. package/dist-types/models/models_0.d.ts +331 -843
  33. package/dist-types/models/models_1.d.ts +825 -7
  34. package/dist-types/pagination/DescribeMetadataModelChildrenPaginator.d.ts +7 -0
  35. package/dist-types/pagination/DescribeMetadataModelCreationsPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +2 -0
  37. package/dist-types/schemas/schemas_0.d.ts +25 -0
  38. package/dist-types/ts3.4/DatabaseMigrationService.d.ts +119 -0
  39. package/dist-types/ts3.4/DatabaseMigrationServiceClient.d.ts +42 -0
  40. package/dist-types/ts3.4/commands/CancelMetadataModelConversionCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/CancelMetadataModelCreationCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/DescribeMetadataModelChildrenCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/DescribeMetadataModelCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/DescribeMetadataModelCreationsCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/DescribeReplicationSubnetGroupsCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/DescribeReplicationTableStatisticsCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/DescribeReplicationsCommand.d.ts +2 -4
  49. package/dist-types/ts3.4/commands/GetTargetSelectionRulesCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/StartMetadataModelCreationCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +87 -151
  53. package/dist-types/ts3.4/models/models_1.d.ts +156 -8
  54. package/dist-types/ts3.4/pagination/DescribeMetadataModelChildrenPaginator.d.ts +11 -0
  55. package/dist-types/ts3.4/pagination/DescribeMetadataModelCreationsPaginator.d.ts +11 -0
  56. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  57. package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
  58. package/package.json +34 -34
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DatabaseMigrationServiceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DatabaseMigrationServiceClient";
8
+ import {
9
+ DescribeMetadataModelCreationsMessage,
10
+ DescribeMetadataModelCreationsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeMetadataModelCreationsCommandInput
15
+ extends DescribeMetadataModelCreationsMessage {}
16
+ export interface DescribeMetadataModelCreationsCommandOutput
17
+ extends DescribeMetadataModelCreationsResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeMetadataModelCreationsCommand_base: {
20
+ new (
21
+ input: DescribeMetadataModelCreationsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeMetadataModelCreationsCommandInput,
24
+ DescribeMetadataModelCreationsCommandOutput,
25
+ DatabaseMigrationServiceClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeMetadataModelCreationsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeMetadataModelCreationsCommandInput,
33
+ DescribeMetadataModelCreationsCommandOutput,
34
+ DatabaseMigrationServiceClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeMetadataModelCreationsCommand extends DescribeMetadataModelCreationsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeMetadataModelCreationsMessage;
44
+ output: DescribeMetadataModelCreationsResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeMetadataModelCreationsCommandInput;
48
+ output: DescribeMetadataModelCreationsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeReplicationSubnetGroupsMessage,
10
10
  DescribeReplicationSubnetGroupsResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface DescribeReplicationSubnetGroupsCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeReplicationTableStatisticsMessage,
10
10
  DescribeReplicationTableStatisticsResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface DescribeReplicationTableStatisticsCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DescribeReplicationTaskAssessmentResultsMessage,
10
10
  DescribeReplicationTaskAssessmentResultsResponse,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface DescribeReplicationTaskAssessmentResultsCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DatabaseMigrationServiceClient";
8
- import {
9
- DescribeReplicationsMessage,
10
- DescribeReplicationsResponse,
11
- } from "../models/models_0";
8
+ import { DescribeReplicationsMessage } from "../models/models_0";
9
+ import { DescribeReplicationsResponse } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface DescribeReplicationsCommandInput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DatabaseMigrationServiceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DatabaseMigrationServiceClient";
8
+ import {
9
+ GetTargetSelectionRulesMessage,
10
+ GetTargetSelectionRulesResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTargetSelectionRulesCommandInput
15
+ extends GetTargetSelectionRulesMessage {}
16
+ export interface GetTargetSelectionRulesCommandOutput
17
+ extends GetTargetSelectionRulesResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTargetSelectionRulesCommand_base: {
20
+ new (
21
+ input: GetTargetSelectionRulesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTargetSelectionRulesCommandInput,
24
+ GetTargetSelectionRulesCommandOutput,
25
+ DatabaseMigrationServiceClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetTargetSelectionRulesCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTargetSelectionRulesCommandInput,
33
+ GetTargetSelectionRulesCommandOutput,
34
+ DatabaseMigrationServiceClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTargetSelectionRulesCommand extends GetTargetSelectionRulesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetTargetSelectionRulesMessage;
44
+ output: GetTargetSelectionRulesResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTargetSelectionRulesCommandInput;
48
+ output: GetTargetSelectionRulesCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DatabaseMigrationServiceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DatabaseMigrationServiceClient";
8
+ import {
9
+ StartMetadataModelCreationMessage,
10
+ StartMetadataModelCreationResponse,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StartMetadataModelCreationCommandInput
15
+ extends StartMetadataModelCreationMessage {}
16
+ export interface StartMetadataModelCreationCommandOutput
17
+ extends StartMetadataModelCreationResponse,
18
+ __MetadataBearer {}
19
+ declare const StartMetadataModelCreationCommand_base: {
20
+ new (
21
+ input: StartMetadataModelCreationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StartMetadataModelCreationCommandInput,
24
+ StartMetadataModelCreationCommandOutput,
25
+ DatabaseMigrationServiceClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: StartMetadataModelCreationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StartMetadataModelCreationCommandInput,
33
+ StartMetadataModelCreationCommandOutput,
34
+ DatabaseMigrationServiceClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StartMetadataModelCreationCommand extends StartMetadataModelCreationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StartMetadataModelCreationMessage;
44
+ output: StartMetadataModelCreationResponse;
45
+ };
46
+ sdk: {
47
+ input: StartMetadataModelCreationCommandInput;
48
+ output: StartMetadataModelCreationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,6 +1,8 @@
1
1
  export * from "./AddTagsToResourceCommand";
2
2
  export * from "./ApplyPendingMaintenanceActionCommand";
3
3
  export * from "./BatchStartRecommendationsCommand";
4
+ export * from "./CancelMetadataModelConversionCommand";
5
+ export * from "./CancelMetadataModelCreationCommand";
4
6
  export * from "./CancelReplicationTaskAssessmentRunCommand";
5
7
  export * from "./CreateDataMigrationCommand";
6
8
  export * from "./CreateDataProviderCommand";
@@ -50,7 +52,10 @@ export * from "./DescribeFleetAdvisorSchemaObjectSummaryCommand";
50
52
  export * from "./DescribeFleetAdvisorSchemasCommand";
51
53
  export * from "./DescribeInstanceProfilesCommand";
52
54
  export * from "./DescribeMetadataModelAssessmentsCommand";
55
+ export * from "./DescribeMetadataModelChildrenCommand";
56
+ export * from "./DescribeMetadataModelCommand";
53
57
  export * from "./DescribeMetadataModelConversionsCommand";
58
+ export * from "./DescribeMetadataModelCreationsCommand";
54
59
  export * from "./DescribeMetadataModelExportsAsScriptCommand";
55
60
  export * from "./DescribeMetadataModelExportsToTargetCommand";
56
61
  export * from "./DescribeMetadataModelImportsCommand";
@@ -73,6 +78,7 @@ export * from "./DescribeReplicationsCommand";
73
78
  export * from "./DescribeSchemasCommand";
74
79
  export * from "./DescribeTableStatisticsCommand";
75
80
  export * from "./ExportMetadataModelAssessmentCommand";
81
+ export * from "./GetTargetSelectionRulesCommand";
76
82
  export * from "./ImportCertificateCommand";
77
83
  export * from "./ListTagsForResourceCommand";
78
84
  export * from "./ModifyConversionConfigurationCommand";
@@ -97,6 +103,7 @@ export * from "./StartDataMigrationCommand";
97
103
  export * from "./StartExtensionPackAssociationCommand";
98
104
  export * from "./StartMetadataModelAssessmentCommand";
99
105
  export * from "./StartMetadataModelConversionCommand";
106
+ export * from "./StartMetadataModelCreationCommand";
100
107
  export * from "./StartMetadataModelExportAsScriptCommand";
101
108
  export * from "./StartMetadataModelExportToTargetCommand";
102
109
  export * from "./StartMetadataModelImportCommand";
@@ -75,6 +75,51 @@ export interface BatchStartRecommendationsErrorEntry {
75
75
  export interface BatchStartRecommendationsResponse {
76
76
  ErrorEntries?: BatchStartRecommendationsErrorEntry[] | undefined;
77
77
  }
78
+ export interface CancelMetadataModelConversionMessage {
79
+ MigrationProjectIdentifier: string | undefined;
80
+ RequestIdentifier: string | undefined;
81
+ }
82
+ export interface DefaultErrorDetails {
83
+ Message?: string | undefined;
84
+ }
85
+ export type ErrorDetails =
86
+ | ErrorDetails.DefaultErrorDetailsMember
87
+ | ErrorDetails.$UnknownMember;
88
+ export declare namespace ErrorDetails {
89
+ interface DefaultErrorDetailsMember {
90
+ defaultErrorDetails: DefaultErrorDetails;
91
+ $unknown?: never;
92
+ }
93
+ interface $UnknownMember {
94
+ defaultErrorDetails?: never;
95
+ $unknown: [string, any];
96
+ }
97
+ interface Visitor<T> {
98
+ defaultErrorDetails: (value: DefaultErrorDetails) => T;
99
+ _: (name: string, value: any) => T;
100
+ }
101
+ }
102
+ export interface ExportSqlDetails {
103
+ S3ObjectKey?: string | undefined;
104
+ ObjectURL?: string | undefined;
105
+ }
106
+ export interface SchemaConversionRequest {
107
+ Status?: string | undefined;
108
+ RequestIdentifier?: string | undefined;
109
+ MigrationProjectArn?: string | undefined;
110
+ Error?: ErrorDetails | undefined;
111
+ ExportSqlDetails?: ExportSqlDetails | undefined;
112
+ }
113
+ export interface CancelMetadataModelConversionResponse {
114
+ Request?: SchemaConversionRequest | undefined;
115
+ }
116
+ export interface CancelMetadataModelCreationMessage {
117
+ MigrationProjectIdentifier: string | undefined;
118
+ RequestIdentifier: string | undefined;
119
+ }
120
+ export interface CancelMetadataModelCreationResponse {
121
+ Request?: SchemaConversionRequest | undefined;
122
+ }
78
123
  export interface CancelReplicationTaskAssessmentRunMessage {
79
124
  ReplicationTaskAssessmentRunArn: string | undefined;
80
125
  }
@@ -492,7 +537,6 @@ export declare namespace DataProviderSettings {
492
537
  MongoDbSettings: (value: MongoDbDataProviderSettings) => T;
493
538
  _: (name: string, value: any) => T;
494
539
  }
495
- const visit: <T>(value: DataProviderSettings, visitor: Visitor<T>) => T;
496
540
  }
497
541
  export interface CreateDataProviderMessage {
498
542
  DataProviderName?: string | undefined;
@@ -1805,38 +1849,6 @@ export interface DescribeExtensionPackAssociationsMessage {
1805
1849
  Marker?: string | undefined;
1806
1850
  MaxRecords?: number | undefined;
1807
1851
  }
1808
- export interface DefaultErrorDetails {
1809
- Message?: string | undefined;
1810
- }
1811
- export type ErrorDetails =
1812
- | ErrorDetails.DefaultErrorDetailsMember
1813
- | ErrorDetails.$UnknownMember;
1814
- export declare namespace ErrorDetails {
1815
- interface DefaultErrorDetailsMember {
1816
- defaultErrorDetails: DefaultErrorDetails;
1817
- $unknown?: never;
1818
- }
1819
- interface $UnknownMember {
1820
- defaultErrorDetails?: never;
1821
- $unknown: [string, any];
1822
- }
1823
- interface Visitor<T> {
1824
- defaultErrorDetails: (value: DefaultErrorDetails) => T;
1825
- _: (name: string, value: any) => T;
1826
- }
1827
- const visit: <T>(value: ErrorDetails, visitor: Visitor<T>) => T;
1828
- }
1829
- export interface ExportSqlDetails {
1830
- S3ObjectKey?: string | undefined;
1831
- ObjectURL?: string | undefined;
1832
- }
1833
- export interface SchemaConversionRequest {
1834
- Status?: string | undefined;
1835
- RequestIdentifier?: string | undefined;
1836
- MigrationProjectArn?: string | undefined;
1837
- Error?: ErrorDetails | undefined;
1838
- ExportSqlDetails?: ExportSqlDetails | undefined;
1839
- }
1840
1852
  export interface DescribeExtensionPackAssociationsResponse {
1841
1853
  Marker?: string | undefined;
1842
1854
  Requests?: SchemaConversionRequest[] | undefined;
@@ -1993,6 +2005,27 @@ export interface DescribeInstanceProfilesResponse {
1993
2005
  Marker?: string | undefined;
1994
2006
  InstanceProfiles?: InstanceProfile[] | undefined;
1995
2007
  }
2008
+ export declare const OriginTypeValue: {
2009
+ readonly SOURCE: "SOURCE";
2010
+ readonly TARGET: "TARGET";
2011
+ };
2012
+ export type OriginTypeValue =
2013
+ (typeof OriginTypeValue)[keyof typeof OriginTypeValue];
2014
+ export interface DescribeMetadataModelMessage {
2015
+ SelectionRules: string | undefined;
2016
+ MigrationProjectIdentifier: string | undefined;
2017
+ Origin: OriginTypeValue | undefined;
2018
+ }
2019
+ export interface MetadataModelReference {
2020
+ MetadataModelName?: string | undefined;
2021
+ SelectionRules?: string | undefined;
2022
+ }
2023
+ export interface DescribeMetadataModelResponse {
2024
+ MetadataModelName?: string | undefined;
2025
+ MetadataModelType?: string | undefined;
2026
+ TargetMetadataModels?: MetadataModelReference[] | undefined;
2027
+ Definition?: string | undefined;
2028
+ }
1996
2029
  export interface DescribeMetadataModelAssessmentsMessage {
1997
2030
  MigrationProjectIdentifier: string | undefined;
1998
2031
  Filters?: Filter[] | undefined;
@@ -2003,6 +2036,17 @@ export interface DescribeMetadataModelAssessmentsResponse {
2003
2036
  Marker?: string | undefined;
2004
2037
  Requests?: SchemaConversionRequest[] | undefined;
2005
2038
  }
2039
+ export interface DescribeMetadataModelChildrenMessage {
2040
+ SelectionRules: string | undefined;
2041
+ MigrationProjectIdentifier: string | undefined;
2042
+ Origin: OriginTypeValue | undefined;
2043
+ Marker?: string | undefined;
2044
+ MaxRecords?: number | undefined;
2045
+ }
2046
+ export interface DescribeMetadataModelChildrenResponse {
2047
+ Marker?: string | undefined;
2048
+ MetadataModelChildren?: MetadataModelReference[] | undefined;
2049
+ }
2006
2050
  export interface DescribeMetadataModelConversionsMessage {
2007
2051
  MigrationProjectIdentifier: string | undefined;
2008
2052
  Filters?: Filter[] | undefined;
@@ -2013,6 +2057,16 @@ export interface DescribeMetadataModelConversionsResponse {
2013
2057
  Marker?: string | undefined;
2014
2058
  Requests?: SchemaConversionRequest[] | undefined;
2015
2059
  }
2060
+ export interface DescribeMetadataModelCreationsMessage {
2061
+ Filters?: Filter[] | undefined;
2062
+ Marker?: string | undefined;
2063
+ MaxRecords?: number | undefined;
2064
+ MigrationProjectIdentifier: string | undefined;
2065
+ }
2066
+ export interface DescribeMetadataModelCreationsResponse {
2067
+ Marker?: string | undefined;
2068
+ Requests?: SchemaConversionRequest[] | undefined;
2069
+ }
2016
2070
  export interface DescribeMetadataModelExportsAsScriptMessage {
2017
2071
  MigrationProjectIdentifier: string | undefined;
2018
2072
  Filters?: Filter[] | undefined;
@@ -2214,121 +2268,3 @@ export interface PremigrationAssessmentStatus {
2214
2268
  ResultKmsKeyArn?: string | undefined;
2215
2269
  ResultStatistic?: ReplicationTaskAssessmentRunResultStatistic | undefined;
2216
2270
  }
2217
- export interface ProvisionData {
2218
- ProvisionState?: string | undefined;
2219
- ProvisionedCapacityUnits?: number | undefined;
2220
- DateProvisioned?: Date | undefined;
2221
- IsNewProvisioningAvailable?: boolean | undefined;
2222
- DateNewProvisioningDataAvailable?: Date | undefined;
2223
- ReasonForNewProvisioningData?: string | undefined;
2224
- }
2225
- export interface ReplicationStats {
2226
- FullLoadProgressPercent?: number | undefined;
2227
- ElapsedTimeMillis?: number | undefined;
2228
- TablesLoaded?: number | undefined;
2229
- TablesLoading?: number | undefined;
2230
- TablesQueued?: number | undefined;
2231
- TablesErrored?: number | undefined;
2232
- FreshStartDate?: Date | undefined;
2233
- StartDate?: Date | undefined;
2234
- StopDate?: Date | undefined;
2235
- FullLoadStartDate?: Date | undefined;
2236
- FullLoadFinishDate?: Date | undefined;
2237
- }
2238
- export interface Replication {
2239
- ReplicationConfigIdentifier?: string | undefined;
2240
- ReplicationConfigArn?: string | undefined;
2241
- SourceEndpointArn?: string | undefined;
2242
- TargetEndpointArn?: string | undefined;
2243
- ReplicationType?: MigrationTypeValue | undefined;
2244
- Status?: string | undefined;
2245
- ProvisionData?: ProvisionData | undefined;
2246
- PremigrationAssessmentStatuses?: PremigrationAssessmentStatus[] | undefined;
2247
- StopReason?: string | undefined;
2248
- FailureMessages?: string[] | undefined;
2249
- ReplicationStats?: ReplicationStats | undefined;
2250
- StartReplicationType?: string | undefined;
2251
- CdcStartTime?: Date | undefined;
2252
- CdcStartPosition?: string | undefined;
2253
- CdcStopPosition?: string | undefined;
2254
- RecoveryCheckpoint?: string | undefined;
2255
- ReplicationCreateTime?: Date | undefined;
2256
- ReplicationUpdateTime?: Date | undefined;
2257
- ReplicationLastStopTime?: Date | undefined;
2258
- ReplicationDeprovisionTime?: Date | undefined;
2259
- }
2260
- export interface DescribeReplicationsResponse {
2261
- Marker?: string | undefined;
2262
- Replications?: Replication[] | undefined;
2263
- }
2264
- export interface DescribeReplicationSubnetGroupsMessage {
2265
- Filters?: Filter[] | undefined;
2266
- MaxRecords?: number | undefined;
2267
- Marker?: string | undefined;
2268
- }
2269
- export interface DescribeReplicationSubnetGroupsResponse {
2270
- Marker?: string | undefined;
2271
- ReplicationSubnetGroups?: ReplicationSubnetGroup[] | undefined;
2272
- }
2273
- export interface DescribeReplicationTableStatisticsMessage {
2274
- ReplicationConfigArn: string | undefined;
2275
- MaxRecords?: number | undefined;
2276
- Marker?: string | undefined;
2277
- Filters?: Filter[] | undefined;
2278
- }
2279
- export interface TableStatistics {
2280
- SchemaName?: string | undefined;
2281
- TableName?: string | undefined;
2282
- Inserts?: number | undefined;
2283
- Deletes?: number | undefined;
2284
- Updates?: number | undefined;
2285
- Ddls?: number | undefined;
2286
- AppliedInserts?: number | undefined;
2287
- AppliedDeletes?: number | undefined;
2288
- AppliedUpdates?: number | undefined;
2289
- AppliedDdls?: number | undefined;
2290
- FullLoadRows?: number | undefined;
2291
- FullLoadCondtnlChkFailedRows?: number | undefined;
2292
- FullLoadErrorRows?: number | undefined;
2293
- FullLoadStartTime?: Date | undefined;
2294
- FullLoadEndTime?: Date | undefined;
2295
- FullLoadReloaded?: boolean | undefined;
2296
- LastUpdateTime?: Date | undefined;
2297
- TableState?: string | undefined;
2298
- ValidationPendingRecords?: number | undefined;
2299
- ValidationFailedRecords?: number | undefined;
2300
- ValidationSuspendedRecords?: number | undefined;
2301
- ValidationState?: string | undefined;
2302
- ValidationStateDetails?: string | undefined;
2303
- ResyncState?: string | undefined;
2304
- ResyncRowsAttempted?: number | undefined;
2305
- ResyncRowsSucceeded?: number | undefined;
2306
- ResyncRowsFailed?: number | undefined;
2307
- ResyncProgress?: number | undefined;
2308
- }
2309
- export interface DescribeReplicationTableStatisticsResponse {
2310
- ReplicationConfigArn?: string | undefined;
2311
- Marker?: string | undefined;
2312
- ReplicationTableStatistics?: TableStatistics[] | undefined;
2313
- }
2314
- export interface DescribeReplicationTaskAssessmentResultsMessage {
2315
- ReplicationTaskArn?: string | undefined;
2316
- MaxRecords?: number | undefined;
2317
- Marker?: string | undefined;
2318
- }
2319
- export interface ReplicationTaskAssessmentResult {
2320
- ReplicationTaskIdentifier?: string | undefined;
2321
- ReplicationTaskArn?: string | undefined;
2322
- ReplicationTaskLastAssessmentDate?: Date | undefined;
2323
- AssessmentStatus?: string | undefined;
2324
- AssessmentResultsFile?: string | undefined;
2325
- AssessmentResults?: string | undefined;
2326
- S3ObjectUrl?: string | undefined;
2327
- }
2328
- export interface DescribeReplicationTaskAssessmentResultsResponse {
2329
- Marker?: string | undefined;
2330
- BucketName?: string | undefined;
2331
- ReplicationTaskAssessmentResults?:
2332
- | ReplicationTaskAssessmentResult[]
2333
- | undefined;
2334
- }