@aws-sdk/client-database-migration-service 3.668.0 → 3.669.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -0
- package/dist-cjs/index.js +549 -103
- package/dist-es/DatabaseMigrationService.js +12 -0
- package/dist-es/commands/CreateDataMigrationCommand.js +23 -0
- package/dist-es/commands/DeleteDataMigrationCommand.js +23 -0
- package/dist-es/commands/DescribeDataMigrationsCommand.js +23 -0
- package/dist-es/commands/ImportCertificateCommand.js +1 -1
- package/dist-es/commands/ModifyDataMigrationCommand.js +23 -0
- package/dist-es/commands/StartDataMigrationCommand.js +23 -0
- package/dist-es/commands/StopDataMigrationCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +87 -66
- package/dist-es/models/models_1.js +42 -1
- package/dist-es/pagination/DescribeDataMigrationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -1
- package/dist-es/protocols/Aws_json1_1.js +262 -9
- package/dist-types/DatabaseMigrationService.d.ts +43 -0
- package/dist-types/DatabaseMigrationServiceClient.d.ts +8 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
- package/dist-types/commands/CreateDataMigrationCommand.d.ts +146 -0
- package/dist-types/commands/CreateDataProviderCommand.d.ts +3 -0
- package/dist-types/commands/CreateInstanceProfileCommand.d.ts +3 -0
- package/dist-types/commands/CreateMigrationProjectCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDataMigrationCommand.d.ts +119 -0
- package/dist-types/commands/DeleteDataProviderCommand.d.ts +3 -0
- package/dist-types/commands/DeleteFleetAdvisorCollectorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFleetAdvisorDatabasesCommand.d.ts +4 -0
- package/dist-types/commands/DeleteInstanceProfileCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMigrationProjectCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDataMigrationsCommand.d.ts +133 -0
- package/dist-types/commands/DescribeDataProvidersCommand.d.ts +3 -0
- package/dist-types/commands/DescribeInstanceProfilesCommand.d.ts +3 -0
- package/dist-types/commands/DescribeMigrationProjectsCommand.d.ts +3 -0
- package/dist-types/commands/ExportMetadataModelAssessmentCommand.d.ts +1 -1
- package/dist-types/commands/ImportCertificateCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -1
- package/dist-types/commands/ModifyConversionConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDataMigrationCommand.d.ts +133 -0
- package/dist-types/commands/ModifyDataProviderCommand.d.ts +3 -0
- package/dist-types/commands/ModifyInstanceProfileCommand.d.ts +3 -0
- package/dist-types/commands/ModifyMigrationProjectCommand.d.ts +3 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartDataMigrationCommand.d.ts +126 -0
- package/dist-types/commands/StopDataMigrationCommand.d.ts +119 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +428 -244
- package/dist-types/models/models_1.d.ts +312 -1
- package/dist-types/pagination/DescribeDataMigrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
- package/dist-types/ts3.4/DatabaseMigrationService.d.ts +103 -0
- package/dist-types/ts3.4/DatabaseMigrationServiceClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeDataMigrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExportMetadataModelAssessmentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyConversionConfigurationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopDataMigrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +131 -89
- package/dist-types/ts3.4/models/models_1.d.ts +102 -0
- package/dist-types/ts3.4/pagination/DescribeDataMigrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/package.json +6 -6
|
@@ -11,6 +11,7 @@ import { AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput } from ".
|
|
|
11
11
|
import { ApplyPendingMaintenanceActionCommandInput, ApplyPendingMaintenanceActionCommandOutput } from "./commands/ApplyPendingMaintenanceActionCommand";
|
|
12
12
|
import { BatchStartRecommendationsCommandInput, BatchStartRecommendationsCommandOutput } from "./commands/BatchStartRecommendationsCommand";
|
|
13
13
|
import { CancelReplicationTaskAssessmentRunCommandInput, CancelReplicationTaskAssessmentRunCommandOutput } from "./commands/CancelReplicationTaskAssessmentRunCommand";
|
|
14
|
+
import { CreateDataMigrationCommandInput, CreateDataMigrationCommandOutput } from "./commands/CreateDataMigrationCommand";
|
|
14
15
|
import { CreateDataProviderCommandInput, CreateDataProviderCommandOutput } from "./commands/CreateDataProviderCommand";
|
|
15
16
|
import { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "./commands/CreateEndpointCommand";
|
|
16
17
|
import { CreateEventSubscriptionCommandInput, CreateEventSubscriptionCommandOutput } from "./commands/CreateEventSubscriptionCommand";
|
|
@@ -23,6 +24,7 @@ import { CreateReplicationSubnetGroupCommandInput, CreateReplicationSubnetGroupC
|
|
|
23
24
|
import { CreateReplicationTaskCommandInput, CreateReplicationTaskCommandOutput } from "./commands/CreateReplicationTaskCommand";
|
|
24
25
|
import { DeleteCertificateCommandInput, DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
|
|
25
26
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
|
|
27
|
+
import { DeleteDataMigrationCommandInput, DeleteDataMigrationCommandOutput } from "./commands/DeleteDataMigrationCommand";
|
|
26
28
|
import { DeleteDataProviderCommandInput, DeleteDataProviderCommandOutput } from "./commands/DeleteDataProviderCommand";
|
|
27
29
|
import { DeleteEndpointCommandInput, DeleteEndpointCommandOutput } from "./commands/DeleteEndpointCommand";
|
|
28
30
|
import { DeleteEventSubscriptionCommandInput, DeleteEventSubscriptionCommandOutput } from "./commands/DeleteEventSubscriptionCommand";
|
|
@@ -40,6 +42,7 @@ import { DescribeApplicableIndividualAssessmentsCommandInput, DescribeApplicable
|
|
|
40
42
|
import { DescribeCertificatesCommandInput, DescribeCertificatesCommandOutput } from "./commands/DescribeCertificatesCommand";
|
|
41
43
|
import { DescribeConnectionsCommandInput, DescribeConnectionsCommandOutput } from "./commands/DescribeConnectionsCommand";
|
|
42
44
|
import { DescribeConversionConfigurationCommandInput, DescribeConversionConfigurationCommandOutput } from "./commands/DescribeConversionConfigurationCommand";
|
|
45
|
+
import { DescribeDataMigrationsCommandInput, DescribeDataMigrationsCommandOutput } from "./commands/DescribeDataMigrationsCommand";
|
|
43
46
|
import { DescribeDataProvidersCommandInput, DescribeDataProvidersCommandOutput } from "./commands/DescribeDataProvidersCommand";
|
|
44
47
|
import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
|
|
45
48
|
import { DescribeEndpointSettingsCommandInput, DescribeEndpointSettingsCommandOutput } from "./commands/DescribeEndpointSettingsCommand";
|
|
@@ -82,6 +85,7 @@ import { ExportMetadataModelAssessmentCommandInput, ExportMetadataModelAssessmen
|
|
|
82
85
|
import { ImportCertificateCommandInput, ImportCertificateCommandOutput } from "./commands/ImportCertificateCommand";
|
|
83
86
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
84
87
|
import { ModifyConversionConfigurationCommandInput, ModifyConversionConfigurationCommandOutput } from "./commands/ModifyConversionConfigurationCommand";
|
|
88
|
+
import { ModifyDataMigrationCommandInput, ModifyDataMigrationCommandOutput } from "./commands/ModifyDataMigrationCommand";
|
|
85
89
|
import { ModifyDataProviderCommandInput, ModifyDataProviderCommandOutput } from "./commands/ModifyDataProviderCommand";
|
|
86
90
|
import { ModifyEndpointCommandInput, ModifyEndpointCommandOutput } from "./commands/ModifyEndpointCommand";
|
|
87
91
|
import { ModifyEventSubscriptionCommandInput, ModifyEventSubscriptionCommandOutput } from "./commands/ModifyEventSubscriptionCommand";
|
|
@@ -98,6 +102,7 @@ import { ReloadReplicationTablesCommandInput, ReloadReplicationTablesCommandOutp
|
|
|
98
102
|
import { ReloadTablesCommandInput, ReloadTablesCommandOutput } from "./commands/ReloadTablesCommand";
|
|
99
103
|
import { RemoveTagsFromResourceCommandInput, RemoveTagsFromResourceCommandOutput } from "./commands/RemoveTagsFromResourceCommand";
|
|
100
104
|
import { RunFleetAdvisorLsaAnalysisCommandInput, RunFleetAdvisorLsaAnalysisCommandOutput } from "./commands/RunFleetAdvisorLsaAnalysisCommand";
|
|
105
|
+
import { StartDataMigrationCommandInput, StartDataMigrationCommandOutput } from "./commands/StartDataMigrationCommand";
|
|
101
106
|
import { StartExtensionPackAssociationCommandInput, StartExtensionPackAssociationCommandOutput } from "./commands/StartExtensionPackAssociationCommand";
|
|
102
107
|
import { StartMetadataModelAssessmentCommandInput, StartMetadataModelAssessmentCommandOutput } from "./commands/StartMetadataModelAssessmentCommand";
|
|
103
108
|
import { StartMetadataModelConversionCommandInput, StartMetadataModelConversionCommandOutput } from "./commands/StartMetadataModelConversionCommand";
|
|
@@ -109,6 +114,7 @@ import { StartReplicationCommandInput, StartReplicationCommandOutput } from "./c
|
|
|
109
114
|
import { StartReplicationTaskAssessmentCommandInput, StartReplicationTaskAssessmentCommandOutput } from "./commands/StartReplicationTaskAssessmentCommand";
|
|
110
115
|
import { StartReplicationTaskAssessmentRunCommandInput, StartReplicationTaskAssessmentRunCommandOutput } from "./commands/StartReplicationTaskAssessmentRunCommand";
|
|
111
116
|
import { StartReplicationTaskCommandInput, StartReplicationTaskCommandOutput } from "./commands/StartReplicationTaskCommand";
|
|
117
|
+
import { StopDataMigrationCommandInput, StopDataMigrationCommandOutput } from "./commands/StopDataMigrationCommand";
|
|
112
118
|
import { StopReplicationCommandInput, StopReplicationCommandOutput } from "./commands/StopReplicationCommand";
|
|
113
119
|
import { StopReplicationTaskCommandInput, StopReplicationTaskCommandOutput } from "./commands/StopReplicationTaskCommand";
|
|
114
120
|
import { TestConnectionCommandInput, TestConnectionCommandOutput } from "./commands/TestConnectionCommand";
|
|
@@ -119,11 +125,11 @@ export { __Client };
|
|
|
119
125
|
/**
|
|
120
126
|
* @public
|
|
121
127
|
*/
|
|
122
|
-
export type ServiceInputTypes = AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | BatchStartRecommendationsCommandInput | CancelReplicationTaskAssessmentRunCommandInput | CreateDataProviderCommandInput | CreateEndpointCommandInput | CreateEventSubscriptionCommandInput | CreateFleetAdvisorCollectorCommandInput | CreateInstanceProfileCommandInput | CreateMigrationProjectCommandInput | CreateReplicationConfigCommandInput | CreateReplicationInstanceCommandInput | CreateReplicationSubnetGroupCommandInput | CreateReplicationTaskCommandInput | DeleteCertificateCommandInput | DeleteConnectionCommandInput | DeleteDataProviderCommandInput | DeleteEndpointCommandInput | DeleteEventSubscriptionCommandInput | DeleteFleetAdvisorCollectorCommandInput | DeleteFleetAdvisorDatabasesCommandInput | DeleteInstanceProfileCommandInput | DeleteMigrationProjectCommandInput | DeleteReplicationConfigCommandInput | DeleteReplicationInstanceCommandInput | DeleteReplicationSubnetGroupCommandInput | DeleteReplicationTaskAssessmentRunCommandInput | DeleteReplicationTaskCommandInput | DescribeAccountAttributesCommandInput | DescribeApplicableIndividualAssessmentsCommandInput | DescribeCertificatesCommandInput | DescribeConnectionsCommandInput | DescribeConversionConfigurationCommandInput | DescribeDataProvidersCommandInput | DescribeEndpointSettingsCommandInput | DescribeEndpointTypesCommandInput | DescribeEndpointsCommandInput | DescribeEngineVersionsCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExtensionPackAssociationsCommandInput | DescribeFleetAdvisorCollectorsCommandInput | DescribeFleetAdvisorDatabasesCommandInput | DescribeFleetAdvisorLsaAnalysisCommandInput | DescribeFleetAdvisorSchemaObjectSummaryCommandInput | DescribeFleetAdvisorSchemasCommandInput | DescribeInstanceProfilesCommandInput | DescribeMetadataModelAssessmentsCommandInput | DescribeMetadataModelConversionsCommandInput | DescribeMetadataModelExportsAsScriptCommandInput | DescribeMetadataModelExportsToTargetCommandInput | DescribeMetadataModelImportsCommandInput | DescribeMigrationProjectsCommandInput | DescribeOrderableReplicationInstancesCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeRecommendationLimitationsCommandInput | DescribeRecommendationsCommandInput | DescribeRefreshSchemasStatusCommandInput | DescribeReplicationConfigsCommandInput | DescribeReplicationInstanceTaskLogsCommandInput | DescribeReplicationInstancesCommandInput | DescribeReplicationSubnetGroupsCommandInput | DescribeReplicationTableStatisticsCommandInput | DescribeReplicationTaskAssessmentResultsCommandInput | DescribeReplicationTaskAssessmentRunsCommandInput | DescribeReplicationTaskIndividualAssessmentsCommandInput | DescribeReplicationTasksCommandInput | DescribeReplicationsCommandInput | DescribeSchemasCommandInput | DescribeTableStatisticsCommandInput | ExportMetadataModelAssessmentCommandInput | ImportCertificateCommandInput | ListTagsForResourceCommandInput | ModifyConversionConfigurationCommandInput | ModifyDataProviderCommandInput | ModifyEndpointCommandInput | ModifyEventSubscriptionCommandInput | ModifyInstanceProfileCommandInput | ModifyMigrationProjectCommandInput | ModifyReplicationConfigCommandInput | ModifyReplicationInstanceCommandInput | ModifyReplicationSubnetGroupCommandInput | ModifyReplicationTaskCommandInput | MoveReplicationTaskCommandInput | RebootReplicationInstanceCommandInput | RefreshSchemasCommandInput | ReloadReplicationTablesCommandInput | ReloadTablesCommandInput | RemoveTagsFromResourceCommandInput | RunFleetAdvisorLsaAnalysisCommandInput | StartExtensionPackAssociationCommandInput | StartMetadataModelAssessmentCommandInput | StartMetadataModelConversionCommandInput | StartMetadataModelExportAsScriptCommandInput | StartMetadataModelExportToTargetCommandInput | StartMetadataModelImportCommandInput | StartRecommendationsCommandInput | StartReplicationCommandInput | StartReplicationTaskAssessmentCommandInput | StartReplicationTaskAssessmentRunCommandInput | StartReplicationTaskCommandInput | StopReplicationCommandInput | StopReplicationTaskCommandInput | TestConnectionCommandInput | UpdateSubscriptionsToEventBridgeCommandInput;
|
|
128
|
+
export type ServiceInputTypes = AddTagsToResourceCommandInput | ApplyPendingMaintenanceActionCommandInput | BatchStartRecommendationsCommandInput | CancelReplicationTaskAssessmentRunCommandInput | CreateDataMigrationCommandInput | CreateDataProviderCommandInput | CreateEndpointCommandInput | CreateEventSubscriptionCommandInput | CreateFleetAdvisorCollectorCommandInput | CreateInstanceProfileCommandInput | CreateMigrationProjectCommandInput | CreateReplicationConfigCommandInput | CreateReplicationInstanceCommandInput | CreateReplicationSubnetGroupCommandInput | CreateReplicationTaskCommandInput | DeleteCertificateCommandInput | DeleteConnectionCommandInput | DeleteDataMigrationCommandInput | DeleteDataProviderCommandInput | DeleteEndpointCommandInput | DeleteEventSubscriptionCommandInput | DeleteFleetAdvisorCollectorCommandInput | DeleteFleetAdvisorDatabasesCommandInput | DeleteInstanceProfileCommandInput | DeleteMigrationProjectCommandInput | DeleteReplicationConfigCommandInput | DeleteReplicationInstanceCommandInput | DeleteReplicationSubnetGroupCommandInput | DeleteReplicationTaskAssessmentRunCommandInput | DeleteReplicationTaskCommandInput | DescribeAccountAttributesCommandInput | DescribeApplicableIndividualAssessmentsCommandInput | DescribeCertificatesCommandInput | DescribeConnectionsCommandInput | DescribeConversionConfigurationCommandInput | DescribeDataMigrationsCommandInput | DescribeDataProvidersCommandInput | DescribeEndpointSettingsCommandInput | DescribeEndpointTypesCommandInput | DescribeEndpointsCommandInput | DescribeEngineVersionsCommandInput | DescribeEventCategoriesCommandInput | DescribeEventSubscriptionsCommandInput | DescribeEventsCommandInput | DescribeExtensionPackAssociationsCommandInput | DescribeFleetAdvisorCollectorsCommandInput | DescribeFleetAdvisorDatabasesCommandInput | DescribeFleetAdvisorLsaAnalysisCommandInput | DescribeFleetAdvisorSchemaObjectSummaryCommandInput | DescribeFleetAdvisorSchemasCommandInput | DescribeInstanceProfilesCommandInput | DescribeMetadataModelAssessmentsCommandInput | DescribeMetadataModelConversionsCommandInput | DescribeMetadataModelExportsAsScriptCommandInput | DescribeMetadataModelExportsToTargetCommandInput | DescribeMetadataModelImportsCommandInput | DescribeMigrationProjectsCommandInput | DescribeOrderableReplicationInstancesCommandInput | DescribePendingMaintenanceActionsCommandInput | DescribeRecommendationLimitationsCommandInput | DescribeRecommendationsCommandInput | DescribeRefreshSchemasStatusCommandInput | DescribeReplicationConfigsCommandInput | DescribeReplicationInstanceTaskLogsCommandInput | DescribeReplicationInstancesCommandInput | DescribeReplicationSubnetGroupsCommandInput | DescribeReplicationTableStatisticsCommandInput | DescribeReplicationTaskAssessmentResultsCommandInput | DescribeReplicationTaskAssessmentRunsCommandInput | DescribeReplicationTaskIndividualAssessmentsCommandInput | DescribeReplicationTasksCommandInput | DescribeReplicationsCommandInput | DescribeSchemasCommandInput | DescribeTableStatisticsCommandInput | ExportMetadataModelAssessmentCommandInput | ImportCertificateCommandInput | ListTagsForResourceCommandInput | ModifyConversionConfigurationCommandInput | ModifyDataMigrationCommandInput | ModifyDataProviderCommandInput | ModifyEndpointCommandInput | ModifyEventSubscriptionCommandInput | ModifyInstanceProfileCommandInput | ModifyMigrationProjectCommandInput | ModifyReplicationConfigCommandInput | ModifyReplicationInstanceCommandInput | ModifyReplicationSubnetGroupCommandInput | ModifyReplicationTaskCommandInput | MoveReplicationTaskCommandInput | RebootReplicationInstanceCommandInput | RefreshSchemasCommandInput | ReloadReplicationTablesCommandInput | ReloadTablesCommandInput | RemoveTagsFromResourceCommandInput | RunFleetAdvisorLsaAnalysisCommandInput | StartDataMigrationCommandInput | StartExtensionPackAssociationCommandInput | StartMetadataModelAssessmentCommandInput | StartMetadataModelConversionCommandInput | StartMetadataModelExportAsScriptCommandInput | StartMetadataModelExportToTargetCommandInput | StartMetadataModelImportCommandInput | StartRecommendationsCommandInput | StartReplicationCommandInput | StartReplicationTaskAssessmentCommandInput | StartReplicationTaskAssessmentRunCommandInput | StartReplicationTaskCommandInput | StopDataMigrationCommandInput | StopReplicationCommandInput | StopReplicationTaskCommandInput | TestConnectionCommandInput | UpdateSubscriptionsToEventBridgeCommandInput;
|
|
123
129
|
/**
|
|
124
130
|
* @public
|
|
125
131
|
*/
|
|
126
|
-
export type ServiceOutputTypes = AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | BatchStartRecommendationsCommandOutput | CancelReplicationTaskAssessmentRunCommandOutput | CreateDataProviderCommandOutput | CreateEndpointCommandOutput | CreateEventSubscriptionCommandOutput | CreateFleetAdvisorCollectorCommandOutput | CreateInstanceProfileCommandOutput | CreateMigrationProjectCommandOutput | CreateReplicationConfigCommandOutput | CreateReplicationInstanceCommandOutput | CreateReplicationSubnetGroupCommandOutput | CreateReplicationTaskCommandOutput | DeleteCertificateCommandOutput | DeleteConnectionCommandOutput | DeleteDataProviderCommandOutput | DeleteEndpointCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteFleetAdvisorCollectorCommandOutput | DeleteFleetAdvisorDatabasesCommandOutput | DeleteInstanceProfileCommandOutput | DeleteMigrationProjectCommandOutput | DeleteReplicationConfigCommandOutput | DeleteReplicationInstanceCommandOutput | DeleteReplicationSubnetGroupCommandOutput | DeleteReplicationTaskAssessmentRunCommandOutput | DeleteReplicationTaskCommandOutput | DescribeAccountAttributesCommandOutput | DescribeApplicableIndividualAssessmentsCommandOutput | DescribeCertificatesCommandOutput | DescribeConnectionsCommandOutput | DescribeConversionConfigurationCommandOutput | DescribeDataProvidersCommandOutput | DescribeEndpointSettingsCommandOutput | DescribeEndpointTypesCommandOutput | DescribeEndpointsCommandOutput | DescribeEngineVersionsCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExtensionPackAssociationsCommandOutput | DescribeFleetAdvisorCollectorsCommandOutput | DescribeFleetAdvisorDatabasesCommandOutput | DescribeFleetAdvisorLsaAnalysisCommandOutput | DescribeFleetAdvisorSchemaObjectSummaryCommandOutput | DescribeFleetAdvisorSchemasCommandOutput | DescribeInstanceProfilesCommandOutput | DescribeMetadataModelAssessmentsCommandOutput | DescribeMetadataModelConversionsCommandOutput | DescribeMetadataModelExportsAsScriptCommandOutput | DescribeMetadataModelExportsToTargetCommandOutput | DescribeMetadataModelImportsCommandOutput | DescribeMigrationProjectsCommandOutput | DescribeOrderableReplicationInstancesCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeRecommendationLimitationsCommandOutput | DescribeRecommendationsCommandOutput | DescribeRefreshSchemasStatusCommandOutput | DescribeReplicationConfigsCommandOutput | DescribeReplicationInstanceTaskLogsCommandOutput | DescribeReplicationInstancesCommandOutput | DescribeReplicationSubnetGroupsCommandOutput | DescribeReplicationTableStatisticsCommandOutput | DescribeReplicationTaskAssessmentResultsCommandOutput | DescribeReplicationTaskAssessmentRunsCommandOutput | DescribeReplicationTaskIndividualAssessmentsCommandOutput | DescribeReplicationTasksCommandOutput | DescribeReplicationsCommandOutput | DescribeSchemasCommandOutput | DescribeTableStatisticsCommandOutput | ExportMetadataModelAssessmentCommandOutput | ImportCertificateCommandOutput | ListTagsForResourceCommandOutput | ModifyConversionConfigurationCommandOutput | ModifyDataProviderCommandOutput | ModifyEndpointCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyInstanceProfileCommandOutput | ModifyMigrationProjectCommandOutput | ModifyReplicationConfigCommandOutput | ModifyReplicationInstanceCommandOutput | ModifyReplicationSubnetGroupCommandOutput | ModifyReplicationTaskCommandOutput | MoveReplicationTaskCommandOutput | RebootReplicationInstanceCommandOutput | RefreshSchemasCommandOutput | ReloadReplicationTablesCommandOutput | ReloadTablesCommandOutput | RemoveTagsFromResourceCommandOutput | RunFleetAdvisorLsaAnalysisCommandOutput | StartExtensionPackAssociationCommandOutput | StartMetadataModelAssessmentCommandOutput | StartMetadataModelConversionCommandOutput | StartMetadataModelExportAsScriptCommandOutput | StartMetadataModelExportToTargetCommandOutput | StartMetadataModelImportCommandOutput | StartRecommendationsCommandOutput | StartReplicationCommandOutput | StartReplicationTaskAssessmentCommandOutput | StartReplicationTaskAssessmentRunCommandOutput | StartReplicationTaskCommandOutput | StopReplicationCommandOutput | StopReplicationTaskCommandOutput | TestConnectionCommandOutput | UpdateSubscriptionsToEventBridgeCommandOutput;
|
|
132
|
+
export type ServiceOutputTypes = AddTagsToResourceCommandOutput | ApplyPendingMaintenanceActionCommandOutput | BatchStartRecommendationsCommandOutput | CancelReplicationTaskAssessmentRunCommandOutput | CreateDataMigrationCommandOutput | CreateDataProviderCommandOutput | CreateEndpointCommandOutput | CreateEventSubscriptionCommandOutput | CreateFleetAdvisorCollectorCommandOutput | CreateInstanceProfileCommandOutput | CreateMigrationProjectCommandOutput | CreateReplicationConfigCommandOutput | CreateReplicationInstanceCommandOutput | CreateReplicationSubnetGroupCommandOutput | CreateReplicationTaskCommandOutput | DeleteCertificateCommandOutput | DeleteConnectionCommandOutput | DeleteDataMigrationCommandOutput | DeleteDataProviderCommandOutput | DeleteEndpointCommandOutput | DeleteEventSubscriptionCommandOutput | DeleteFleetAdvisorCollectorCommandOutput | DeleteFleetAdvisorDatabasesCommandOutput | DeleteInstanceProfileCommandOutput | DeleteMigrationProjectCommandOutput | DeleteReplicationConfigCommandOutput | DeleteReplicationInstanceCommandOutput | DeleteReplicationSubnetGroupCommandOutput | DeleteReplicationTaskAssessmentRunCommandOutput | DeleteReplicationTaskCommandOutput | DescribeAccountAttributesCommandOutput | DescribeApplicableIndividualAssessmentsCommandOutput | DescribeCertificatesCommandOutput | DescribeConnectionsCommandOutput | DescribeConversionConfigurationCommandOutput | DescribeDataMigrationsCommandOutput | DescribeDataProvidersCommandOutput | DescribeEndpointSettingsCommandOutput | DescribeEndpointTypesCommandOutput | DescribeEndpointsCommandOutput | DescribeEngineVersionsCommandOutput | DescribeEventCategoriesCommandOutput | DescribeEventSubscriptionsCommandOutput | DescribeEventsCommandOutput | DescribeExtensionPackAssociationsCommandOutput | DescribeFleetAdvisorCollectorsCommandOutput | DescribeFleetAdvisorDatabasesCommandOutput | DescribeFleetAdvisorLsaAnalysisCommandOutput | DescribeFleetAdvisorSchemaObjectSummaryCommandOutput | DescribeFleetAdvisorSchemasCommandOutput | DescribeInstanceProfilesCommandOutput | DescribeMetadataModelAssessmentsCommandOutput | DescribeMetadataModelConversionsCommandOutput | DescribeMetadataModelExportsAsScriptCommandOutput | DescribeMetadataModelExportsToTargetCommandOutput | DescribeMetadataModelImportsCommandOutput | DescribeMigrationProjectsCommandOutput | DescribeOrderableReplicationInstancesCommandOutput | DescribePendingMaintenanceActionsCommandOutput | DescribeRecommendationLimitationsCommandOutput | DescribeRecommendationsCommandOutput | DescribeRefreshSchemasStatusCommandOutput | DescribeReplicationConfigsCommandOutput | DescribeReplicationInstanceTaskLogsCommandOutput | DescribeReplicationInstancesCommandOutput | DescribeReplicationSubnetGroupsCommandOutput | DescribeReplicationTableStatisticsCommandOutput | DescribeReplicationTaskAssessmentResultsCommandOutput | DescribeReplicationTaskAssessmentRunsCommandOutput | DescribeReplicationTaskIndividualAssessmentsCommandOutput | DescribeReplicationTasksCommandOutput | DescribeReplicationsCommandOutput | DescribeSchemasCommandOutput | DescribeTableStatisticsCommandOutput | ExportMetadataModelAssessmentCommandOutput | ImportCertificateCommandOutput | ListTagsForResourceCommandOutput | ModifyConversionConfigurationCommandOutput | ModifyDataMigrationCommandOutput | ModifyDataProviderCommandOutput | ModifyEndpointCommandOutput | ModifyEventSubscriptionCommandOutput | ModifyInstanceProfileCommandOutput | ModifyMigrationProjectCommandOutput | ModifyReplicationConfigCommandOutput | ModifyReplicationInstanceCommandOutput | ModifyReplicationSubnetGroupCommandOutput | ModifyReplicationTaskCommandOutput | MoveReplicationTaskCommandOutput | RebootReplicationInstanceCommandOutput | RefreshSchemasCommandOutput | ReloadReplicationTablesCommandOutput | ReloadTablesCommandOutput | RemoveTagsFromResourceCommandOutput | RunFleetAdvisorLsaAnalysisCommandOutput | StartDataMigrationCommandOutput | StartExtensionPackAssociationCommandOutput | StartMetadataModelAssessmentCommandOutput | StartMetadataModelConversionCommandOutput | StartMetadataModelExportAsScriptCommandOutput | StartMetadataModelExportToTargetCommandOutput | StartMetadataModelImportCommandOutput | StartRecommendationsCommandOutput | StartReplicationCommandOutput | StartReplicationTaskAssessmentCommandOutput | StartReplicationTaskAssessmentRunCommandOutput | StartReplicationTaskCommandOutput | StopDataMigrationCommandOutput | StopReplicationCommandOutput | StopReplicationTaskCommandOutput | TestConnectionCommandOutput | UpdateSubscriptionsToEventBridgeCommandOutput;
|
|
127
133
|
/**
|
|
128
134
|
* @public
|
|
129
135
|
*/
|
|
@@ -61,6 +61,9 @@ declare const AddTagsToResourceCommand_base: {
|
|
|
61
61
|
* @see {@link AddTagsToResourceCommandOutput} for command's `response` shape.
|
|
62
62
|
* @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
|
|
63
63
|
*
|
|
64
|
+
* @throws {@link InvalidResourceStateFault} (client fault)
|
|
65
|
+
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
66
|
+
*
|
|
64
67
|
* @throws {@link ResourceNotFoundFault} (client fault)
|
|
65
68
|
* <p>The resource could not be found.</p>
|
|
66
69
|
*
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DatabaseMigrationServiceClient";
|
|
4
|
+
import { CreateDataMigrationMessage, CreateDataMigrationResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateDataMigrationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateDataMigrationCommandInput extends CreateDataMigrationMessage {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateDataMigrationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateDataMigrationCommandOutput extends CreateDataMigrationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateDataMigrationCommand_base: {
|
|
25
|
+
new (input: CreateDataMigrationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataMigrationCommandInput, CreateDataMigrationCommandOutput, DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateDataMigrationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataMigrationCommandInput, CreateDataMigrationCommandOutput, DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a data migration using the provided settings.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DatabaseMigrationServiceClient, CreateDataMigrationCommand } from "@aws-sdk/client-database-migration-service"; // ES Modules import
|
|
35
|
+
* // const { DatabaseMigrationServiceClient, CreateDataMigrationCommand } = require("@aws-sdk/client-database-migration-service"); // CommonJS import
|
|
36
|
+
* const client = new DatabaseMigrationServiceClient(config);
|
|
37
|
+
* const input = { // CreateDataMigrationMessage
|
|
38
|
+
* DataMigrationName: "STRING_VALUE",
|
|
39
|
+
* MigrationProjectIdentifier: "STRING_VALUE", // required
|
|
40
|
+
* DataMigrationType: "full-load" || "cdc" || "full-load-and-cdc", // required
|
|
41
|
+
* ServiceAccessRoleArn: "STRING_VALUE", // required
|
|
42
|
+
* EnableCloudwatchLogs: true || false,
|
|
43
|
+
* SourceDataSettings: [ // SourceDataSettings
|
|
44
|
+
* { // SourceDataSetting
|
|
45
|
+
* CDCStartPosition: "STRING_VALUE",
|
|
46
|
+
* CDCStartTime: new Date("TIMESTAMP"),
|
|
47
|
+
* CDCStopTime: new Date("TIMESTAMP"),
|
|
48
|
+
* SlotName: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* NumberOfJobs: Number("int"),
|
|
52
|
+
* Tags: [ // TagList
|
|
53
|
+
* { // Tag
|
|
54
|
+
* Key: "STRING_VALUE",
|
|
55
|
+
* Value: "STRING_VALUE",
|
|
56
|
+
* ResourceArn: "STRING_VALUE",
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* SelectionRules: "STRING_VALUE",
|
|
60
|
+
* };
|
|
61
|
+
* const command = new CreateDataMigrationCommand(input);
|
|
62
|
+
* const response = await client.send(command);
|
|
63
|
+
* // { // CreateDataMigrationResponse
|
|
64
|
+
* // DataMigration: { // DataMigration
|
|
65
|
+
* // DataMigrationName: "STRING_VALUE",
|
|
66
|
+
* // DataMigrationArn: "STRING_VALUE",
|
|
67
|
+
* // DataMigrationCreateTime: new Date("TIMESTAMP"),
|
|
68
|
+
* // DataMigrationStartTime: new Date("TIMESTAMP"),
|
|
69
|
+
* // DataMigrationEndTime: new Date("TIMESTAMP"),
|
|
70
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
71
|
+
* // MigrationProjectArn: "STRING_VALUE",
|
|
72
|
+
* // DataMigrationType: "full-load" || "cdc" || "full-load-and-cdc",
|
|
73
|
+
* // DataMigrationSettings: { // DataMigrationSettings
|
|
74
|
+
* // NumberOfJobs: Number("int"),
|
|
75
|
+
* // CloudwatchLogsEnabled: true || false,
|
|
76
|
+
* // SelectionRules: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // SourceDataSettings: [ // SourceDataSettings
|
|
79
|
+
* // { // SourceDataSetting
|
|
80
|
+
* // CDCStartPosition: "STRING_VALUE",
|
|
81
|
+
* // CDCStartTime: new Date("TIMESTAMP"),
|
|
82
|
+
* // CDCStopTime: new Date("TIMESTAMP"),
|
|
83
|
+
* // SlotName: "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // DataMigrationStatistics: { // DataMigrationStatistics
|
|
87
|
+
* // TablesLoaded: Number("int"),
|
|
88
|
+
* // ElapsedTimeMillis: Number("long"),
|
|
89
|
+
* // TablesLoading: Number("int"),
|
|
90
|
+
* // FullLoadPercentage: Number("int"),
|
|
91
|
+
* // CDCLatency: Number("int"),
|
|
92
|
+
* // TablesQueued: Number("int"),
|
|
93
|
+
* // TablesErrored: Number("int"),
|
|
94
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
95
|
+
* // StopTime: new Date("TIMESTAMP"),
|
|
96
|
+
* // },
|
|
97
|
+
* // DataMigrationStatus: "STRING_VALUE",
|
|
98
|
+
* // PublicIpAddresses: [ // PublicIpAddressList
|
|
99
|
+
* // "STRING_VALUE",
|
|
100
|
+
* // ],
|
|
101
|
+
* // LastFailureMessage: "STRING_VALUE",
|
|
102
|
+
* // StopReason: "STRING_VALUE",
|
|
103
|
+
* // },
|
|
104
|
+
* // };
|
|
105
|
+
*
|
|
106
|
+
* ```
|
|
107
|
+
*
|
|
108
|
+
* @param CreateDataMigrationCommandInput - {@link CreateDataMigrationCommandInput}
|
|
109
|
+
* @returns {@link CreateDataMigrationCommandOutput}
|
|
110
|
+
* @see {@link CreateDataMigrationCommandInput} for command's `input` shape.
|
|
111
|
+
* @see {@link CreateDataMigrationCommandOutput} for command's `response` shape.
|
|
112
|
+
* @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
115
|
+
* <p>A dependency threw an exception.</p>
|
|
116
|
+
*
|
|
117
|
+
* @throws {@link InvalidOperationFault} (client fault)
|
|
118
|
+
* <p>The action or operation requested isn't valid.</p>
|
|
119
|
+
*
|
|
120
|
+
* @throws {@link ResourceAlreadyExistsFault} (client fault)
|
|
121
|
+
* <p>The resource you are attempting to create already exists.</p>
|
|
122
|
+
*
|
|
123
|
+
* @throws {@link ResourceNotFoundFault} (client fault)
|
|
124
|
+
* <p>The resource could not be found.</p>
|
|
125
|
+
*
|
|
126
|
+
* @throws {@link ResourceQuotaExceededFault} (client fault)
|
|
127
|
+
* <p>The quota for this resource quota has been exceeded.</p>
|
|
128
|
+
*
|
|
129
|
+
* @throws {@link DatabaseMigrationServiceServiceException}
|
|
130
|
+
* <p>Base exception class for all service exceptions from DatabaseMigrationService service.</p>
|
|
131
|
+
*
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export declare class CreateDataMigrationCommand extends CreateDataMigrationCommand_base {
|
|
135
|
+
/** @internal type navigation helper, not in runtime. */
|
|
136
|
+
protected static __types: {
|
|
137
|
+
api: {
|
|
138
|
+
input: CreateDataMigrationMessage;
|
|
139
|
+
output: CreateDataMigrationResponse;
|
|
140
|
+
};
|
|
141
|
+
sdk: {
|
|
142
|
+
input: CreateDataMigrationCommandInput;
|
|
143
|
+
output: CreateDataMigrationCommandOutput;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
}
|
|
@@ -195,6 +195,9 @@ declare const CreateDataProviderCommand_base: {
|
|
|
195
195
|
* <p>DMS was denied access to the endpoint. Check that the
|
|
196
196
|
* role is correctly configured.</p>
|
|
197
197
|
*
|
|
198
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
199
|
+
* <p>A dependency threw an exception.</p>
|
|
200
|
+
*
|
|
198
201
|
* @throws {@link ResourceAlreadyExistsFault} (client fault)
|
|
199
202
|
* <p>The resource you are attempting to create already exists.</p>
|
|
200
203
|
*
|
|
@@ -84,6 +84,9 @@ declare const CreateInstanceProfileCommand_base: {
|
|
|
84
84
|
* <p>DMS was denied access to the endpoint. Check that the
|
|
85
85
|
* role is correctly configured.</p>
|
|
86
86
|
*
|
|
87
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
88
|
+
* <p>A dependency threw an exception.</p>
|
|
89
|
+
*
|
|
87
90
|
* @throws {@link InvalidResourceStateFault} (client fault)
|
|
88
91
|
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
89
92
|
*
|
|
@@ -113,6 +113,9 @@ declare const CreateMigrationProjectCommand_base: {
|
|
|
113
113
|
* <p>DMS was denied access to the endpoint. Check that the
|
|
114
114
|
* role is correctly configured.</p>
|
|
115
115
|
*
|
|
116
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
117
|
+
* <p>A dependency threw an exception.</p>
|
|
118
|
+
*
|
|
116
119
|
* @throws {@link ResourceAlreadyExistsFault} (client fault)
|
|
117
120
|
* <p>The resource you are attempting to create already exists.</p>
|
|
118
121
|
*
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DatabaseMigrationServiceClient";
|
|
4
|
+
import { DeleteDataMigrationMessage, DeleteDataMigrationResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteDataMigrationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteDataMigrationCommandInput extends DeleteDataMigrationMessage {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteDataMigrationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteDataMigrationCommandOutput extends DeleteDataMigrationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteDataMigrationCommand_base: {
|
|
25
|
+
new (input: DeleteDataMigrationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDataMigrationCommandInput, DeleteDataMigrationCommandOutput, DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteDataMigrationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDataMigrationCommandInput, DeleteDataMigrationCommandOutput, DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes the specified data migration.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DatabaseMigrationServiceClient, DeleteDataMigrationCommand } from "@aws-sdk/client-database-migration-service"; // ES Modules import
|
|
35
|
+
* // const { DatabaseMigrationServiceClient, DeleteDataMigrationCommand } = require("@aws-sdk/client-database-migration-service"); // CommonJS import
|
|
36
|
+
* const client = new DatabaseMigrationServiceClient(config);
|
|
37
|
+
* const input = { // DeleteDataMigrationMessage
|
|
38
|
+
* DataMigrationIdentifier: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DeleteDataMigrationCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // DeleteDataMigrationResponse
|
|
43
|
+
* // DataMigration: { // DataMigration
|
|
44
|
+
* // DataMigrationName: "STRING_VALUE",
|
|
45
|
+
* // DataMigrationArn: "STRING_VALUE",
|
|
46
|
+
* // DataMigrationCreateTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // DataMigrationStartTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // DataMigrationEndTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
50
|
+
* // MigrationProjectArn: "STRING_VALUE",
|
|
51
|
+
* // DataMigrationType: "full-load" || "cdc" || "full-load-and-cdc",
|
|
52
|
+
* // DataMigrationSettings: { // DataMigrationSettings
|
|
53
|
+
* // NumberOfJobs: Number("int"),
|
|
54
|
+
* // CloudwatchLogsEnabled: true || false,
|
|
55
|
+
* // SelectionRules: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // SourceDataSettings: [ // SourceDataSettings
|
|
58
|
+
* // { // SourceDataSetting
|
|
59
|
+
* // CDCStartPosition: "STRING_VALUE",
|
|
60
|
+
* // CDCStartTime: new Date("TIMESTAMP"),
|
|
61
|
+
* // CDCStopTime: new Date("TIMESTAMP"),
|
|
62
|
+
* // SlotName: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // DataMigrationStatistics: { // DataMigrationStatistics
|
|
66
|
+
* // TablesLoaded: Number("int"),
|
|
67
|
+
* // ElapsedTimeMillis: Number("long"),
|
|
68
|
+
* // TablesLoading: Number("int"),
|
|
69
|
+
* // FullLoadPercentage: Number("int"),
|
|
70
|
+
* // CDCLatency: Number("int"),
|
|
71
|
+
* // TablesQueued: Number("int"),
|
|
72
|
+
* // TablesErrored: Number("int"),
|
|
73
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
74
|
+
* // StopTime: new Date("TIMESTAMP"),
|
|
75
|
+
* // },
|
|
76
|
+
* // DataMigrationStatus: "STRING_VALUE",
|
|
77
|
+
* // PublicIpAddresses: [ // PublicIpAddressList
|
|
78
|
+
* // "STRING_VALUE",
|
|
79
|
+
* // ],
|
|
80
|
+
* // LastFailureMessage: "STRING_VALUE",
|
|
81
|
+
* // StopReason: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* @param DeleteDataMigrationCommandInput - {@link DeleteDataMigrationCommandInput}
|
|
88
|
+
* @returns {@link DeleteDataMigrationCommandOutput}
|
|
89
|
+
* @see {@link DeleteDataMigrationCommandInput} for command's `input` shape.
|
|
90
|
+
* @see {@link DeleteDataMigrationCommandOutput} for command's `response` shape.
|
|
91
|
+
* @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
94
|
+
* <p>A dependency threw an exception.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link InvalidResourceStateFault} (client fault)
|
|
97
|
+
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ResourceNotFoundFault} (client fault)
|
|
100
|
+
* <p>The resource could not be found.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link DatabaseMigrationServiceServiceException}
|
|
103
|
+
* <p>Base exception class for all service exceptions from DatabaseMigrationService service.</p>
|
|
104
|
+
*
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
export declare class DeleteDataMigrationCommand extends DeleteDataMigrationCommand_base {
|
|
108
|
+
/** @internal type navigation helper, not in runtime. */
|
|
109
|
+
protected static __types: {
|
|
110
|
+
api: {
|
|
111
|
+
input: DeleteDataMigrationMessage;
|
|
112
|
+
output: DeleteDataMigrationResponse;
|
|
113
|
+
};
|
|
114
|
+
sdk: {
|
|
115
|
+
input: DeleteDataMigrationCommandInput;
|
|
116
|
+
output: DeleteDataMigrationCommandOutput;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
}
|
|
@@ -127,6 +127,9 @@ declare const DeleteDataProviderCommand_base: {
|
|
|
127
127
|
* <p>DMS was denied access to the endpoint. Check that the
|
|
128
128
|
* role is correctly configured.</p>
|
|
129
129
|
*
|
|
130
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
131
|
+
* <p>A dependency threw an exception.</p>
|
|
132
|
+
*
|
|
130
133
|
* @throws {@link InvalidResourceStateFault} (client fault)
|
|
131
134
|
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
132
135
|
*
|
|
@@ -49,6 +49,10 @@ declare const DeleteFleetAdvisorCollectorCommand_base: {
|
|
|
49
49
|
* @see {@link DeleteFleetAdvisorCollectorCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link AccessDeniedFault} (client fault)
|
|
53
|
+
* <p>DMS was denied access to the endpoint. Check that the
|
|
54
|
+
* role is correctly configured.</p>
|
|
55
|
+
*
|
|
52
56
|
* @throws {@link CollectorNotFoundFault} (client fault)
|
|
53
57
|
* <p>The specified collector doesn't exist.</p>
|
|
54
58
|
*
|
|
@@ -55,6 +55,10 @@ declare const DeleteFleetAdvisorDatabasesCommand_base: {
|
|
|
55
55
|
* @see {@link DeleteFleetAdvisorDatabasesCommandOutput} for command's `response` shape.
|
|
56
56
|
* @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
|
|
57
57
|
*
|
|
58
|
+
* @throws {@link AccessDeniedFault} (client fault)
|
|
59
|
+
* <p>DMS was denied access to the endpoint. Check that the
|
|
60
|
+
* role is correctly configured.</p>
|
|
61
|
+
*
|
|
58
62
|
* @throws {@link InvalidOperationFault} (client fault)
|
|
59
63
|
* <p>The action or operation requested isn't valid.</p>
|
|
60
64
|
*
|
|
@@ -72,6 +72,9 @@ declare const DeleteInstanceProfileCommand_base: {
|
|
|
72
72
|
* <p>DMS was denied access to the endpoint. Check that the
|
|
73
73
|
* role is correctly configured.</p>
|
|
74
74
|
*
|
|
75
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
76
|
+
* <p>A dependency threw an exception.</p>
|
|
77
|
+
*
|
|
75
78
|
* @throws {@link InvalidResourceStateFault} (client fault)
|
|
76
79
|
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
77
80
|
*
|
|
@@ -86,6 +86,9 @@ declare const DeleteMigrationProjectCommand_base: {
|
|
|
86
86
|
* <p>DMS was denied access to the endpoint. Check that the
|
|
87
87
|
* role is correctly configured.</p>
|
|
88
88
|
*
|
|
89
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
90
|
+
* <p>A dependency threw an exception.</p>
|
|
91
|
+
*
|
|
89
92
|
* @throws {@link InvalidResourceStateFault} (client fault)
|
|
90
93
|
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
91
94
|
*
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DatabaseMigrationServiceClient";
|
|
4
|
+
import { DescribeDataMigrationsMessage, DescribeDataMigrationsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeDataMigrationsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeDataMigrationsCommandInput extends DescribeDataMigrationsMessage {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeDataMigrationsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeDataMigrationsCommandOutput extends DescribeDataMigrationsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeDataMigrationsCommand_base: {
|
|
25
|
+
new (input: DescribeDataMigrationsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDataMigrationsCommandInput, DescribeDataMigrationsCommandOutput, DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [DescribeDataMigrationsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeDataMigrationsCommandInput, DescribeDataMigrationsCommandOutput, DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns information about data migrations.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DatabaseMigrationServiceClient, DescribeDataMigrationsCommand } from "@aws-sdk/client-database-migration-service"; // ES Modules import
|
|
35
|
+
* // const { DatabaseMigrationServiceClient, DescribeDataMigrationsCommand } = require("@aws-sdk/client-database-migration-service"); // CommonJS import
|
|
36
|
+
* const client = new DatabaseMigrationServiceClient(config);
|
|
37
|
+
* const input = { // DescribeDataMigrationsMessage
|
|
38
|
+
* Filters: [ // FilterList
|
|
39
|
+
* { // Filter
|
|
40
|
+
* Name: "STRING_VALUE", // required
|
|
41
|
+
* Values: [ // FilterValueList // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* MaxRecords: Number("int"),
|
|
47
|
+
* Marker: "STRING_VALUE",
|
|
48
|
+
* WithoutSettings: true || false,
|
|
49
|
+
* WithoutStatistics: true || false,
|
|
50
|
+
* };
|
|
51
|
+
* const command = new DescribeDataMigrationsCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // { // DescribeDataMigrationsResponse
|
|
54
|
+
* // DataMigrations: [ // DataMigrations
|
|
55
|
+
* // { // DataMigration
|
|
56
|
+
* // DataMigrationName: "STRING_VALUE",
|
|
57
|
+
* // DataMigrationArn: "STRING_VALUE",
|
|
58
|
+
* // DataMigrationCreateTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // DataMigrationStartTime: new Date("TIMESTAMP"),
|
|
60
|
+
* // DataMigrationEndTime: new Date("TIMESTAMP"),
|
|
61
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
62
|
+
* // MigrationProjectArn: "STRING_VALUE",
|
|
63
|
+
* // DataMigrationType: "full-load" || "cdc" || "full-load-and-cdc",
|
|
64
|
+
* // DataMigrationSettings: { // DataMigrationSettings
|
|
65
|
+
* // NumberOfJobs: Number("int"),
|
|
66
|
+
* // CloudwatchLogsEnabled: true || false,
|
|
67
|
+
* // SelectionRules: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // SourceDataSettings: [ // SourceDataSettings
|
|
70
|
+
* // { // SourceDataSetting
|
|
71
|
+
* // CDCStartPosition: "STRING_VALUE",
|
|
72
|
+
* // CDCStartTime: new Date("TIMESTAMP"),
|
|
73
|
+
* // CDCStopTime: new Date("TIMESTAMP"),
|
|
74
|
+
* // SlotName: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // ],
|
|
77
|
+
* // DataMigrationStatistics: { // DataMigrationStatistics
|
|
78
|
+
* // TablesLoaded: Number("int"),
|
|
79
|
+
* // ElapsedTimeMillis: Number("long"),
|
|
80
|
+
* // TablesLoading: Number("int"),
|
|
81
|
+
* // FullLoadPercentage: Number("int"),
|
|
82
|
+
* // CDCLatency: Number("int"),
|
|
83
|
+
* // TablesQueued: Number("int"),
|
|
84
|
+
* // TablesErrored: Number("int"),
|
|
85
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
86
|
+
* // StopTime: new Date("TIMESTAMP"),
|
|
87
|
+
* // },
|
|
88
|
+
* // DataMigrationStatus: "STRING_VALUE",
|
|
89
|
+
* // PublicIpAddresses: [ // PublicIpAddressList
|
|
90
|
+
* // "STRING_VALUE",
|
|
91
|
+
* // ],
|
|
92
|
+
* // LastFailureMessage: "STRING_VALUE",
|
|
93
|
+
* // StopReason: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // ],
|
|
96
|
+
* // Marker: "STRING_VALUE",
|
|
97
|
+
* // };
|
|
98
|
+
*
|
|
99
|
+
* ```
|
|
100
|
+
*
|
|
101
|
+
* @param DescribeDataMigrationsCommandInput - {@link DescribeDataMigrationsCommandInput}
|
|
102
|
+
* @returns {@link DescribeDataMigrationsCommandOutput}
|
|
103
|
+
* @see {@link DescribeDataMigrationsCommandInput} for command's `input` shape.
|
|
104
|
+
* @see {@link DescribeDataMigrationsCommandOutput} for command's `response` shape.
|
|
105
|
+
* @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
108
|
+
* <p>A dependency threw an exception.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link InvalidResourceStateFault} (client fault)
|
|
111
|
+
* <p>The resource is in a state that prevents it from being used for database migration.</p>
|
|
112
|
+
*
|
|
113
|
+
* @throws {@link ResourceNotFoundFault} (client fault)
|
|
114
|
+
* <p>The resource could not be found.</p>
|
|
115
|
+
*
|
|
116
|
+
* @throws {@link DatabaseMigrationServiceServiceException}
|
|
117
|
+
* <p>Base exception class for all service exceptions from DatabaseMigrationService service.</p>
|
|
118
|
+
*
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
export declare class DescribeDataMigrationsCommand extends DescribeDataMigrationsCommand_base {
|
|
122
|
+
/** @internal type navigation helper, not in runtime. */
|
|
123
|
+
protected static __types: {
|
|
124
|
+
api: {
|
|
125
|
+
input: DescribeDataMigrationsMessage;
|
|
126
|
+
output: DescribeDataMigrationsResponse;
|
|
127
|
+
};
|
|
128
|
+
sdk: {
|
|
129
|
+
input: DescribeDataMigrationsCommandInput;
|
|
130
|
+
output: DescribeDataMigrationsCommandOutput;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
}
|
|
@@ -135,6 +135,9 @@ declare const DescribeDataProvidersCommand_base: {
|
|
|
135
135
|
* <p>DMS was denied access to the endpoint. Check that the
|
|
136
136
|
* role is correctly configured.</p>
|
|
137
137
|
*
|
|
138
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
139
|
+
* <p>A dependency threw an exception.</p>
|
|
140
|
+
*
|
|
138
141
|
* @throws {@link ResourceNotFoundFault} (client fault)
|
|
139
142
|
* <p>The resource could not be found.</p>
|
|
140
143
|
*
|
|
@@ -80,6 +80,9 @@ declare const DescribeInstanceProfilesCommand_base: {
|
|
|
80
80
|
* <p>DMS was denied access to the endpoint. Check that the
|
|
81
81
|
* role is correctly configured.</p>
|
|
82
82
|
*
|
|
83
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
84
|
+
* <p>A dependency threw an exception.</p>
|
|
85
|
+
*
|
|
83
86
|
* @throws {@link ResourceNotFoundFault} (client fault)
|
|
84
87
|
* <p>The resource could not be found.</p>
|
|
85
88
|
*
|
|
@@ -95,6 +95,9 @@ declare const DescribeMigrationProjectsCommand_base: {
|
|
|
95
95
|
* <p>DMS was denied access to the endpoint. Check that the
|
|
96
96
|
* role is correctly configured.</p>
|
|
97
97
|
*
|
|
98
|
+
* @throws {@link FailedDependencyFault} (client fault)
|
|
99
|
+
* <p>A dependency threw an exception.</p>
|
|
100
|
+
*
|
|
98
101
|
* @throws {@link ResourceNotFoundFault} (client fault)
|
|
99
102
|
* <p>The resource could not be found.</p>
|
|
100
103
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DatabaseMigrationServiceClient";
|
|
4
|
-
import { ExportMetadataModelAssessmentMessage, ExportMetadataModelAssessmentResponse } from "../models/
|
|
4
|
+
import { ExportMetadataModelAssessmentMessage, ExportMetadataModelAssessmentResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|