aws-sdk 2.1428.0 → 2.1429.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/CHANGELOG.md +6 -1
- package/README.md +1 -1
- package/apis/autoscaling-2011-01-01.examples.json +2 -2
- package/apis/dms-2016-01-01.min.json +1079 -217
- package/apis/dms-2016-01-01.paginators.json +45 -0
- package/apis/ec2-2016-11-15.min.json +27 -0
- package/clients/autoscaling.d.ts +1 -1
- package/clients/cloud9.d.ts +1 -1
- package/clients/dms.d.ts +1224 -12
- package/clients/ec2.d.ts +33 -1
- package/clients/sagemaker.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +30 -3
- package/dist/aws-sdk.min.js +72 -72
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/dms.d.ts
CHANGED
@@ -44,6 +44,14 @@ declare class DMS extends Service {
|
|
44
44
|
* Cancels a single premigration assessment run. This operation prevents any individual assessments from running if they haven't started running. It also attempts to cancel any individual assessments that are currently running.
|
45
45
|
*/
|
46
46
|
cancelReplicationTaskAssessmentRun(callback?: (err: AWSError, data: DMS.Types.CancelReplicationTaskAssessmentRunResponse) => void): Request<DMS.Types.CancelReplicationTaskAssessmentRunResponse, AWSError>;
|
47
|
+
/**
|
48
|
+
* Creates a data provider using the provided settings. A data provider stores a data store type and location information about your database.
|
49
|
+
*/
|
50
|
+
createDataProvider(params: DMS.Types.CreateDataProviderMessage, callback?: (err: AWSError, data: DMS.Types.CreateDataProviderResponse) => void): Request<DMS.Types.CreateDataProviderResponse, AWSError>;
|
51
|
+
/**
|
52
|
+
* Creates a data provider using the provided settings. A data provider stores a data store type and location information about your database.
|
53
|
+
*/
|
54
|
+
createDataProvider(callback?: (err: AWSError, data: DMS.Types.CreateDataProviderResponse) => void): Request<DMS.Types.CreateDataProviderResponse, AWSError>;
|
47
55
|
/**
|
48
56
|
* Creates an endpoint using the provided settings. For a MySQL source or target endpoint, don't explicitly specify the database using the DatabaseName request parameter on the CreateEndpoint API call. Specifying DatabaseName when you create a MySQL endpoint replicates all the task tables to this single database. For MySQL endpoints, you specify the database only when you specify the schema in the table-mapping rules of the DMS task.
|
49
57
|
*/
|
@@ -68,6 +76,22 @@ declare class DMS extends Service {
|
|
68
76
|
* Creates a Fleet Advisor collector using the specified parameters.
|
69
77
|
*/
|
70
78
|
createFleetAdvisorCollector(callback?: (err: AWSError, data: DMS.Types.CreateFleetAdvisorCollectorResponse) => void): Request<DMS.Types.CreateFleetAdvisorCollectorResponse, AWSError>;
|
79
|
+
/**
|
80
|
+
* Creates the instance profile using the specified parameters.
|
81
|
+
*/
|
82
|
+
createInstanceProfile(params: DMS.Types.CreateInstanceProfileMessage, callback?: (err: AWSError, data: DMS.Types.CreateInstanceProfileResponse) => void): Request<DMS.Types.CreateInstanceProfileResponse, AWSError>;
|
83
|
+
/**
|
84
|
+
* Creates the instance profile using the specified parameters.
|
85
|
+
*/
|
86
|
+
createInstanceProfile(callback?: (err: AWSError, data: DMS.Types.CreateInstanceProfileResponse) => void): Request<DMS.Types.CreateInstanceProfileResponse, AWSError>;
|
87
|
+
/**
|
88
|
+
* Creates the migration project using the specified parameters. You can run this action only after you create an instance profile and data providers using CreateInstanceProfile and CreateDataProvider.
|
89
|
+
*/
|
90
|
+
createMigrationProject(params: DMS.Types.CreateMigrationProjectMessage, callback?: (err: AWSError, data: DMS.Types.CreateMigrationProjectResponse) => void): Request<DMS.Types.CreateMigrationProjectResponse, AWSError>;
|
91
|
+
/**
|
92
|
+
* Creates the migration project using the specified parameters. You can run this action only after you create an instance profile and data providers using CreateInstanceProfile and CreateDataProvider.
|
93
|
+
*/
|
94
|
+
createMigrationProject(callback?: (err: AWSError, data: DMS.Types.CreateMigrationProjectResponse) => void): Request<DMS.Types.CreateMigrationProjectResponse, AWSError>;
|
71
95
|
/**
|
72
96
|
* Creates a configuration that you can later provide to configure and start an DMS Serverless replication. You can also provide options to validate the configuration inputs before you start the replication.
|
73
97
|
*/
|
@@ -116,6 +140,14 @@ declare class DMS extends Service {
|
|
116
140
|
* Deletes the connection between a replication instance and an endpoint.
|
117
141
|
*/
|
118
142
|
deleteConnection(callback?: (err: AWSError, data: DMS.Types.DeleteConnectionResponse) => void): Request<DMS.Types.DeleteConnectionResponse, AWSError>;
|
143
|
+
/**
|
144
|
+
* Deletes the specified data provider. All migration projects associated with the data provider must be deleted or modified before you can delete the data provider.
|
145
|
+
*/
|
146
|
+
deleteDataProvider(params: DMS.Types.DeleteDataProviderMessage, callback?: (err: AWSError, data: DMS.Types.DeleteDataProviderResponse) => void): Request<DMS.Types.DeleteDataProviderResponse, AWSError>;
|
147
|
+
/**
|
148
|
+
* Deletes the specified data provider. All migration projects associated with the data provider must be deleted or modified before you can delete the data provider.
|
149
|
+
*/
|
150
|
+
deleteDataProvider(callback?: (err: AWSError, data: DMS.Types.DeleteDataProviderResponse) => void): Request<DMS.Types.DeleteDataProviderResponse, AWSError>;
|
119
151
|
/**
|
120
152
|
* Deletes the specified endpoint. All tasks associated with the endpoint must be deleted before you can delete the endpoint.
|
121
153
|
*/
|
@@ -148,6 +180,22 @@ declare class DMS extends Service {
|
|
148
180
|
* Deletes the specified Fleet Advisor collector databases.
|
149
181
|
*/
|
150
182
|
deleteFleetAdvisorDatabases(callback?: (err: AWSError, data: DMS.Types.DeleteFleetAdvisorDatabasesResponse) => void): Request<DMS.Types.DeleteFleetAdvisorDatabasesResponse, AWSError>;
|
183
|
+
/**
|
184
|
+
* Deletes the specified instance profile. All migration projects associated with the instance profile must be deleted or modified before you can delete the instance profile.
|
185
|
+
*/
|
186
|
+
deleteInstanceProfile(params: DMS.Types.DeleteInstanceProfileMessage, callback?: (err: AWSError, data: DMS.Types.DeleteInstanceProfileResponse) => void): Request<DMS.Types.DeleteInstanceProfileResponse, AWSError>;
|
187
|
+
/**
|
188
|
+
* Deletes the specified instance profile. All migration projects associated with the instance profile must be deleted or modified before you can delete the instance profile.
|
189
|
+
*/
|
190
|
+
deleteInstanceProfile(callback?: (err: AWSError, data: DMS.Types.DeleteInstanceProfileResponse) => void): Request<DMS.Types.DeleteInstanceProfileResponse, AWSError>;
|
191
|
+
/**
|
192
|
+
* Deletes the specified migration project. The migration project must be closed before you can delete it.
|
193
|
+
*/
|
194
|
+
deleteMigrationProject(params: DMS.Types.DeleteMigrationProjectMessage, callback?: (err: AWSError, data: DMS.Types.DeleteMigrationProjectResponse) => void): Request<DMS.Types.DeleteMigrationProjectResponse, AWSError>;
|
195
|
+
/**
|
196
|
+
* Deletes the specified migration project. The migration project must be closed before you can delete it.
|
197
|
+
*/
|
198
|
+
deleteMigrationProject(callback?: (err: AWSError, data: DMS.Types.DeleteMigrationProjectResponse) => void): Request<DMS.Types.DeleteMigrationProjectResponse, AWSError>;
|
151
199
|
/**
|
152
200
|
* Deletes an DMS Serverless replication configuration. This effectively deprovisions any and all replications that use this configuration. You can't delete the configuration for an DMS Serverless replication that is ongoing. You can delete the configuration when the replication is in a non-RUNNING and non-STARTING state.
|
153
201
|
*/
|
@@ -220,6 +268,22 @@ declare class DMS extends Service {
|
|
220
268
|
* Describes the status of the connections that have been made between the replication instance and an endpoint. Connections are created when you test an endpoint.
|
221
269
|
*/
|
222
270
|
describeConnections(callback?: (err: AWSError, data: DMS.Types.DescribeConnectionsResponse) => void): Request<DMS.Types.DescribeConnectionsResponse, AWSError>;
|
271
|
+
/**
|
272
|
+
* Returns configuration parameters for a schema conversion project.
|
273
|
+
*/
|
274
|
+
describeConversionConfiguration(params: DMS.Types.DescribeConversionConfigurationMessage, callback?: (err: AWSError, data: DMS.Types.DescribeConversionConfigurationResponse) => void): Request<DMS.Types.DescribeConversionConfigurationResponse, AWSError>;
|
275
|
+
/**
|
276
|
+
* Returns configuration parameters for a schema conversion project.
|
277
|
+
*/
|
278
|
+
describeConversionConfiguration(callback?: (err: AWSError, data: DMS.Types.DescribeConversionConfigurationResponse) => void): Request<DMS.Types.DescribeConversionConfigurationResponse, AWSError>;
|
279
|
+
/**
|
280
|
+
* Returns a paginated list of data providers for your account in the current region.
|
281
|
+
*/
|
282
|
+
describeDataProviders(params: DMS.Types.DescribeDataProvidersMessage, callback?: (err: AWSError, data: DMS.Types.DescribeDataProvidersResponse) => void): Request<DMS.Types.DescribeDataProvidersResponse, AWSError>;
|
283
|
+
/**
|
284
|
+
* Returns a paginated list of data providers for your account in the current region.
|
285
|
+
*/
|
286
|
+
describeDataProviders(callback?: (err: AWSError, data: DMS.Types.DescribeDataProvidersResponse) => void): Request<DMS.Types.DescribeDataProvidersResponse, AWSError>;
|
223
287
|
/**
|
224
288
|
* Returns information about the possible endpoint settings available when you create an endpoint for a specific database engine.
|
225
289
|
*/
|
@@ -276,6 +340,14 @@ declare class DMS extends Service {
|
|
276
340
|
* Lists events for a given source identifier and source type. You can also specify a start and end time. For more information on DMS events, see Working with Events and Notifications in the Database Migration Service User Guide.
|
277
341
|
*/
|
278
342
|
describeEvents(callback?: (err: AWSError, data: DMS.Types.DescribeEventsResponse) => void): Request<DMS.Types.DescribeEventsResponse, AWSError>;
|
343
|
+
/**
|
344
|
+
* Returns a paginated list of extension pack associations for the specified migration project. An extension pack is an add-on module that emulates functions present in a source database that are required when converting objects to the target database.
|
345
|
+
*/
|
346
|
+
describeExtensionPackAssociations(params: DMS.Types.DescribeExtensionPackAssociationsMessage, callback?: (err: AWSError, data: DMS.Types.DescribeExtensionPackAssociationsResponse) => void): Request<DMS.Types.DescribeExtensionPackAssociationsResponse, AWSError>;
|
347
|
+
/**
|
348
|
+
* Returns a paginated list of extension pack associations for the specified migration project. An extension pack is an add-on module that emulates functions present in a source database that are required when converting objects to the target database.
|
349
|
+
*/
|
350
|
+
describeExtensionPackAssociations(callback?: (err: AWSError, data: DMS.Types.DescribeExtensionPackAssociationsResponse) => void): Request<DMS.Types.DescribeExtensionPackAssociationsResponse, AWSError>;
|
279
351
|
/**
|
280
352
|
* Returns a list of the Fleet Advisor collectors in your account.
|
281
353
|
*/
|
@@ -316,6 +388,62 @@ declare class DMS extends Service {
|
|
316
388
|
* Returns a list of schemas detected by Fleet Advisor Collectors in your account.
|
317
389
|
*/
|
318
390
|
describeFleetAdvisorSchemas(callback?: (err: AWSError, data: DMS.Types.DescribeFleetAdvisorSchemasResponse) => void): Request<DMS.Types.DescribeFleetAdvisorSchemasResponse, AWSError>;
|
391
|
+
/**
|
392
|
+
* Returns a paginated list of instance profiles for your account in the current region.
|
393
|
+
*/
|
394
|
+
describeInstanceProfiles(params: DMS.Types.DescribeInstanceProfilesMessage, callback?: (err: AWSError, data: DMS.Types.DescribeInstanceProfilesResponse) => void): Request<DMS.Types.DescribeInstanceProfilesResponse, AWSError>;
|
395
|
+
/**
|
396
|
+
* Returns a paginated list of instance profiles for your account in the current region.
|
397
|
+
*/
|
398
|
+
describeInstanceProfiles(callback?: (err: AWSError, data: DMS.Types.DescribeInstanceProfilesResponse) => void): Request<DMS.Types.DescribeInstanceProfilesResponse, AWSError>;
|
399
|
+
/**
|
400
|
+
* Returns a paginated list of metadata model assessments for your account in the current region.
|
401
|
+
*/
|
402
|
+
describeMetadataModelAssessments(params: DMS.Types.DescribeMetadataModelAssessmentsMessage, callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelAssessmentsResponse) => void): Request<DMS.Types.DescribeMetadataModelAssessmentsResponse, AWSError>;
|
403
|
+
/**
|
404
|
+
* Returns a paginated list of metadata model assessments for your account in the current region.
|
405
|
+
*/
|
406
|
+
describeMetadataModelAssessments(callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelAssessmentsResponse) => void): Request<DMS.Types.DescribeMetadataModelAssessmentsResponse, AWSError>;
|
407
|
+
/**
|
408
|
+
* Returns a paginated list of metadata model conversions for a migration project.
|
409
|
+
*/
|
410
|
+
describeMetadataModelConversions(params: DMS.Types.DescribeMetadataModelConversionsMessage, callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelConversionsResponse) => void): Request<DMS.Types.DescribeMetadataModelConversionsResponse, AWSError>;
|
411
|
+
/**
|
412
|
+
* Returns a paginated list of metadata model conversions for a migration project.
|
413
|
+
*/
|
414
|
+
describeMetadataModelConversions(callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelConversionsResponse) => void): Request<DMS.Types.DescribeMetadataModelConversionsResponse, AWSError>;
|
415
|
+
/**
|
416
|
+
* Returns a paginated list of metadata model exports.
|
417
|
+
*/
|
418
|
+
describeMetadataModelExportsAsScript(params: DMS.Types.DescribeMetadataModelExportsAsScriptMessage, callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelExportsAsScriptResponse) => void): Request<DMS.Types.DescribeMetadataModelExportsAsScriptResponse, AWSError>;
|
419
|
+
/**
|
420
|
+
* Returns a paginated list of metadata model exports.
|
421
|
+
*/
|
422
|
+
describeMetadataModelExportsAsScript(callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelExportsAsScriptResponse) => void): Request<DMS.Types.DescribeMetadataModelExportsAsScriptResponse, AWSError>;
|
423
|
+
/**
|
424
|
+
* Returns a paginated list of metadata model exports.
|
425
|
+
*/
|
426
|
+
describeMetadataModelExportsToTarget(params: DMS.Types.DescribeMetadataModelExportsToTargetMessage, callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelExportsToTargetResponse) => void): Request<DMS.Types.DescribeMetadataModelExportsToTargetResponse, AWSError>;
|
427
|
+
/**
|
428
|
+
* Returns a paginated list of metadata model exports.
|
429
|
+
*/
|
430
|
+
describeMetadataModelExportsToTarget(callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelExportsToTargetResponse) => void): Request<DMS.Types.DescribeMetadataModelExportsToTargetResponse, AWSError>;
|
431
|
+
/**
|
432
|
+
* Returns a paginated list of metadata model imports.
|
433
|
+
*/
|
434
|
+
describeMetadataModelImports(params: DMS.Types.DescribeMetadataModelImportsMessage, callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelImportsResponse) => void): Request<DMS.Types.DescribeMetadataModelImportsResponse, AWSError>;
|
435
|
+
/**
|
436
|
+
* Returns a paginated list of metadata model imports.
|
437
|
+
*/
|
438
|
+
describeMetadataModelImports(callback?: (err: AWSError, data: DMS.Types.DescribeMetadataModelImportsResponse) => void): Request<DMS.Types.DescribeMetadataModelImportsResponse, AWSError>;
|
439
|
+
/**
|
440
|
+
* Returns a paginated list of migration projects for your account in the current region.
|
441
|
+
*/
|
442
|
+
describeMigrationProjects(params: DMS.Types.DescribeMigrationProjectsMessage, callback?: (err: AWSError, data: DMS.Types.DescribeMigrationProjectsResponse) => void): Request<DMS.Types.DescribeMigrationProjectsResponse, AWSError>;
|
443
|
+
/**
|
444
|
+
* Returns a paginated list of migration projects for your account in the current region.
|
445
|
+
*/
|
446
|
+
describeMigrationProjects(callback?: (err: AWSError, data: DMS.Types.DescribeMigrationProjectsResponse) => void): Request<DMS.Types.DescribeMigrationProjectsResponse, AWSError>;
|
319
447
|
/**
|
320
448
|
* Returns information about the replication instance types that can be created in the specified region.
|
321
449
|
*/
|
@@ -452,6 +580,14 @@ declare class DMS extends Service {
|
|
452
580
|
* Returns table statistics on the database migration task, including table name, rows inserted, rows updated, and rows deleted. Note that the "last updated" column the DMS console only indicates the time that DMS last updated the table statistics record for a table. It does not indicate the time of the last update to the table.
|
453
581
|
*/
|
454
582
|
describeTableStatistics(callback?: (err: AWSError, data: DMS.Types.DescribeTableStatisticsResponse) => void): Request<DMS.Types.DescribeTableStatisticsResponse, AWSError>;
|
583
|
+
/**
|
584
|
+
* Saves a copy of a database migration assessment report to your Amazon S3 bucket. DMS can save your assessment report as a comma-separated value (CSV) or a PDF file.
|
585
|
+
*/
|
586
|
+
exportMetadataModelAssessment(params: DMS.Types.ExportMetadataModelAssessmentMessage, callback?: (err: AWSError, data: DMS.Types.ExportMetadataModelAssessmentResponse) => void): Request<DMS.Types.ExportMetadataModelAssessmentResponse, AWSError>;
|
587
|
+
/**
|
588
|
+
* Saves a copy of a database migration assessment report to your Amazon S3 bucket. DMS can save your assessment report as a comma-separated value (CSV) or a PDF file.
|
589
|
+
*/
|
590
|
+
exportMetadataModelAssessment(callback?: (err: AWSError, data: DMS.Types.ExportMetadataModelAssessmentResponse) => void): Request<DMS.Types.ExportMetadataModelAssessmentResponse, AWSError>;
|
455
591
|
/**
|
456
592
|
* Uploads the specified certificate.
|
457
593
|
*/
|
@@ -468,6 +604,22 @@ declare class DMS extends Service {
|
|
468
604
|
* Lists all metadata tags attached to an DMS resource, including replication instance, endpoint, subnet group, and migration task. For more information, see Tag data type description.
|
469
605
|
*/
|
470
606
|
listTagsForResource(callback?: (err: AWSError, data: DMS.Types.ListTagsForResourceResponse) => void): Request<DMS.Types.ListTagsForResourceResponse, AWSError>;
|
607
|
+
/**
|
608
|
+
* Modifies the specified schema conversion configuration using the provided parameters.
|
609
|
+
*/
|
610
|
+
modifyConversionConfiguration(params: DMS.Types.ModifyConversionConfigurationMessage, callback?: (err: AWSError, data: DMS.Types.ModifyConversionConfigurationResponse) => void): Request<DMS.Types.ModifyConversionConfigurationResponse, AWSError>;
|
611
|
+
/**
|
612
|
+
* Modifies the specified schema conversion configuration using the provided parameters.
|
613
|
+
*/
|
614
|
+
modifyConversionConfiguration(callback?: (err: AWSError, data: DMS.Types.ModifyConversionConfigurationResponse) => void): Request<DMS.Types.ModifyConversionConfigurationResponse, AWSError>;
|
615
|
+
/**
|
616
|
+
* Modifies the specified data provider using the provided settings. You must remove the data provider from all migration projects before you can modify it.
|
617
|
+
*/
|
618
|
+
modifyDataProvider(params: DMS.Types.ModifyDataProviderMessage, callback?: (err: AWSError, data: DMS.Types.ModifyDataProviderResponse) => void): Request<DMS.Types.ModifyDataProviderResponse, AWSError>;
|
619
|
+
/**
|
620
|
+
* Modifies the specified data provider using the provided settings. You must remove the data provider from all migration projects before you can modify it.
|
621
|
+
*/
|
622
|
+
modifyDataProvider(callback?: (err: AWSError, data: DMS.Types.ModifyDataProviderResponse) => void): Request<DMS.Types.ModifyDataProviderResponse, AWSError>;
|
471
623
|
/**
|
472
624
|
* Modifies the specified endpoint. For a MySQL source or target endpoint, don't explicitly specify the database using the DatabaseName request parameter on the ModifyEndpoint API call. Specifying DatabaseName when you modify a MySQL endpoint replicates all the task tables to this single database. For MySQL endpoints, you specify the database only when you specify the schema in the table-mapping rules of the DMS task.
|
473
625
|
*/
|
@@ -484,6 +636,22 @@ declare class DMS extends Service {
|
|
484
636
|
* Modifies an existing DMS event notification subscription.
|
485
637
|
*/
|
486
638
|
modifyEventSubscription(callback?: (err: AWSError, data: DMS.Types.ModifyEventSubscriptionResponse) => void): Request<DMS.Types.ModifyEventSubscriptionResponse, AWSError>;
|
639
|
+
/**
|
640
|
+
* Modifies the specified instance profile using the provided parameters. All migration projects associated with the instance profile must be deleted or modified before you can modify the instance profile.
|
641
|
+
*/
|
642
|
+
modifyInstanceProfile(params: DMS.Types.ModifyInstanceProfileMessage, callback?: (err: AWSError, data: DMS.Types.ModifyInstanceProfileResponse) => void): Request<DMS.Types.ModifyInstanceProfileResponse, AWSError>;
|
643
|
+
/**
|
644
|
+
* Modifies the specified instance profile using the provided parameters. All migration projects associated with the instance profile must be deleted or modified before you can modify the instance profile.
|
645
|
+
*/
|
646
|
+
modifyInstanceProfile(callback?: (err: AWSError, data: DMS.Types.ModifyInstanceProfileResponse) => void): Request<DMS.Types.ModifyInstanceProfileResponse, AWSError>;
|
647
|
+
/**
|
648
|
+
* Modifies the specified migration project using the provided parameters. The migration project must be closed before you can modify it.
|
649
|
+
*/
|
650
|
+
modifyMigrationProject(params: DMS.Types.ModifyMigrationProjectMessage, callback?: (err: AWSError, data: DMS.Types.ModifyMigrationProjectResponse) => void): Request<DMS.Types.ModifyMigrationProjectResponse, AWSError>;
|
651
|
+
/**
|
652
|
+
* Modifies the specified migration project using the provided parameters. The migration project must be closed before you can modify it.
|
653
|
+
*/
|
654
|
+
modifyMigrationProject(callback?: (err: AWSError, data: DMS.Types.ModifyMigrationProjectResponse) => void): Request<DMS.Types.ModifyMigrationProjectResponse, AWSError>;
|
487
655
|
/**
|
488
656
|
* Modifies an existing DMS Serverless replication configuration that you can use to start a replication. This command includes input validation and logic to check the state of any replication that uses this configuration. You can only modify a replication configuration before any replication that uses it has started. As soon as you have initially started a replication with a given configuiration, you can't modify that configuration, even if you stop it. Other run statuses that allow you to run this command include FAILED and CREATED. A provisioning state that allows you to run this command is FAILED_PROVISION.
|
489
657
|
*/
|
@@ -568,6 +736,54 @@ declare class DMS extends Service {
|
|
568
736
|
* Runs large-scale assessment (LSA) analysis on every Fleet Advisor collector in your account.
|
569
737
|
*/
|
570
738
|
runFleetAdvisorLsaAnalysis(callback?: (err: AWSError, data: DMS.Types.RunFleetAdvisorLsaAnalysisResponse) => void): Request<DMS.Types.RunFleetAdvisorLsaAnalysisResponse, AWSError>;
|
739
|
+
/**
|
740
|
+
* Applies the extension pack to your target database. An extension pack is an add-on module that emulates functions present in a source database that are required when converting objects to the target database.
|
741
|
+
*/
|
742
|
+
startExtensionPackAssociation(params: DMS.Types.StartExtensionPackAssociationMessage, callback?: (err: AWSError, data: DMS.Types.StartExtensionPackAssociationResponse) => void): Request<DMS.Types.StartExtensionPackAssociationResponse, AWSError>;
|
743
|
+
/**
|
744
|
+
* Applies the extension pack to your target database. An extension pack is an add-on module that emulates functions present in a source database that are required when converting objects to the target database.
|
745
|
+
*/
|
746
|
+
startExtensionPackAssociation(callback?: (err: AWSError, data: DMS.Types.StartExtensionPackAssociationResponse) => void): Request<DMS.Types.StartExtensionPackAssociationResponse, AWSError>;
|
747
|
+
/**
|
748
|
+
* Creates a database migration assessment report by assessing the migration complexity for your source database. A database migration assessment report summarizes all of the schema conversion tasks. It also details the action items for database objects that can't be converted to the database engine of your target database instance.
|
749
|
+
*/
|
750
|
+
startMetadataModelAssessment(params: DMS.Types.StartMetadataModelAssessmentMessage, callback?: (err: AWSError, data: DMS.Types.StartMetadataModelAssessmentResponse) => void): Request<DMS.Types.StartMetadataModelAssessmentResponse, AWSError>;
|
751
|
+
/**
|
752
|
+
* Creates a database migration assessment report by assessing the migration complexity for your source database. A database migration assessment report summarizes all of the schema conversion tasks. It also details the action items for database objects that can't be converted to the database engine of your target database instance.
|
753
|
+
*/
|
754
|
+
startMetadataModelAssessment(callback?: (err: AWSError, data: DMS.Types.StartMetadataModelAssessmentResponse) => void): Request<DMS.Types.StartMetadataModelAssessmentResponse, AWSError>;
|
755
|
+
/**
|
756
|
+
* Converts your source database objects to a format compatible with the target database.
|
757
|
+
*/
|
758
|
+
startMetadataModelConversion(params: DMS.Types.StartMetadataModelConversionMessage, callback?: (err: AWSError, data: DMS.Types.StartMetadataModelConversionResponse) => void): Request<DMS.Types.StartMetadataModelConversionResponse, AWSError>;
|
759
|
+
/**
|
760
|
+
* Converts your source database objects to a format compatible with the target database.
|
761
|
+
*/
|
762
|
+
startMetadataModelConversion(callback?: (err: AWSError, data: DMS.Types.StartMetadataModelConversionResponse) => void): Request<DMS.Types.StartMetadataModelConversionResponse, AWSError>;
|
763
|
+
/**
|
764
|
+
* Saves your converted code to a file as a SQL script, and stores this file on your Amazon S3 bucket.
|
765
|
+
*/
|
766
|
+
startMetadataModelExportAsScript(params: DMS.Types.StartMetadataModelExportAsScriptMessage, callback?: (err: AWSError, data: DMS.Types.StartMetadataModelExportAsScriptResponse) => void): Request<DMS.Types.StartMetadataModelExportAsScriptResponse, AWSError>;
|
767
|
+
/**
|
768
|
+
* Saves your converted code to a file as a SQL script, and stores this file on your Amazon S3 bucket.
|
769
|
+
*/
|
770
|
+
startMetadataModelExportAsScript(callback?: (err: AWSError, data: DMS.Types.StartMetadataModelExportAsScriptResponse) => void): Request<DMS.Types.StartMetadataModelExportAsScriptResponse, AWSError>;
|
771
|
+
/**
|
772
|
+
* Applies converted database objects to your target database.
|
773
|
+
*/
|
774
|
+
startMetadataModelExportToTarget(params: DMS.Types.StartMetadataModelExportToTargetMessage, callback?: (err: AWSError, data: DMS.Types.StartMetadataModelExportToTargetResponse) => void): Request<DMS.Types.StartMetadataModelExportToTargetResponse, AWSError>;
|
775
|
+
/**
|
776
|
+
* Applies converted database objects to your target database.
|
777
|
+
*/
|
778
|
+
startMetadataModelExportToTarget(callback?: (err: AWSError, data: DMS.Types.StartMetadataModelExportToTargetResponse) => void): Request<DMS.Types.StartMetadataModelExportToTargetResponse, AWSError>;
|
779
|
+
/**
|
780
|
+
* Loads the metadata for all the dependent database objects of the parent object. This operation uses your project's Amazon S3 bucket as a metadata cache to improve performance.
|
781
|
+
*/
|
782
|
+
startMetadataModelImport(params: DMS.Types.StartMetadataModelImportMessage, callback?: (err: AWSError, data: DMS.Types.StartMetadataModelImportResponse) => void): Request<DMS.Types.StartMetadataModelImportResponse, AWSError>;
|
783
|
+
/**
|
784
|
+
* Loads the metadata for all the dependent database objects of the parent object. This operation uses your project's Amazon S3 bucket as a metadata cache to improve performance.
|
785
|
+
*/
|
786
|
+
startMetadataModelImport(callback?: (err: AWSError, data: DMS.Types.StartMetadataModelImportResponse) => void): Request<DMS.Types.StartMetadataModelImportResponse, AWSError>;
|
571
787
|
/**
|
572
788
|
* Starts the analysis of your source database to provide recommendations of target engines. You can create recommendations for multiple source databases using BatchStartRecommendations.
|
573
789
|
*/
|
@@ -754,6 +970,8 @@ declare namespace DMS {
|
|
754
970
|
ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
|
755
971
|
}
|
756
972
|
export type ArnList = String[];
|
973
|
+
export type AssessmentReportType = "pdf"|"csv"|string;
|
974
|
+
export type AssessmentReportTypesList = AssessmentReportType[];
|
757
975
|
export type AuthMechanismValue = "default"|"mongodb_cr"|"scram_sha_1"|string;
|
758
976
|
export type AuthTypeValue = "no"|"password"|string;
|
759
977
|
export interface AvailabilityZone {
|
@@ -996,6 +1214,34 @@ declare namespace DMS {
|
|
996
1214
|
ReplicationInstanceIdentifier?: String;
|
997
1215
|
}
|
998
1216
|
export type ConnectionList = Connection[];
|
1217
|
+
export interface CreateDataProviderMessage {
|
1218
|
+
/**
|
1219
|
+
* A user-friendly name for the data provider.
|
1220
|
+
*/
|
1221
|
+
DataProviderName?: String;
|
1222
|
+
/**
|
1223
|
+
* A user-friendly description of the data provider.
|
1224
|
+
*/
|
1225
|
+
Description?: String;
|
1226
|
+
/**
|
1227
|
+
* The type of database engine for the data provider. Valid values include "aurora", "aurora_postgresql", "mysql", "oracle", "postgres", and "sqlserver". A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
|
1228
|
+
*/
|
1229
|
+
Engine: String;
|
1230
|
+
/**
|
1231
|
+
* The settings in JSON format for a data provider.
|
1232
|
+
*/
|
1233
|
+
Settings: DataProviderSettings;
|
1234
|
+
/**
|
1235
|
+
* One or more tags to be assigned to the data provider.
|
1236
|
+
*/
|
1237
|
+
Tags?: TagList;
|
1238
|
+
}
|
1239
|
+
export interface CreateDataProviderResponse {
|
1240
|
+
/**
|
1241
|
+
* The data provider that was created.
|
1242
|
+
*/
|
1243
|
+
DataProvider?: DataProvider;
|
1244
|
+
}
|
999
1245
|
export interface CreateEndpointMessage {
|
1000
1246
|
/**
|
1001
1247
|
* The database endpoint identifier. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
|
@@ -1214,6 +1460,90 @@ declare namespace DMS {
|
|
1214
1460
|
*/
|
1215
1461
|
S3BucketName?: String;
|
1216
1462
|
}
|
1463
|
+
export interface CreateInstanceProfileMessage {
|
1464
|
+
/**
|
1465
|
+
* The Availability Zone where the instance profile will be created. The default value is a random, system-chosen Availability Zone in the Amazon Web Services Region where your data provider is created, for examplem us-east-1d.
|
1466
|
+
*/
|
1467
|
+
AvailabilityZone?: String;
|
1468
|
+
/**
|
1469
|
+
* The Amazon Resource Name (ARN) of the KMS key that is used to encrypt the connection parameters for the instance profile. If you don't specify a value for the KmsKeyArn parameter, then DMS uses your default encryption key. KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.
|
1470
|
+
*/
|
1471
|
+
KmsKeyArn?: String;
|
1472
|
+
/**
|
1473
|
+
* Specifies the accessibility options for the instance profile. A value of true represents an instance profile with a public IP address. A value of false represents an instance profile with a private IP address. The default value is true.
|
1474
|
+
*/
|
1475
|
+
PubliclyAccessible?: BooleanOptional;
|
1476
|
+
/**
|
1477
|
+
* One or more tags to be assigned to the instance profile.
|
1478
|
+
*/
|
1479
|
+
Tags?: TagList;
|
1480
|
+
/**
|
1481
|
+
* Specifies the network type for the instance profile. A value of IPV4 represents an instance profile with IPv4 network type and only supports IPv4 addressing. A value of IPV6 represents an instance profile with IPv6 network type and only supports IPv6 addressing. A value of DUAL represents an instance profile with dual network type that supports IPv4 and IPv6 addressing.
|
1482
|
+
*/
|
1483
|
+
NetworkType?: String;
|
1484
|
+
/**
|
1485
|
+
* A user-friendly name for the instance profile.
|
1486
|
+
*/
|
1487
|
+
InstanceProfileName?: String;
|
1488
|
+
/**
|
1489
|
+
* A user-friendly description of the instance profile.
|
1490
|
+
*/
|
1491
|
+
Description?: String;
|
1492
|
+
/**
|
1493
|
+
* A subnet group to associate with the instance profile.
|
1494
|
+
*/
|
1495
|
+
SubnetGroupIdentifier?: String;
|
1496
|
+
/**
|
1497
|
+
* Specifies the VPC security group names to be used with the instance profile. The VPC security group must work with the VPC containing the instance profile.
|
1498
|
+
*/
|
1499
|
+
VpcSecurityGroups?: StringList;
|
1500
|
+
}
|
1501
|
+
export interface CreateInstanceProfileResponse {
|
1502
|
+
/**
|
1503
|
+
* The instance profile that was created.
|
1504
|
+
*/
|
1505
|
+
InstanceProfile?: InstanceProfile;
|
1506
|
+
}
|
1507
|
+
export interface CreateMigrationProjectMessage {
|
1508
|
+
/**
|
1509
|
+
* A user-friendly name for the migration project.
|
1510
|
+
*/
|
1511
|
+
MigrationProjectName?: String;
|
1512
|
+
/**
|
1513
|
+
* Information about the source data provider, including the name, ARN, and Secrets Manager parameters.
|
1514
|
+
*/
|
1515
|
+
SourceDataProviderDescriptors: DataProviderDescriptorDefinitionList;
|
1516
|
+
/**
|
1517
|
+
* Information about the target data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.
|
1518
|
+
*/
|
1519
|
+
TargetDataProviderDescriptors: DataProviderDescriptorDefinitionList;
|
1520
|
+
/**
|
1521
|
+
* The identifier of the associated instance profile. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
|
1522
|
+
*/
|
1523
|
+
InstanceProfileIdentifier: String;
|
1524
|
+
/**
|
1525
|
+
* The settings in JSON format for migration rules. Migration rules make it possible for you to change the object names according to the rules that you specify. For example, you can change an object name to lowercase or uppercase, add or remove a prefix or suffix, or rename objects.
|
1526
|
+
*/
|
1527
|
+
TransformationRules?: String;
|
1528
|
+
/**
|
1529
|
+
* A user-friendly description of the migration project.
|
1530
|
+
*/
|
1531
|
+
Description?: String;
|
1532
|
+
/**
|
1533
|
+
* One or more tags to be assigned to the migration project.
|
1534
|
+
*/
|
1535
|
+
Tags?: TagList;
|
1536
|
+
/**
|
1537
|
+
* The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.
|
1538
|
+
*/
|
1539
|
+
SchemaConversionApplicationAttributes?: SCApplicationAttributes;
|
1540
|
+
}
|
1541
|
+
export interface CreateMigrationProjectResponse {
|
1542
|
+
/**
|
1543
|
+
* The migration project that was created.
|
1544
|
+
*/
|
1545
|
+
MigrationProject?: MigrationProject;
|
1546
|
+
}
|
1217
1547
|
export interface CreateReplicationConfigMessage {
|
1218
1548
|
/**
|
1219
1549
|
* A unique identifier that you want to use to create a ReplicationConfigArn that is returned as part of the output from this action. You can then pass this output ReplicationConfigArn as the value of the ReplicationConfigArn option for other actions to identify both DMS Serverless replications and replication configurations that you want those actions to operate on. For some actions, you can also use either this unique identifier or a corresponding ARN in action filters to identify the specific replication and replication configuration to operate on.
|
@@ -1419,6 +1749,73 @@ declare namespace DMS {
|
|
1419
1749
|
ReplicationTask?: ReplicationTask;
|
1420
1750
|
}
|
1421
1751
|
export type DataFormatValue = "csv"|"parquet"|string;
|
1752
|
+
export interface DataProvider {
|
1753
|
+
/**
|
1754
|
+
* The name of the data provider.
|
1755
|
+
*/
|
1756
|
+
DataProviderName?: String;
|
1757
|
+
/**
|
1758
|
+
* The Amazon Resource Name (ARN) string that uniquely identifies the data provider.
|
1759
|
+
*/
|
1760
|
+
DataProviderArn?: String;
|
1761
|
+
/**
|
1762
|
+
* The time the data provider was created.
|
1763
|
+
*/
|
1764
|
+
DataProviderCreationTime?: Iso8601DateTime;
|
1765
|
+
/**
|
1766
|
+
* A description of the data provider. Descriptions can have up to 31 characters. A description can contain only ASCII letters, digits, and hyphens ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter.
|
1767
|
+
*/
|
1768
|
+
Description?: String;
|
1769
|
+
/**
|
1770
|
+
* The type of database engine for the data provider. Valid values include "aurora", "aurora_postgresql", "mysql", "oracle", "postgres", and "sqlserver". A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
|
1771
|
+
*/
|
1772
|
+
Engine?: String;
|
1773
|
+
/**
|
1774
|
+
* The settings in JSON format for a data provider.
|
1775
|
+
*/
|
1776
|
+
Settings?: DataProviderSettings;
|
1777
|
+
}
|
1778
|
+
export interface DataProviderDescriptor {
|
1779
|
+
/**
|
1780
|
+
* The identifier of the Amazon Web Services Secrets Manager Secret used to store access credentials for the data provider.
|
1781
|
+
*/
|
1782
|
+
SecretsManagerSecretId?: String;
|
1783
|
+
/**
|
1784
|
+
* The ARN of the role used to access Amazon Web Services Secrets Manager.
|
1785
|
+
*/
|
1786
|
+
SecretsManagerAccessRoleArn?: String;
|
1787
|
+
/**
|
1788
|
+
* The user-friendly name of the data provider.
|
1789
|
+
*/
|
1790
|
+
DataProviderName?: String;
|
1791
|
+
/**
|
1792
|
+
* The Amazon Resource Name (ARN) of the data provider.
|
1793
|
+
*/
|
1794
|
+
DataProviderArn?: String;
|
1795
|
+
}
|
1796
|
+
export interface DataProviderDescriptorDefinition {
|
1797
|
+
/**
|
1798
|
+
* The name or Amazon Resource Name (ARN) of the data provider.
|
1799
|
+
*/
|
1800
|
+
DataProviderIdentifier: String;
|
1801
|
+
/**
|
1802
|
+
* The identifier of the Amazon Web Services Secrets Manager Secret used to store access credentials for the data provider.
|
1803
|
+
*/
|
1804
|
+
SecretsManagerSecretId?: String;
|
1805
|
+
/**
|
1806
|
+
* The ARN of the role used to access Amazon Web Services Secrets Manager.
|
1807
|
+
*/
|
1808
|
+
SecretsManagerAccessRoleArn?: String;
|
1809
|
+
}
|
1810
|
+
export type DataProviderDescriptorDefinitionList = DataProviderDescriptorDefinition[];
|
1811
|
+
export type DataProviderDescriptorList = DataProviderDescriptor[];
|
1812
|
+
export type DataProviderList = DataProvider[];
|
1813
|
+
export interface DataProviderSettings {
|
1814
|
+
PostgreSqlSettings?: PostgreSqlDataProviderSettings;
|
1815
|
+
MySqlSettings?: MySqlDataProviderSettings;
|
1816
|
+
OracleSettings?: OracleDataProviderSettings;
|
1817
|
+
MicrosoftSqlServerSettings?: MicrosoftSqlServerDataProviderSettings;
|
1818
|
+
}
|
1422
1819
|
export interface DatabaseInstanceSoftwareDetailsResponse {
|
1423
1820
|
/**
|
1424
1821
|
* The database engine of a database in a Fleet Advisor collector inventory, for example Microsoft SQL Server.
|
@@ -1501,6 +1898,12 @@ declare namespace DMS {
|
|
1501
1898
|
}
|
1502
1899
|
export type DatePartitionDelimiterValue = "SLASH"|"UNDERSCORE"|"DASH"|"NONE"|string;
|
1503
1900
|
export type DatePartitionSequenceValue = "YYYYMMDD"|"YYYYMMDDHH"|"YYYYMM"|"MMYYYYDD"|"DDMMYYYY"|string;
|
1901
|
+
export interface DefaultErrorDetails {
|
1902
|
+
/**
|
1903
|
+
* The error message.
|
1904
|
+
*/
|
1905
|
+
Message?: String;
|
1906
|
+
}
|
1504
1907
|
export interface DeleteCertificateMessage {
|
1505
1908
|
/**
|
1506
1909
|
* The Amazon Resource Name (ARN) of the certificate.
|
@@ -1535,6 +1938,18 @@ declare namespace DMS {
|
|
1535
1938
|
*/
|
1536
1939
|
Connection?: Connection;
|
1537
1940
|
}
|
1941
|
+
export interface DeleteDataProviderMessage {
|
1942
|
+
/**
|
1943
|
+
* The identifier of the data provider to delete.
|
1944
|
+
*/
|
1945
|
+
DataProviderIdentifier: String;
|
1946
|
+
}
|
1947
|
+
export interface DeleteDataProviderResponse {
|
1948
|
+
/**
|
1949
|
+
* The data provider that was deleted.
|
1950
|
+
*/
|
1951
|
+
DataProvider?: DataProvider;
|
1952
|
+
}
|
1538
1953
|
export interface DeleteEndpointMessage {
|
1539
1954
|
/**
|
1540
1955
|
* The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
|
@@ -1571,6 +1986,30 @@ declare namespace DMS {
|
|
1571
1986
|
*/
|
1572
1987
|
DatabaseIds?: StringList;
|
1573
1988
|
}
|
1989
|
+
export interface DeleteInstanceProfileMessage {
|
1990
|
+
/**
|
1991
|
+
* The identifier of the instance profile to delete.
|
1992
|
+
*/
|
1993
|
+
InstanceProfileIdentifier: String;
|
1994
|
+
}
|
1995
|
+
export interface DeleteInstanceProfileResponse {
|
1996
|
+
/**
|
1997
|
+
* The instance profile that was deleted.
|
1998
|
+
*/
|
1999
|
+
InstanceProfile?: InstanceProfile;
|
2000
|
+
}
|
2001
|
+
export interface DeleteMigrationProjectMessage {
|
2002
|
+
/**
|
2003
|
+
* The name or Amazon Resource Name (ARN) of the migration project to delete.
|
2004
|
+
*/
|
2005
|
+
MigrationProjectIdentifier: String;
|
2006
|
+
}
|
2007
|
+
export interface DeleteMigrationProjectResponse {
|
2008
|
+
/**
|
2009
|
+
* The migration project that was deleted.
|
2010
|
+
*/
|
2011
|
+
MigrationProject?: MigrationProject;
|
2012
|
+
}
|
1574
2013
|
export interface DeleteReplicationConfigMessage {
|
1575
2014
|
/**
|
1576
2015
|
* The replication config to delete.
|
@@ -1727,6 +2166,46 @@ declare namespace DMS {
|
|
1727
2166
|
*/
|
1728
2167
|
Connections?: ConnectionList;
|
1729
2168
|
}
|
2169
|
+
export interface DescribeConversionConfigurationMessage {
|
2170
|
+
/**
|
2171
|
+
* The name or Amazon Resource Name (ARN) for the schema conversion project to describe.
|
2172
|
+
*/
|
2173
|
+
MigrationProjectIdentifier: String;
|
2174
|
+
}
|
2175
|
+
export interface DescribeConversionConfigurationResponse {
|
2176
|
+
/**
|
2177
|
+
* The name or Amazon Resource Name (ARN) for the schema conversion project.
|
2178
|
+
*/
|
2179
|
+
MigrationProjectIdentifier?: String;
|
2180
|
+
/**
|
2181
|
+
* The configuration parameters for the schema conversion project.
|
2182
|
+
*/
|
2183
|
+
ConversionConfiguration?: String;
|
2184
|
+
}
|
2185
|
+
export interface DescribeDataProvidersMessage {
|
2186
|
+
/**
|
2187
|
+
* Filters applied to the data providers described in the form of key-value pairs.
|
2188
|
+
*/
|
2189
|
+
Filters?: FilterList;
|
2190
|
+
/**
|
2191
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
|
2192
|
+
*/
|
2193
|
+
MaxRecords?: IntegerOptional;
|
2194
|
+
/**
|
2195
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2196
|
+
*/
|
2197
|
+
Marker?: String;
|
2198
|
+
}
|
2199
|
+
export interface DescribeDataProvidersResponse {
|
2200
|
+
/**
|
2201
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2202
|
+
*/
|
2203
|
+
Marker?: String;
|
2204
|
+
/**
|
2205
|
+
* A description of data providers.
|
2206
|
+
*/
|
2207
|
+
DataProviders?: DataProviderList;
|
2208
|
+
}
|
1730
2209
|
export interface DescribeEndpointSettingsMessage {
|
1731
2210
|
/**
|
1732
2211
|
* The database engine used for your source or target endpoint.
|
@@ -1911,6 +2390,34 @@ declare namespace DMS {
|
|
1911
2390
|
*/
|
1912
2391
|
Events?: EventList;
|
1913
2392
|
}
|
2393
|
+
export interface DescribeExtensionPackAssociationsMessage {
|
2394
|
+
/**
|
2395
|
+
* The name or Amazon Resource Name (ARN) for the migration project.
|
2396
|
+
*/
|
2397
|
+
MigrationProjectIdentifier: String;
|
2398
|
+
/**
|
2399
|
+
* Filters applied to the extension pack associations described in the form of key-value pairs.
|
2400
|
+
*/
|
2401
|
+
Filters?: FilterList;
|
2402
|
+
/**
|
2403
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2404
|
+
*/
|
2405
|
+
Marker?: String;
|
2406
|
+
/**
|
2407
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
|
2408
|
+
*/
|
2409
|
+
MaxRecords?: IntegerOptional;
|
2410
|
+
}
|
2411
|
+
export interface DescribeExtensionPackAssociationsResponse {
|
2412
|
+
/**
|
2413
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2414
|
+
*/
|
2415
|
+
Marker?: String;
|
2416
|
+
/**
|
2417
|
+
* A paginated list of extension pack associations for the specified migration project.
|
2418
|
+
*/
|
2419
|
+
Requests?: SchemaConversionRequestList;
|
2420
|
+
}
|
1914
2421
|
export interface DescribeFleetAdvisorCollectorsRequest {
|
1915
2422
|
/**
|
1916
2423
|
* If you specify any of the following filters, the output includes information for only those collectors that meet the filter criteria: collector-referenced-id – The ID of the collector agent, for example d4610ac5-e323-4ad9-bc50-eaf7249dfe9d. collector-name – The name of the collector agent. An example is: describe-fleet-advisor-collectors --filter Name="collector-referenced-id",Values="d4610ac5-e323-4ad9-bc50-eaf7249dfe9d"
|
@@ -2027,6 +2534,194 @@ declare namespace DMS {
|
|
2027
2534
|
*/
|
2028
2535
|
NextToken?: String;
|
2029
2536
|
}
|
2537
|
+
export interface DescribeInstanceProfilesMessage {
|
2538
|
+
/**
|
2539
|
+
* Filters applied to the instance profiles described in the form of key-value pairs.
|
2540
|
+
*/
|
2541
|
+
Filters?: FilterList;
|
2542
|
+
/**
|
2543
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
|
2544
|
+
*/
|
2545
|
+
MaxRecords?: IntegerOptional;
|
2546
|
+
/**
|
2547
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2548
|
+
*/
|
2549
|
+
Marker?: String;
|
2550
|
+
}
|
2551
|
+
export interface DescribeInstanceProfilesResponse {
|
2552
|
+
/**
|
2553
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2554
|
+
*/
|
2555
|
+
Marker?: String;
|
2556
|
+
/**
|
2557
|
+
* A description of instance profiles.
|
2558
|
+
*/
|
2559
|
+
InstanceProfiles?: InstanceProfileList;
|
2560
|
+
}
|
2561
|
+
export interface DescribeMetadataModelAssessmentsMessage {
|
2562
|
+
/**
|
2563
|
+
* The name or Amazon Resource Name (ARN) of the migration project.
|
2564
|
+
*/
|
2565
|
+
MigrationProjectIdentifier: String;
|
2566
|
+
/**
|
2567
|
+
* Filters applied to the metadata model assessments described in the form of key-value pairs.
|
2568
|
+
*/
|
2569
|
+
Filters?: FilterList;
|
2570
|
+
/**
|
2571
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2572
|
+
*/
|
2573
|
+
Marker?: String;
|
2574
|
+
/**
|
2575
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
|
2576
|
+
*/
|
2577
|
+
MaxRecords?: IntegerOptional;
|
2578
|
+
}
|
2579
|
+
export interface DescribeMetadataModelAssessmentsResponse {
|
2580
|
+
/**
|
2581
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2582
|
+
*/
|
2583
|
+
Marker?: String;
|
2584
|
+
/**
|
2585
|
+
* A paginated list of metadata model assessments for the specified migration project.
|
2586
|
+
*/
|
2587
|
+
Requests?: SchemaConversionRequestList;
|
2588
|
+
}
|
2589
|
+
export interface DescribeMetadataModelConversionsMessage {
|
2590
|
+
/**
|
2591
|
+
* The migration project name or Amazon Resource Name (ARN).
|
2592
|
+
*/
|
2593
|
+
MigrationProjectIdentifier: String;
|
2594
|
+
/**
|
2595
|
+
* Filters applied to the metadata model conversions described in the form of key-value pairs.
|
2596
|
+
*/
|
2597
|
+
Filters?: FilterList;
|
2598
|
+
/**
|
2599
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2600
|
+
*/
|
2601
|
+
Marker?: String;
|
2602
|
+
/**
|
2603
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
|
2604
|
+
*/
|
2605
|
+
MaxRecords?: IntegerOptional;
|
2606
|
+
}
|
2607
|
+
export interface DescribeMetadataModelConversionsResponse {
|
2608
|
+
/**
|
2609
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2610
|
+
*/
|
2611
|
+
Marker?: String;
|
2612
|
+
/**
|
2613
|
+
* A paginated list of metadata model conversions.
|
2614
|
+
*/
|
2615
|
+
Requests?: SchemaConversionRequestList;
|
2616
|
+
}
|
2617
|
+
export interface DescribeMetadataModelExportsAsScriptMessage {
|
2618
|
+
/**
|
2619
|
+
* The migration project name or Amazon Resource Name (ARN).
|
2620
|
+
*/
|
2621
|
+
MigrationProjectIdentifier: String;
|
2622
|
+
/**
|
2623
|
+
* Filters applied to the metadata model exports described in the form of key-value pairs.
|
2624
|
+
*/
|
2625
|
+
Filters?: FilterList;
|
2626
|
+
/**
|
2627
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2628
|
+
*/
|
2629
|
+
Marker?: String;
|
2630
|
+
/**
|
2631
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
|
2632
|
+
*/
|
2633
|
+
MaxRecords?: IntegerOptional;
|
2634
|
+
}
|
2635
|
+
export interface DescribeMetadataModelExportsAsScriptResponse {
|
2636
|
+
/**
|
2637
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2638
|
+
*/
|
2639
|
+
Marker?: String;
|
2640
|
+
/**
|
2641
|
+
* A paginated list of metadata model exports.
|
2642
|
+
*/
|
2643
|
+
Requests?: SchemaConversionRequestList;
|
2644
|
+
}
|
2645
|
+
export interface DescribeMetadataModelExportsToTargetMessage {
|
2646
|
+
/**
|
2647
|
+
* The migration project name or Amazon Resource Name (ARN).
|
2648
|
+
*/
|
2649
|
+
MigrationProjectIdentifier: String;
|
2650
|
+
/**
|
2651
|
+
* Filters applied to the metadata model exports described in the form of key-value pairs.
|
2652
|
+
*/
|
2653
|
+
Filters?: FilterList;
|
2654
|
+
/**
|
2655
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2656
|
+
*/
|
2657
|
+
Marker?: String;
|
2658
|
+
/**
|
2659
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
|
2660
|
+
*/
|
2661
|
+
MaxRecords?: IntegerOptional;
|
2662
|
+
}
|
2663
|
+
export interface DescribeMetadataModelExportsToTargetResponse {
|
2664
|
+
/**
|
2665
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2666
|
+
*/
|
2667
|
+
Marker?: String;
|
2668
|
+
/**
|
2669
|
+
* A paginated list of metadata model exports.
|
2670
|
+
*/
|
2671
|
+
Requests?: SchemaConversionRequestList;
|
2672
|
+
}
|
2673
|
+
export interface DescribeMetadataModelImportsMessage {
|
2674
|
+
/**
|
2675
|
+
* The migration project name or Amazon Resource Name (ARN).
|
2676
|
+
*/
|
2677
|
+
MigrationProjectIdentifier: String;
|
2678
|
+
/**
|
2679
|
+
* Filters applied to the metadata model imports described in the form of key-value pairs.
|
2680
|
+
*/
|
2681
|
+
Filters?: FilterList;
|
2682
|
+
/**
|
2683
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2684
|
+
*/
|
2685
|
+
Marker?: String;
|
2686
|
+
/**
|
2687
|
+
* A paginated list of metadata model imports.
|
2688
|
+
*/
|
2689
|
+
MaxRecords?: IntegerOptional;
|
2690
|
+
}
|
2691
|
+
export interface DescribeMetadataModelImportsResponse {
|
2692
|
+
/**
|
2693
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2694
|
+
*/
|
2695
|
+
Marker?: String;
|
2696
|
+
/**
|
2697
|
+
* A paginated list of metadata model imports.
|
2698
|
+
*/
|
2699
|
+
Requests?: SchemaConversionRequestList;
|
2700
|
+
}
|
2701
|
+
export interface DescribeMigrationProjectsMessage {
|
2702
|
+
/**
|
2703
|
+
* Filters applied to the migration projects described in the form of key-value pairs.
|
2704
|
+
*/
|
2705
|
+
Filters?: FilterList;
|
2706
|
+
/**
|
2707
|
+
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, DMS includes a pagination token in the response so that you can retrieve the remaining results.
|
2708
|
+
*/
|
2709
|
+
MaxRecords?: IntegerOptional;
|
2710
|
+
/**
|
2711
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2712
|
+
*/
|
2713
|
+
Marker?: String;
|
2714
|
+
}
|
2715
|
+
export interface DescribeMigrationProjectsResponse {
|
2716
|
+
/**
|
2717
|
+
* Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.
|
2718
|
+
*/
|
2719
|
+
Marker?: String;
|
2720
|
+
/**
|
2721
|
+
* A description of migration projects.
|
2722
|
+
*/
|
2723
|
+
MigrationProjects?: MigrationProjectList;
|
2724
|
+
}
|
2030
2725
|
export interface DescribeOrderableReplicationInstancesMessage {
|
2031
2726
|
/**
|
2032
2727
|
* The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved. Default: 100 Constraints: Minimum 20, maximum 100.
|
@@ -2767,6 +3462,12 @@ declare namespace DMS {
|
|
2767
3462
|
AvailableUpgrades?: AvailableUpgradesList;
|
2768
3463
|
}
|
2769
3464
|
export type EngineVersionList = EngineVersion[];
|
3465
|
+
export interface ErrorDetails {
|
3466
|
+
/**
|
3467
|
+
* Error information about a project.
|
3468
|
+
*/
|
3469
|
+
defaultErrorDetails?: DefaultErrorDetails;
|
3470
|
+
}
|
2770
3471
|
export interface Event {
|
2771
3472
|
/**
|
2772
3473
|
* The identifier of an event source.
|
@@ -2842,6 +3543,54 @@ declare namespace DMS {
|
|
2842
3543
|
}
|
2843
3544
|
export type EventSubscriptionsList = EventSubscription[];
|
2844
3545
|
export type ExcludeTestList = String[];
|
3546
|
+
export interface ExportMetadataModelAssessmentMessage {
|
3547
|
+
/**
|
3548
|
+
* The migration project name or Amazon Resource Name (ARN).
|
3549
|
+
*/
|
3550
|
+
MigrationProjectIdentifier: String;
|
3551
|
+
/**
|
3552
|
+
* A value that specifies the database objects to assess.
|
3553
|
+
*/
|
3554
|
+
SelectionRules: String;
|
3555
|
+
/**
|
3556
|
+
* The name of the assessment file to create in your Amazon S3 bucket.
|
3557
|
+
*/
|
3558
|
+
FileName?: String;
|
3559
|
+
/**
|
3560
|
+
* The file format of the assessment file.
|
3561
|
+
*/
|
3562
|
+
AssessmentReportTypes?: AssessmentReportTypesList;
|
3563
|
+
}
|
3564
|
+
export interface ExportMetadataModelAssessmentResponse {
|
3565
|
+
/**
|
3566
|
+
* The Amazon S3 details for an assessment exported in PDF format.
|
3567
|
+
*/
|
3568
|
+
PdfReport?: ExportMetadataModelAssessmentResultEntry;
|
3569
|
+
/**
|
3570
|
+
* The Amazon S3 details for an assessment exported in CSV format.
|
3571
|
+
*/
|
3572
|
+
CsvReport?: ExportMetadataModelAssessmentResultEntry;
|
3573
|
+
}
|
3574
|
+
export interface ExportMetadataModelAssessmentResultEntry {
|
3575
|
+
/**
|
3576
|
+
* The object key for the object containing the exported metadata model assessment.
|
3577
|
+
*/
|
3578
|
+
S3ObjectKey?: String;
|
3579
|
+
/**
|
3580
|
+
* The URL for the object containing the exported metadata model assessment.
|
3581
|
+
*/
|
3582
|
+
ObjectURL?: String;
|
3583
|
+
}
|
3584
|
+
export interface ExportSqlDetails {
|
3585
|
+
/**
|
3586
|
+
* The Amazon S3 object key for the object containing the exported metadata model assessment.
|
3587
|
+
*/
|
3588
|
+
S3ObjectKey?: String;
|
3589
|
+
/**
|
3590
|
+
* The URL for the object containing the exported metadata model assessment.
|
3591
|
+
*/
|
3592
|
+
ObjectURL?: String;
|
3593
|
+
}
|
2845
3594
|
export interface Filter {
|
2846
3595
|
/**
|
2847
3596
|
* The name of the filter as specified for a Describe* or similar operation.
|
@@ -2995,26 +3744,69 @@ declare namespace DMS {
|
|
2995
3744
|
*/
|
2996
3745
|
CertificateIdentifier: String;
|
2997
3746
|
/**
|
2998
|
-
* The contents of a .pem file, which contains an X.509 certificate.
|
3747
|
+
* The contents of a .pem file, which contains an X.509 certificate.
|
3748
|
+
*/
|
3749
|
+
CertificatePem?: SecretString;
|
3750
|
+
/**
|
3751
|
+
* The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a .sso file using the fileb:// prefix. You can't provide the certificate inline. Example: filebase64("${path.root}/rds-ca-2019-root.sso")
|
3752
|
+
*/
|
3753
|
+
CertificateWallet?: CertificateWallet;
|
3754
|
+
/**
|
3755
|
+
* The tags associated with the certificate.
|
3756
|
+
*/
|
3757
|
+
Tags?: TagList;
|
3758
|
+
}
|
3759
|
+
export interface ImportCertificateResponse {
|
3760
|
+
/**
|
3761
|
+
* The certificate to be uploaded.
|
3762
|
+
*/
|
3763
|
+
Certificate?: Certificate;
|
3764
|
+
}
|
3765
|
+
export type IncludeTestList = String[];
|
3766
|
+
export type IndividualAssessmentNameList = String[];
|
3767
|
+
export interface InstanceProfile {
|
3768
|
+
/**
|
3769
|
+
* The Amazon Resource Name (ARN) string that uniquely identifies the instance profile.
|
3770
|
+
*/
|
3771
|
+
InstanceProfileArn?: String;
|
3772
|
+
/**
|
3773
|
+
* The Availability Zone where the instance profile runs.
|
3774
|
+
*/
|
3775
|
+
AvailabilityZone?: String;
|
3776
|
+
/**
|
3777
|
+
* The Amazon Resource Name (ARN) of the KMS key that is used to encrypt the connection parameters for the instance profile. If you don't specify a value for the KmsKeyArn parameter, then DMS uses your default encryption key. KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.
|
3778
|
+
*/
|
3779
|
+
KmsKeyArn?: String;
|
3780
|
+
/**
|
3781
|
+
* Specifies the accessibility options for the instance profile. A value of true represents an instance profile with a public IP address. A value of false represents an instance profile with a private IP address. The default value is true.
|
3782
|
+
*/
|
3783
|
+
PubliclyAccessible?: BooleanOptional;
|
3784
|
+
/**
|
3785
|
+
* Specifies the network type for the instance profile. A value of IPV4 represents an instance profile with IPv4 network type and only supports IPv4 addressing. A value of IPV6 represents an instance profile with IPv6 network type and only supports IPv6 addressing. A value of DUAL represents an instance profile with dual network type that supports IPv4 and IPv6 addressing.
|
3786
|
+
*/
|
3787
|
+
NetworkType?: String;
|
3788
|
+
/**
|
3789
|
+
* The user-friendly name for the instance profile.
|
3790
|
+
*/
|
3791
|
+
InstanceProfileName?: String;
|
3792
|
+
/**
|
3793
|
+
* A description of the instance profile. Descriptions can have up to 31 characters. A description can contain only ASCII letters, digits, and hyphens ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter.
|
2999
3794
|
*/
|
3000
|
-
|
3795
|
+
Description?: String;
|
3001
3796
|
/**
|
3002
|
-
* The
|
3797
|
+
* The time the instance profile was created.
|
3003
3798
|
*/
|
3004
|
-
|
3799
|
+
InstanceProfileCreationTime?: Iso8601DateTime;
|
3005
3800
|
/**
|
3006
|
-
* The
|
3801
|
+
* The identifier of the subnet group that is associated with the instance profile.
|
3007
3802
|
*/
|
3008
|
-
|
3009
|
-
}
|
3010
|
-
export interface ImportCertificateResponse {
|
3803
|
+
SubnetGroupIdentifier?: String;
|
3011
3804
|
/**
|
3012
|
-
* The
|
3805
|
+
* The VPC security groups that are used with the instance profile. The VPC security group must work with the VPC containing the instance profile.
|
3013
3806
|
*/
|
3014
|
-
|
3807
|
+
VpcSecurityGroups?: StringList;
|
3015
3808
|
}
|
3016
|
-
export type
|
3017
|
-
export type IndividualAssessmentNameList = String[];
|
3809
|
+
export type InstanceProfileList = InstanceProfile[];
|
3018
3810
|
export type Integer = number;
|
3019
3811
|
export type IntegerList = Integer[];
|
3020
3812
|
export type IntegerOptional = number;
|
@@ -3028,6 +3820,7 @@ declare namespace DMS {
|
|
3028
3820
|
*/
|
3029
3821
|
NumberOfSchemas?: IntegerOptional;
|
3030
3822
|
}
|
3823
|
+
export type Iso8601DateTime = Date;
|
3031
3824
|
export type KafkaSaslMechanism = "scram-sha-512"|"plain"|string;
|
3032
3825
|
export type KafkaSecurityProtocol = "plaintext"|"ssl-authentication"|"ssl-encryption"|"sasl-ssl"|string;
|
3033
3826
|
export interface KafkaSettings {
|
@@ -3273,7 +4066,120 @@ declare namespace DMS {
|
|
3273
4066
|
*/
|
3274
4067
|
ForceLobLookup?: BooleanOptional;
|
3275
4068
|
}
|
4069
|
+
export interface MicrosoftSqlServerDataProviderSettings {
|
4070
|
+
/**
|
4071
|
+
* The name of the Microsoft SQL Server server.
|
4072
|
+
*/
|
4073
|
+
ServerName?: String;
|
4074
|
+
/**
|
4075
|
+
* The port value for the Microsoft SQL Server data provider.
|
4076
|
+
*/
|
4077
|
+
Port?: IntegerOptional;
|
4078
|
+
/**
|
4079
|
+
* The database name on the Microsoft SQL Server data provider.
|
4080
|
+
*/
|
4081
|
+
DatabaseName?: String;
|
4082
|
+
/**
|
4083
|
+
* The SSL mode used to connect to the Microsoft SQL Server data provider. The default value is none.
|
4084
|
+
*/
|
4085
|
+
SslMode?: DmsSslModeValue;
|
4086
|
+
/**
|
4087
|
+
* The Amazon Resource Name (ARN) of the certificate used for SSL connection.
|
4088
|
+
*/
|
4089
|
+
CertificateArn?: String;
|
4090
|
+
}
|
4091
|
+
export interface MigrationProject {
|
4092
|
+
/**
|
4093
|
+
* The name of the migration project.
|
4094
|
+
*/
|
4095
|
+
MigrationProjectName?: String;
|
4096
|
+
/**
|
4097
|
+
* The ARN string that uniquely identifies the migration project.
|
4098
|
+
*/
|
4099
|
+
MigrationProjectArn?: String;
|
4100
|
+
/**
|
4101
|
+
* The time when the migration project was created.
|
4102
|
+
*/
|
4103
|
+
MigrationProjectCreationTime?: Iso8601DateTime;
|
4104
|
+
/**
|
4105
|
+
* Information about the source data provider, including the name or ARN, and Secrets Manager parameters.
|
4106
|
+
*/
|
4107
|
+
SourceDataProviderDescriptors?: DataProviderDescriptorList;
|
4108
|
+
/**
|
4109
|
+
* Information about the target data provider, including the name or ARN, and Secrets Manager parameters.
|
4110
|
+
*/
|
4111
|
+
TargetDataProviderDescriptors?: DataProviderDescriptorList;
|
4112
|
+
/**
|
4113
|
+
* The Amazon Resource Name (ARN) of the instance profile for your migration project.
|
4114
|
+
*/
|
4115
|
+
InstanceProfileArn?: String;
|
4116
|
+
/**
|
4117
|
+
* The name of the associated instance profile.
|
4118
|
+
*/
|
4119
|
+
InstanceProfileName?: String;
|
4120
|
+
/**
|
4121
|
+
* The settings in JSON format for migration rules. Migration rules make it possible for you to change the object names according to the rules that you specify. For example, you can change an object name to lowercase or uppercase, add or remove a prefix or suffix, or rename objects.
|
4122
|
+
*/
|
4123
|
+
TransformationRules?: String;
|
4124
|
+
/**
|
4125
|
+
* A user-friendly description of the migration project.
|
4126
|
+
*/
|
4127
|
+
Description?: String;
|
4128
|
+
/**
|
4129
|
+
* The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.
|
4130
|
+
*/
|
4131
|
+
SchemaConversionApplicationAttributes?: SCApplicationAttributes;
|
4132
|
+
}
|
4133
|
+
export type MigrationProjectList = MigrationProject[];
|
3276
4134
|
export type MigrationTypeValue = "full-load"|"cdc"|"full-load-and-cdc"|string;
|
4135
|
+
export interface ModifyConversionConfigurationMessage {
|
4136
|
+
/**
|
4137
|
+
* The migration project name or Amazon Resource Name (ARN).
|
4138
|
+
*/
|
4139
|
+
MigrationProjectIdentifier: String;
|
4140
|
+
/**
|
4141
|
+
* The new conversion configuration.
|
4142
|
+
*/
|
4143
|
+
ConversionConfiguration: String;
|
4144
|
+
}
|
4145
|
+
export interface ModifyConversionConfigurationResponse {
|
4146
|
+
/**
|
4147
|
+
* The name or Amazon Resource Name (ARN) of the modified configuration.
|
4148
|
+
*/
|
4149
|
+
MigrationProjectIdentifier?: String;
|
4150
|
+
}
|
4151
|
+
export interface ModifyDataProviderMessage {
|
4152
|
+
/**
|
4153
|
+
* The identifier of the data provider. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
|
4154
|
+
*/
|
4155
|
+
DataProviderIdentifier: String;
|
4156
|
+
/**
|
4157
|
+
* The name of the data provider.
|
4158
|
+
*/
|
4159
|
+
DataProviderName?: String;
|
4160
|
+
/**
|
4161
|
+
* A user-friendly description of the data provider.
|
4162
|
+
*/
|
4163
|
+
Description?: String;
|
4164
|
+
/**
|
4165
|
+
* The type of database engine for the data provider. Valid values include "aurora", "aurora_postgresql", "mysql", "oracle", "postgres", and "sqlserver". A value of "aurora" represents Amazon Aurora MySQL-Compatible Edition.
|
4166
|
+
*/
|
4167
|
+
Engine?: String;
|
4168
|
+
/**
|
4169
|
+
* If this attribute is Y, the current call to ModifyDataProvider replaces all existing data provider settings with the exact settings that you specify in this call. If this attribute is N, the current call to ModifyDataProvider does two things: It replaces any data provider settings that already exist with new values, for settings with the same names. It creates new data provider settings that you specify in the call, for settings with different names.
|
4170
|
+
*/
|
4171
|
+
ExactSettings?: BooleanOptional;
|
4172
|
+
/**
|
4173
|
+
* The settings in JSON format for a data provider.
|
4174
|
+
*/
|
4175
|
+
Settings?: DataProviderSettings;
|
4176
|
+
}
|
4177
|
+
export interface ModifyDataProviderResponse {
|
4178
|
+
/**
|
4179
|
+
* The data provider that was modified.
|
4180
|
+
*/
|
4181
|
+
DataProvider?: DataProvider;
|
4182
|
+
}
|
3277
4183
|
export interface ModifyEndpointMessage {
|
3278
4184
|
/**
|
3279
4185
|
* The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.
|
@@ -3443,6 +4349,90 @@ declare namespace DMS {
|
|
3443
4349
|
*/
|
3444
4350
|
EventSubscription?: EventSubscription;
|
3445
4351
|
}
|
4352
|
+
export interface ModifyInstanceProfileMessage {
|
4353
|
+
/**
|
4354
|
+
* The identifier of the instance profile. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
|
4355
|
+
*/
|
4356
|
+
InstanceProfileIdentifier: String;
|
4357
|
+
/**
|
4358
|
+
* The Availability Zone where the instance profile runs.
|
4359
|
+
*/
|
4360
|
+
AvailabilityZone?: String;
|
4361
|
+
/**
|
4362
|
+
* The Amazon Resource Name (ARN) of the KMS key that is used to encrypt the connection parameters for the instance profile. If you don't specify a value for the KmsKeyArn parameter, then DMS uses your default encryption key. KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Region.
|
4363
|
+
*/
|
4364
|
+
KmsKeyArn?: String;
|
4365
|
+
/**
|
4366
|
+
* Specifies the accessibility options for the instance profile. A value of true represents an instance profile with a public IP address. A value of false represents an instance profile with a private IP address. The default value is true.
|
4367
|
+
*/
|
4368
|
+
PubliclyAccessible?: BooleanOptional;
|
4369
|
+
/**
|
4370
|
+
* Specifies the network type for the instance profile. A value of IPV4 represents an instance profile with IPv4 network type and only supports IPv4 addressing. A value of IPV6 represents an instance profile with IPv6 network type and only supports IPv6 addressing. A value of DUAL represents an instance profile with dual network type that supports IPv4 and IPv6 addressing.
|
4371
|
+
*/
|
4372
|
+
NetworkType?: String;
|
4373
|
+
/**
|
4374
|
+
* A user-friendly name for the instance profile.
|
4375
|
+
*/
|
4376
|
+
InstanceProfileName?: String;
|
4377
|
+
/**
|
4378
|
+
* A user-friendly description for the instance profile.
|
4379
|
+
*/
|
4380
|
+
Description?: String;
|
4381
|
+
/**
|
4382
|
+
* A subnet group to associate with the instance profile.
|
4383
|
+
*/
|
4384
|
+
SubnetGroupIdentifier?: String;
|
4385
|
+
/**
|
4386
|
+
* Specifies the VPC security groups to be used with the instance profile. The VPC security group must work with the VPC containing the instance profile.
|
4387
|
+
*/
|
4388
|
+
VpcSecurityGroups?: StringList;
|
4389
|
+
}
|
4390
|
+
export interface ModifyInstanceProfileResponse {
|
4391
|
+
/**
|
4392
|
+
* The instance profile that was modified.
|
4393
|
+
*/
|
4394
|
+
InstanceProfile?: InstanceProfile;
|
4395
|
+
}
|
4396
|
+
export interface ModifyMigrationProjectMessage {
|
4397
|
+
/**
|
4398
|
+
* The identifier of the migration project. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen, or contain two consecutive hyphens.
|
4399
|
+
*/
|
4400
|
+
MigrationProjectIdentifier: String;
|
4401
|
+
/**
|
4402
|
+
* A user-friendly name for the migration project.
|
4403
|
+
*/
|
4404
|
+
MigrationProjectName?: String;
|
4405
|
+
/**
|
4406
|
+
* Information about the source data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.
|
4407
|
+
*/
|
4408
|
+
SourceDataProviderDescriptors?: DataProviderDescriptorDefinitionList;
|
4409
|
+
/**
|
4410
|
+
* Information about the target data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.
|
4411
|
+
*/
|
4412
|
+
TargetDataProviderDescriptors?: DataProviderDescriptorDefinitionList;
|
4413
|
+
/**
|
4414
|
+
* The name or Amazon Resource Name (ARN) for the instance profile.
|
4415
|
+
*/
|
4416
|
+
InstanceProfileIdentifier?: String;
|
4417
|
+
/**
|
4418
|
+
* The settings in JSON format for migration rules. Migration rules make it possible for you to change the object names according to the rules that you specify. For example, you can change an object name to lowercase or uppercase, add or remove a prefix or suffix, or rename objects.
|
4419
|
+
*/
|
4420
|
+
TransformationRules?: String;
|
4421
|
+
/**
|
4422
|
+
* A user-friendly description of the migration project.
|
4423
|
+
*/
|
4424
|
+
Description?: String;
|
4425
|
+
/**
|
4426
|
+
* The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.
|
4427
|
+
*/
|
4428
|
+
SchemaConversionApplicationAttributes?: SCApplicationAttributes;
|
4429
|
+
}
|
4430
|
+
export interface ModifyMigrationProjectResponse {
|
4431
|
+
/**
|
4432
|
+
* The migration project that was modified.
|
4433
|
+
*/
|
4434
|
+
MigrationProject?: MigrationProject;
|
4435
|
+
}
|
3446
4436
|
export interface ModifyReplicationConfigMessage {
|
3447
4437
|
/**
|
3448
4438
|
* The Amazon Resource Name of the replication to modify.
|
@@ -3747,6 +4737,24 @@ declare namespace DMS {
|
|
3747
4737
|
*/
|
3748
4738
|
SecretsManagerSecretId?: String;
|
3749
4739
|
}
|
4740
|
+
export interface MySqlDataProviderSettings {
|
4741
|
+
/**
|
4742
|
+
* The name of the MySQL server.
|
4743
|
+
*/
|
4744
|
+
ServerName?: String;
|
4745
|
+
/**
|
4746
|
+
* The port value for the MySQL data provider.
|
4747
|
+
*/
|
4748
|
+
Port?: IntegerOptional;
|
4749
|
+
/**
|
4750
|
+
* The SSL mode used to connect to the MySQL data provider. The default value is none.
|
4751
|
+
*/
|
4752
|
+
SslMode?: DmsSslModeValue;
|
4753
|
+
/**
|
4754
|
+
* The Amazon Resource Name (ARN) of the certificate used for SSL connection.
|
4755
|
+
*/
|
4756
|
+
CertificateArn?: String;
|
4757
|
+
}
|
3750
4758
|
export interface NeptuneSettings {
|
3751
4759
|
/**
|
3752
4760
|
* The Amazon Resource Name (ARN) of the service role that you created for the Neptune target endpoint. The role must allow the iam:PassRole action. For more information, see Creating an IAM Service Role for Accessing Amazon Neptune as a Target in the Database Migration Service User Guide.
|
@@ -3778,6 +4786,48 @@ declare namespace DMS {
|
|
3778
4786
|
IamAuthEnabled?: BooleanOptional;
|
3779
4787
|
}
|
3780
4788
|
export type NestingLevelValue = "none"|"one"|string;
|
4789
|
+
export interface OracleDataProviderSettings {
|
4790
|
+
/**
|
4791
|
+
* The name of the Oracle server.
|
4792
|
+
*/
|
4793
|
+
ServerName?: String;
|
4794
|
+
/**
|
4795
|
+
* The port value for the Oracle data provider.
|
4796
|
+
*/
|
4797
|
+
Port?: IntegerOptional;
|
4798
|
+
/**
|
4799
|
+
* The database name on the Oracle data provider.
|
4800
|
+
*/
|
4801
|
+
DatabaseName?: String;
|
4802
|
+
/**
|
4803
|
+
* The SSL mode used to connect to the Oracle data provider. The default value is none.
|
4804
|
+
*/
|
4805
|
+
SslMode?: DmsSslModeValue;
|
4806
|
+
/**
|
4807
|
+
* The Amazon Resource Name (ARN) of the certificate used for SSL connection.
|
4808
|
+
*/
|
4809
|
+
CertificateArn?: String;
|
4810
|
+
/**
|
4811
|
+
* The address of your Oracle Automatic Storage Management (ASM) server. You can set this value from the asm_server value. You set asm_server as part of the extra connection attribute string to access an Oracle server with Binary Reader that uses ASM. For more information, see Configuration for change data capture (CDC) on an Oracle source database.
|
4812
|
+
*/
|
4813
|
+
AsmServer?: String;
|
4814
|
+
/**
|
4815
|
+
* The identifier of the secret in Secrets Manager that contains the Oracle ASM connection details. Required only if your data provider uses the Oracle ASM server.
|
4816
|
+
*/
|
4817
|
+
SecretsManagerOracleAsmSecretId?: String;
|
4818
|
+
/**
|
4819
|
+
* The ARN of the IAM role that provides access to the secret in Secrets Manager that contains the Oracle ASM connection details.
|
4820
|
+
*/
|
4821
|
+
SecretsManagerOracleAsmAccessRoleArn?: String;
|
4822
|
+
/**
|
4823
|
+
* The identifier of the secret in Secrets Manager that contains the transparent data encryption (TDE) password. DMS requires this password to access Oracle redo logs encrypted by TDE using Binary Reader.
|
4824
|
+
*/
|
4825
|
+
SecretsManagerSecurityDbEncryptionSecretId?: String;
|
4826
|
+
/**
|
4827
|
+
* The ARN of the IAM role that provides access to the secret in Secrets Manager that contains the TDE password.
|
4828
|
+
*/
|
4829
|
+
SecretsManagerSecurityDbEncryptionAccessRoleArn?: String;
|
4830
|
+
}
|
3781
4831
|
export interface OracleSettings {
|
3782
4832
|
/**
|
3783
4833
|
* Set this attribute to set up table-level supplemental logging for the Oracle database. This attribute enables PRIMARY KEY supplemental logging on all tables selected for a migration task. If you use this option, you still need to enable database-level supplemental logging.
|
@@ -3991,6 +5041,7 @@ declare namespace DMS {
|
|
3991
5041
|
ReleaseStatus?: ReleaseStatusValues;
|
3992
5042
|
}
|
3993
5043
|
export type OrderableReplicationInstanceList = OrderableReplicationInstance[];
|
5044
|
+
export type OriginTypeValue = "SOURCE"|"TARGET"|string;
|
3994
5045
|
export type ParquetVersionValue = "parquet-1-0"|"parquet-2-0"|string;
|
3995
5046
|
export interface PendingMaintenanceAction {
|
3996
5047
|
/**
|
@@ -4119,6 +5170,28 @@ declare namespace DMS {
|
|
4119
5170
|
*/
|
4120
5171
|
BabelfishDatabaseName?: String;
|
4121
5172
|
}
|
5173
|
+
export interface PostgreSqlDataProviderSettings {
|
5174
|
+
/**
|
5175
|
+
* The name of the PostgreSQL server.
|
5176
|
+
*/
|
5177
|
+
ServerName?: String;
|
5178
|
+
/**
|
5179
|
+
* The port value for the PostgreSQL data provider.
|
5180
|
+
*/
|
5181
|
+
Port?: IntegerOptional;
|
5182
|
+
/**
|
5183
|
+
* The database name on the PostgreSQL data provider.
|
5184
|
+
*/
|
5185
|
+
DatabaseName?: String;
|
5186
|
+
/**
|
5187
|
+
* The SSL mode used to connect to the PostgreSQL data provider. The default value is none.
|
5188
|
+
*/
|
5189
|
+
SslMode?: DmsSslModeValue;
|
5190
|
+
/**
|
5191
|
+
* The Amazon Resource Name (ARN) of the certificate used for SSL connection.
|
5192
|
+
*/
|
5193
|
+
CertificateArn?: String;
|
5194
|
+
}
|
4122
5195
|
export interface ProvisionData {
|
4123
5196
|
/**
|
4124
5197
|
* The current provisioning state
|
@@ -5306,7 +6379,34 @@ declare namespace DMS {
|
|
5306
6379
|
*/
|
5307
6380
|
GlueCatalogGeneration?: BooleanOptional;
|
5308
6381
|
}
|
6382
|
+
export interface SCApplicationAttributes {
|
6383
|
+
/**
|
6384
|
+
* The path for the Amazon S3 bucket that the application uses for exporting assessment reports.
|
6385
|
+
*/
|
6386
|
+
S3BucketPath?: String;
|
6387
|
+
/**
|
6388
|
+
* The ARN for the role the application uses to access its Amazon S3 bucket.
|
6389
|
+
*/
|
6390
|
+
S3BucketRoleArn?: String;
|
6391
|
+
}
|
5309
6392
|
export type SafeguardPolicy = "rely-on-sql-server-replication-agent"|"exclusive-automatic-truncation"|"shared-automatic-truncation"|string;
|
6393
|
+
export interface SchemaConversionRequest {
|
6394
|
+
/**
|
6395
|
+
* The schema conversion action status.
|
6396
|
+
*/
|
6397
|
+
Status?: String;
|
6398
|
+
/**
|
6399
|
+
* The identifier for the schema conversion action.
|
6400
|
+
*/
|
6401
|
+
RequestIdentifier?: String;
|
6402
|
+
/**
|
6403
|
+
* The migration project ARN.
|
6404
|
+
*/
|
6405
|
+
MigrationProjectArn?: String;
|
6406
|
+
Error?: ErrorDetails;
|
6407
|
+
ExportSqlDetails?: ExportSqlDetails;
|
6408
|
+
}
|
6409
|
+
export type SchemaConversionRequestList = SchemaConversionRequest[];
|
5310
6410
|
export type SchemaList = String[];
|
5311
6411
|
export interface SchemaResponse {
|
5312
6412
|
/**
|
@@ -5383,6 +6483,118 @@ declare namespace DMS {
|
|
5383
6483
|
export type SourceIdsList = String[];
|
5384
6484
|
export type SourceType = "replication-instance"|string;
|
5385
6485
|
export type SslSecurityProtocolValue = "plaintext"|"ssl-encryption"|string;
|
6486
|
+
export interface StartExtensionPackAssociationMessage {
|
6487
|
+
/**
|
6488
|
+
* The migration project name or Amazon Resource Name (ARN).
|
6489
|
+
*/
|
6490
|
+
MigrationProjectIdentifier: String;
|
6491
|
+
}
|
6492
|
+
export interface StartExtensionPackAssociationResponse {
|
6493
|
+
/**
|
6494
|
+
* The identifier for the request operation.
|
6495
|
+
*/
|
6496
|
+
RequestIdentifier?: String;
|
6497
|
+
}
|
6498
|
+
export interface StartMetadataModelAssessmentMessage {
|
6499
|
+
/**
|
6500
|
+
* The migration project name or Amazon Resource Name (ARN).
|
6501
|
+
*/
|
6502
|
+
MigrationProjectIdentifier: String;
|
6503
|
+
/**
|
6504
|
+
* A value that specifies the database objects to assess.
|
6505
|
+
*/
|
6506
|
+
SelectionRules: String;
|
6507
|
+
}
|
6508
|
+
export interface StartMetadataModelAssessmentResponse {
|
6509
|
+
/**
|
6510
|
+
* The identifier for the assessment operation.
|
6511
|
+
*/
|
6512
|
+
RequestIdentifier?: String;
|
6513
|
+
}
|
6514
|
+
export interface StartMetadataModelConversionMessage {
|
6515
|
+
/**
|
6516
|
+
* The migration project name or Amazon Resource Name (ARN).
|
6517
|
+
*/
|
6518
|
+
MigrationProjectIdentifier: String;
|
6519
|
+
/**
|
6520
|
+
* A value that specifies the database objects to convert.
|
6521
|
+
*/
|
6522
|
+
SelectionRules: String;
|
6523
|
+
}
|
6524
|
+
export interface StartMetadataModelConversionResponse {
|
6525
|
+
/**
|
6526
|
+
* The identifier for the conversion operation.
|
6527
|
+
*/
|
6528
|
+
RequestIdentifier?: String;
|
6529
|
+
}
|
6530
|
+
export interface StartMetadataModelExportAsScriptMessage {
|
6531
|
+
/**
|
6532
|
+
* The migration project name or Amazon Resource Name (ARN).
|
6533
|
+
*/
|
6534
|
+
MigrationProjectIdentifier: String;
|
6535
|
+
/**
|
6536
|
+
* A value that specifies the database objects to export.
|
6537
|
+
*/
|
6538
|
+
SelectionRules: String;
|
6539
|
+
/**
|
6540
|
+
* Whether to export the metadata model from the source or the target.
|
6541
|
+
*/
|
6542
|
+
Origin: OriginTypeValue;
|
6543
|
+
/**
|
6544
|
+
* The name of the model file to create in the Amazon S3 bucket.
|
6545
|
+
*/
|
6546
|
+
FileName?: String;
|
6547
|
+
}
|
6548
|
+
export interface StartMetadataModelExportAsScriptResponse {
|
6549
|
+
/**
|
6550
|
+
* The identifier for the export operation.
|
6551
|
+
*/
|
6552
|
+
RequestIdentifier?: String;
|
6553
|
+
}
|
6554
|
+
export interface StartMetadataModelExportToTargetMessage {
|
6555
|
+
/**
|
6556
|
+
* The migration project name or Amazon Resource Name (ARN).
|
6557
|
+
*/
|
6558
|
+
MigrationProjectIdentifier: String;
|
6559
|
+
/**
|
6560
|
+
* A value that specifies the database objects to export.
|
6561
|
+
*/
|
6562
|
+
SelectionRules: String;
|
6563
|
+
/**
|
6564
|
+
* Whether to overwrite the migration project extension pack. An extension pack is an add-on module that emulates functions present in a source database that are required when converting objects to the target database.
|
6565
|
+
*/
|
6566
|
+
OverwriteExtensionPack?: BooleanOptional;
|
6567
|
+
}
|
6568
|
+
export interface StartMetadataModelExportToTargetResponse {
|
6569
|
+
/**
|
6570
|
+
* The identifier for the export operation.
|
6571
|
+
*/
|
6572
|
+
RequestIdentifier?: String;
|
6573
|
+
}
|
6574
|
+
export interface StartMetadataModelImportMessage {
|
6575
|
+
/**
|
6576
|
+
* The migration project name or Amazon Resource Name (ARN).
|
6577
|
+
*/
|
6578
|
+
MigrationProjectIdentifier: String;
|
6579
|
+
/**
|
6580
|
+
* A value that specifies the database objects to import.
|
6581
|
+
*/
|
6582
|
+
SelectionRules: String;
|
6583
|
+
/**
|
6584
|
+
* Whether to load metadata to the source or target database.
|
6585
|
+
*/
|
6586
|
+
Origin: OriginTypeValue;
|
6587
|
+
/**
|
6588
|
+
* If true, DMS loads metadata for the specified objects from the source database.
|
6589
|
+
*/
|
6590
|
+
Refresh?: Boolean;
|
6591
|
+
}
|
6592
|
+
export interface StartMetadataModelImportResponse {
|
6593
|
+
/**
|
6594
|
+
* The identifier for the import operation.
|
6595
|
+
*/
|
6596
|
+
RequestIdentifier?: String;
|
6597
|
+
}
|
5386
6598
|
export interface StartRecommendationsRequest {
|
5387
6599
|
/**
|
5388
6600
|
* The identifier of the source database to analyze and provide recommendations for.
|