@aws-sdk/client-database-migration-service 3.929.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
@@ -2,6 +2,8 @@ import { createAggregatedClient } from "@smithy/smithy-client";
2
2
  import { AddTagsToResourceCommand, } from "./commands/AddTagsToResourceCommand";
3
3
  import { ApplyPendingMaintenanceActionCommand, } from "./commands/ApplyPendingMaintenanceActionCommand";
4
4
  import { BatchStartRecommendationsCommand, } from "./commands/BatchStartRecommendationsCommand";
5
+ import { CancelMetadataModelConversionCommand, } from "./commands/CancelMetadataModelConversionCommand";
6
+ import { CancelMetadataModelCreationCommand, } from "./commands/CancelMetadataModelCreationCommand";
5
7
  import { CancelReplicationTaskAssessmentRunCommand, } from "./commands/CancelReplicationTaskAssessmentRunCommand";
6
8
  import { CreateDataMigrationCommand, } from "./commands/CreateDataMigrationCommand";
7
9
  import { CreateDataProviderCommand, } from "./commands/CreateDataProviderCommand";
@@ -51,7 +53,10 @@ import { DescribeFleetAdvisorSchemaObjectSummaryCommand, } from "./commands/Desc
51
53
  import { DescribeFleetAdvisorSchemasCommand, } from "./commands/DescribeFleetAdvisorSchemasCommand";
52
54
  import { DescribeInstanceProfilesCommand, } from "./commands/DescribeInstanceProfilesCommand";
53
55
  import { DescribeMetadataModelAssessmentsCommand, } from "./commands/DescribeMetadataModelAssessmentsCommand";
56
+ import { DescribeMetadataModelChildrenCommand, } from "./commands/DescribeMetadataModelChildrenCommand";
57
+ import { DescribeMetadataModelCommand, } from "./commands/DescribeMetadataModelCommand";
54
58
  import { DescribeMetadataModelConversionsCommand, } from "./commands/DescribeMetadataModelConversionsCommand";
59
+ import { DescribeMetadataModelCreationsCommand, } from "./commands/DescribeMetadataModelCreationsCommand";
55
60
  import { DescribeMetadataModelExportsAsScriptCommand, } from "./commands/DescribeMetadataModelExportsAsScriptCommand";
56
61
  import { DescribeMetadataModelExportsToTargetCommand, } from "./commands/DescribeMetadataModelExportsToTargetCommand";
57
62
  import { DescribeMetadataModelImportsCommand, } from "./commands/DescribeMetadataModelImportsCommand";
@@ -74,6 +79,7 @@ import { DescribeReplicationTasksCommand, } from "./commands/DescribeReplication
74
79
  import { DescribeSchemasCommand, } from "./commands/DescribeSchemasCommand";
75
80
  import { DescribeTableStatisticsCommand, } from "./commands/DescribeTableStatisticsCommand";
76
81
  import { ExportMetadataModelAssessmentCommand, } from "./commands/ExportMetadataModelAssessmentCommand";
82
+ import { GetTargetSelectionRulesCommand, } from "./commands/GetTargetSelectionRulesCommand";
77
83
  import { ImportCertificateCommand, } from "./commands/ImportCertificateCommand";
78
84
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
79
85
  import { ModifyConversionConfigurationCommand, } from "./commands/ModifyConversionConfigurationCommand";
@@ -98,6 +104,7 @@ import { StartDataMigrationCommand, } from "./commands/StartDataMigrationCommand
98
104
  import { StartExtensionPackAssociationCommand, } from "./commands/StartExtensionPackAssociationCommand";
99
105
  import { StartMetadataModelAssessmentCommand, } from "./commands/StartMetadataModelAssessmentCommand";
100
106
  import { StartMetadataModelConversionCommand, } from "./commands/StartMetadataModelConversionCommand";
107
+ import { StartMetadataModelCreationCommand, } from "./commands/StartMetadataModelCreationCommand";
101
108
  import { StartMetadataModelExportAsScriptCommand, } from "./commands/StartMetadataModelExportAsScriptCommand";
102
109
  import { StartMetadataModelExportToTargetCommand, } from "./commands/StartMetadataModelExportToTargetCommand";
103
110
  import { StartMetadataModelImportCommand, } from "./commands/StartMetadataModelImportCommand";
@@ -116,6 +123,8 @@ const commands = {
116
123
  AddTagsToResourceCommand,
117
124
  ApplyPendingMaintenanceActionCommand,
118
125
  BatchStartRecommendationsCommand,
126
+ CancelMetadataModelConversionCommand,
127
+ CancelMetadataModelCreationCommand,
119
128
  CancelReplicationTaskAssessmentRunCommand,
120
129
  CreateDataMigrationCommand,
121
130
  CreateDataProviderCommand,
@@ -164,8 +173,11 @@ const commands = {
164
173
  DescribeFleetAdvisorSchemaObjectSummaryCommand,
165
174
  DescribeFleetAdvisorSchemasCommand,
166
175
  DescribeInstanceProfilesCommand,
176
+ DescribeMetadataModelCommand,
167
177
  DescribeMetadataModelAssessmentsCommand,
178
+ DescribeMetadataModelChildrenCommand,
168
179
  DescribeMetadataModelConversionsCommand,
180
+ DescribeMetadataModelCreationsCommand,
169
181
  DescribeMetadataModelExportsAsScriptCommand,
170
182
  DescribeMetadataModelExportsToTargetCommand,
171
183
  DescribeMetadataModelImportsCommand,
@@ -188,6 +200,7 @@ const commands = {
188
200
  DescribeSchemasCommand,
189
201
  DescribeTableStatisticsCommand,
190
202
  ExportMetadataModelAssessmentCommand,
203
+ GetTargetSelectionRulesCommand,
191
204
  ImportCertificateCommand,
192
205
  ListTagsForResourceCommand,
193
206
  ModifyConversionConfigurationCommand,
@@ -212,6 +225,7 @@ const commands = {
212
225
  StartExtensionPackAssociationCommand,
213
226
  StartMetadataModelAssessmentCommand,
214
227
  StartMetadataModelConversionCommand,
228
+ StartMetadataModelCreationCommand,
215
229
  StartMetadataModelExportAsScriptCommand,
216
230
  StartMetadataModelExportToTargetCommand,
217
231
  StartMetadataModelImportCommand,
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CancelMetadataModelConversion } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CancelMetadataModelConversionCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonDMSv20160101", "CancelMetadataModelConversion", {})
13
+ .n("DatabaseMigrationServiceClient", "CancelMetadataModelConversionCommand")
14
+ .sc(CancelMetadataModelConversion)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CancelMetadataModelCreation } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CancelMetadataModelCreationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonDMSv20160101", "CancelMetadataModelCreation", {})
13
+ .n("DatabaseMigrationServiceClient", "CancelMetadataModelCreationCommand")
14
+ .sc(CancelMetadataModelCreation)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DescribeMetadataModelChildren } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DescribeMetadataModelChildrenCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonDMSv20160101", "DescribeMetadataModelChildren", {})
13
+ .n("DatabaseMigrationServiceClient", "DescribeMetadataModelChildrenCommand")
14
+ .sc(DescribeMetadataModelChildren)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DescribeMetadataModel } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DescribeMetadataModelCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonDMSv20160101", "DescribeMetadataModel", {})
13
+ .n("DatabaseMigrationServiceClient", "DescribeMetadataModelCommand")
14
+ .sc(DescribeMetadataModel)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DescribeMetadataModelCreations } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DescribeMetadataModelCreationsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonDMSv20160101", "DescribeMetadataModelCreations", {})
13
+ .n("DatabaseMigrationServiceClient", "DescribeMetadataModelCreationsCommand")
14
+ .sc(DescribeMetadataModelCreations)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetTargetSelectionRules } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetTargetSelectionRulesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonDMSv20160101", "GetTargetSelectionRules", {})
13
+ .n("DatabaseMigrationServiceClient", "GetTargetSelectionRulesCommand")
14
+ .sc(GetTargetSelectionRules)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { StartMetadataModelCreation } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class StartMetadataModelCreationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AmazonDMSv20160101", "StartMetadataModelCreation", {})
13
+ .n("DatabaseMigrationServiceClient", "StartMetadataModelCreationCommand")
14
+ .sc(StartMetadataModelCreation)
15
+ .build() {
16
+ }
@@ -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";
@@ -110,32 +110,6 @@ export const AuthTypeValue = {
110
110
  NO: "no",
111
111
  PASSWORD: "password",
112
112
  };
113
- export var DataProviderSettings;
114
- (function (DataProviderSettings) {
115
- DataProviderSettings.visit = (value, visitor) => {
116
- if (value.RedshiftSettings !== undefined)
117
- return visitor.RedshiftSettings(value.RedshiftSettings);
118
- if (value.PostgreSqlSettings !== undefined)
119
- return visitor.PostgreSqlSettings(value.PostgreSqlSettings);
120
- if (value.MySqlSettings !== undefined)
121
- return visitor.MySqlSettings(value.MySqlSettings);
122
- if (value.OracleSettings !== undefined)
123
- return visitor.OracleSettings(value.OracleSettings);
124
- if (value.MicrosoftSqlServerSettings !== undefined)
125
- return visitor.MicrosoftSqlServerSettings(value.MicrosoftSqlServerSettings);
126
- if (value.DocDbSettings !== undefined)
127
- return visitor.DocDbSettings(value.DocDbSettings);
128
- if (value.MariaDbSettings !== undefined)
129
- return visitor.MariaDbSettings(value.MariaDbSettings);
130
- if (value.IbmDb2LuwSettings !== undefined)
131
- return visitor.IbmDb2LuwSettings(value.IbmDb2LuwSettings);
132
- if (value.IbmDb2zOsSettings !== undefined)
133
- return visitor.IbmDb2zOsSettings(value.IbmDb2zOsSettings);
134
- if (value.MongoDbSettings !== undefined)
135
- return visitor.MongoDbSettings(value.MongoDbSettings);
136
- return visitor._(value.$unknown[0], value.$unknown[1]);
137
- };
138
- })(DataProviderSettings || (DataProviderSettings = {}));
139
113
  export const NestingLevelValue = {
140
114
  NONE: "none",
141
115
  ONE: "one",
@@ -458,14 +432,6 @@ export const ReleaseStatusValues = {
458
432
  export const SourceType = {
459
433
  replication_instance: "replication-instance",
460
434
  };
461
- export var ErrorDetails;
462
- (function (ErrorDetails) {
463
- ErrorDetails.visit = (value, visitor) => {
464
- if (value.defaultErrorDetails !== undefined)
465
- return visitor.defaultErrorDetails(value.defaultErrorDetails);
466
- return visitor._(value.$unknown[0], value.$unknown[1]);
467
- };
468
- })(ErrorDetails || (ErrorDetails = {}));
469
435
  export const CollectorStatus = {
470
436
  ACTIVE: "ACTIVE",
471
437
  UNREGISTERED: "UNREGISTERED",
@@ -475,6 +441,10 @@ export const VersionStatus = {
475
441
  UNSUPPORTED: "UNSUPPORTED",
476
442
  UP_TO_DATE: "UP_TO_DATE",
477
443
  };
444
+ export const OriginTypeValue = {
445
+ SOURCE: "SOURCE",
446
+ TARGET: "TARGET",
447
+ };
478
448
  export const RefreshSchemasStatusTypeValue = {
479
449
  FAILED: "failed",
480
450
  REFRESHING: "refreshing",
@@ -48,10 +48,6 @@ export const StartReplicationMigrationTypeValue = {
48
48
  RESUME_PROCESSING: "resume-processing",
49
49
  START_REPLICATION: "start-replication",
50
50
  };
51
- export const OriginTypeValue = {
52
- SOURCE: "SOURCE",
53
- TARGET: "TARGET",
54
- };
55
51
  export const StartReplicationTaskTypeValue = {
56
52
  RELOAD_TARGET: "reload-target",
57
53
  RESUME_PROCESSING: "resume-processing",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { DescribeMetadataModelChildrenCommand, } from "../commands/DescribeMetadataModelChildrenCommand";
3
+ import { DatabaseMigrationServiceClient } from "../DatabaseMigrationServiceClient";
4
+ export const paginateDescribeMetadataModelChildren = createPaginator(DatabaseMigrationServiceClient, DescribeMetadataModelChildrenCommand, "Marker", "Marker", "MaxRecords");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { DescribeMetadataModelCreationsCommand, } from "../commands/DescribeMetadataModelCreationsCommand";
3
+ import { DatabaseMigrationServiceClient } from "../DatabaseMigrationServiceClient";
4
+ export const paginateDescribeMetadataModelCreations = createPaginator(DatabaseMigrationServiceClient, DescribeMetadataModelCreationsCommand, "Marker", "Marker", "MaxRecords");
@@ -18,7 +18,9 @@ export * from "./DescribeFleetAdvisorSchemaObjectSummaryPaginator";
18
18
  export * from "./DescribeFleetAdvisorSchemasPaginator";
19
19
  export * from "./DescribeInstanceProfilesPaginator";
20
20
  export * from "./DescribeMetadataModelAssessmentsPaginator";
21
+ export * from "./DescribeMetadataModelChildrenPaginator";
21
22
  export * from "./DescribeMetadataModelConversionsPaginator";
23
+ export * from "./DescribeMetadataModelCreationsPaginator";
22
24
  export * from "./DescribeMetadataModelExportsAsScriptPaginator";
23
25
  export * from "./DescribeMetadataModelExportsToTargetPaginator";
24
26
  export * from "./DescribeMetadataModelImportsPaginator";