@aws-sdk/client-database-migration-service 3.312.0 → 3.316.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/dist-cjs/DatabaseMigrationService.js +73 -966
- package/dist-cjs/protocols/Aws_json1_1.js +643 -3226
- package/dist-es/DatabaseMigrationService.js +73 -966
- package/dist-es/protocols/Aws_json1_1.js +644 -3227
- package/dist-types/DatabaseMigrationService.d.ts +85 -332
- package/dist-types/ts3.4/DatabaseMigrationService.d.ts +4 -1
- package/package.json +6 -6
|
@@ -69,681 +69,434 @@ import { StopReplicationTaskCommandInput, StopReplicationTaskCommandOutput } fro
|
|
|
69
69
|
import { TestConnectionCommandInput, TestConnectionCommandOutput } from "./commands/TestConnectionCommand";
|
|
70
70
|
import { UpdateSubscriptionsToEventBridgeCommandInput, UpdateSubscriptionsToEventBridgeCommandOutput } from "./commands/UpdateSubscriptionsToEventBridgeCommand";
|
|
71
71
|
import { DatabaseMigrationServiceClient } from "./DatabaseMigrationServiceClient";
|
|
72
|
-
|
|
73
|
-
* @public
|
|
74
|
-
* <fullname>Database Migration Service</fullname>
|
|
75
|
-
* <p>Database Migration Service (DMS) can migrate your data to and from the most
|
|
76
|
-
* widely used commercial and open-source databases such as Oracle, PostgreSQL, Microsoft SQL
|
|
77
|
-
* Server, Amazon Redshift, MariaDB, Amazon Aurora, MySQL, and SAP Adaptive Server Enterprise
|
|
78
|
-
* (ASE). The service supports homogeneous migrations such as Oracle to Oracle, as well as
|
|
79
|
-
* heterogeneous migrations between different database platforms, such as Oracle to MySQL or
|
|
80
|
-
* SQL Server to PostgreSQL.</p>
|
|
81
|
-
* <p>For more information about DMS, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/Welcome.html">What Is Database Migration Service?</a>
|
|
82
|
-
* in the <i>Database Migration Service User Guide.</i>
|
|
83
|
-
* </p>
|
|
84
|
-
*/
|
|
85
|
-
export declare class DatabaseMigrationService extends DatabaseMigrationServiceClient {
|
|
72
|
+
export interface DatabaseMigrationService {
|
|
86
73
|
/**
|
|
87
|
-
* @
|
|
88
|
-
* <p>Adds metadata tags to an DMS resource, including replication instance, endpoint,
|
|
89
|
-
* subnet group, and migration task. These tags can also be used with cost allocation
|
|
90
|
-
* reporting to track cost associated with DMS resources, or used in a Condition statement in
|
|
91
|
-
* an IAM policy for DMS. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html">
|
|
92
|
-
* <code>Tag</code>
|
|
93
|
-
* </a> data type description.</p>
|
|
74
|
+
* @see {@link AddTagsToResourceCommand}
|
|
94
75
|
*/
|
|
95
76
|
addTagsToResource(args: AddTagsToResourceCommandInput, options?: __HttpHandlerOptions): Promise<AddTagsToResourceCommandOutput>;
|
|
96
77
|
addTagsToResource(args: AddTagsToResourceCommandInput, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
|
|
97
78
|
addTagsToResource(args: AddTagsToResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsToResourceCommandOutput) => void): void;
|
|
98
79
|
/**
|
|
99
|
-
* @
|
|
100
|
-
* <p>Applies a pending maintenance action to a resource (for example, to a replication instance).</p>
|
|
80
|
+
* @see {@link ApplyPendingMaintenanceActionCommand}
|
|
101
81
|
*/
|
|
102
82
|
applyPendingMaintenanceAction(args: ApplyPendingMaintenanceActionCommandInput, options?: __HttpHandlerOptions): Promise<ApplyPendingMaintenanceActionCommandOutput>;
|
|
103
83
|
applyPendingMaintenanceAction(args: ApplyPendingMaintenanceActionCommandInput, cb: (err: any, data?: ApplyPendingMaintenanceActionCommandOutput) => void): void;
|
|
104
84
|
applyPendingMaintenanceAction(args: ApplyPendingMaintenanceActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ApplyPendingMaintenanceActionCommandOutput) => void): void;
|
|
105
85
|
/**
|
|
106
|
-
* @
|
|
107
|
-
* <p>Starts the analysis of up to 20 source databases to recommend target engines for each
|
|
108
|
-
* source database. This is a batch version of <a href="https://docs.aws.amazon.com/dms/latest/APIReference/API_StartRecommendations.html">StartRecommendations</a>.</p>
|
|
109
|
-
* <p>The result of analysis of each source database is reported individually in the
|
|
110
|
-
* response. Because the batch request can result in a combination of successful and
|
|
111
|
-
* unsuccessful actions, you should check for batch errors even when the call returns an
|
|
112
|
-
* HTTP status code of <code>200</code>.</p>
|
|
86
|
+
* @see {@link BatchStartRecommendationsCommand}
|
|
113
87
|
*/
|
|
114
88
|
batchStartRecommendations(args: BatchStartRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<BatchStartRecommendationsCommandOutput>;
|
|
115
89
|
batchStartRecommendations(args: BatchStartRecommendationsCommandInput, cb: (err: any, data?: BatchStartRecommendationsCommandOutput) => void): void;
|
|
116
90
|
batchStartRecommendations(args: BatchStartRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchStartRecommendationsCommandOutput) => void): void;
|
|
117
91
|
/**
|
|
118
|
-
* @
|
|
119
|
-
* <p>Cancels a single premigration assessment run.</p>
|
|
120
|
-
* <p>This operation prevents any individual assessments from running if they haven't started
|
|
121
|
-
* running. It also attempts to cancel any individual assessments that are currently
|
|
122
|
-
* running.</p>
|
|
92
|
+
* @see {@link CancelReplicationTaskAssessmentRunCommand}
|
|
123
93
|
*/
|
|
124
94
|
cancelReplicationTaskAssessmentRun(args: CancelReplicationTaskAssessmentRunCommandInput, options?: __HttpHandlerOptions): Promise<CancelReplicationTaskAssessmentRunCommandOutput>;
|
|
125
95
|
cancelReplicationTaskAssessmentRun(args: CancelReplicationTaskAssessmentRunCommandInput, cb: (err: any, data?: CancelReplicationTaskAssessmentRunCommandOutput) => void): void;
|
|
126
96
|
cancelReplicationTaskAssessmentRun(args: CancelReplicationTaskAssessmentRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelReplicationTaskAssessmentRunCommandOutput) => void): void;
|
|
127
97
|
/**
|
|
128
|
-
* @
|
|
129
|
-
* <p>Creates an endpoint using the provided settings.</p>
|
|
130
|
-
* <note>
|
|
131
|
-
* <p>For a MySQL source or target endpoint, don't explicitly specify the database using
|
|
132
|
-
* the <code>DatabaseName</code> request parameter on the <code>CreateEndpoint</code> API call.
|
|
133
|
-
* Specifying <code>DatabaseName</code> when you create a MySQL endpoint replicates all the
|
|
134
|
-
* task tables to this single database. For MySQL endpoints, you specify the database only when
|
|
135
|
-
* you specify the schema in the table-mapping rules of the DMS task.</p>
|
|
136
|
-
* </note>
|
|
98
|
+
* @see {@link CreateEndpointCommand}
|
|
137
99
|
*/
|
|
138
100
|
createEndpoint(args: CreateEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateEndpointCommandOutput>;
|
|
139
101
|
createEndpoint(args: CreateEndpointCommandInput, cb: (err: any, data?: CreateEndpointCommandOutput) => void): void;
|
|
140
102
|
createEndpoint(args: CreateEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEndpointCommandOutput) => void): void;
|
|
141
103
|
/**
|
|
142
|
-
* @
|
|
143
|
-
* <p> Creates an DMS event notification subscription. </p>
|
|
144
|
-
* <p>You can specify the type of source (<code>SourceType</code>) you want to be notified of,
|
|
145
|
-
* provide a list of DMS source IDs (<code>SourceIds</code>) that triggers the events, and
|
|
146
|
-
* provide a list of event categories (<code>EventCategories</code>) for events you want to be
|
|
147
|
-
* notified of. If you specify both the <code>SourceType</code> and <code>SourceIds</code>,
|
|
148
|
-
* such as <code>SourceType = replication-instance</code> and <code>SourceIdentifier =
|
|
149
|
-
* my-replinstance</code>, you will be notified of all the replication instance events for
|
|
150
|
-
* the specified source. If you specify a <code>SourceType</code> but don't specify a
|
|
151
|
-
* <code>SourceIdentifier</code>, you receive notice of the events for that source type for
|
|
152
|
-
* all your DMS sources. If you don't specify either <code>SourceType</code> nor
|
|
153
|
-
* <code>SourceIdentifier</code>, you will be notified of events generated from all DMS
|
|
154
|
-
* sources belonging to your customer account.</p>
|
|
155
|
-
* <p>For more information about DMS events, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html">Working with Events and
|
|
156
|
-
* Notifications</a> in the <i>Database Migration Service User
|
|
157
|
-
* Guide.</i>
|
|
158
|
-
* </p>
|
|
104
|
+
* @see {@link CreateEventSubscriptionCommand}
|
|
159
105
|
*/
|
|
160
106
|
createEventSubscription(args: CreateEventSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<CreateEventSubscriptionCommandOutput>;
|
|
161
107
|
createEventSubscription(args: CreateEventSubscriptionCommandInput, cb: (err: any, data?: CreateEventSubscriptionCommandOutput) => void): void;
|
|
162
108
|
createEventSubscription(args: CreateEventSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEventSubscriptionCommandOutput) => void): void;
|
|
163
109
|
/**
|
|
164
|
-
* @
|
|
165
|
-
* <p>Creates a Fleet Advisor collector using the specified parameters.</p>
|
|
110
|
+
* @see {@link CreateFleetAdvisorCollectorCommand}
|
|
166
111
|
*/
|
|
167
112
|
createFleetAdvisorCollector(args: CreateFleetAdvisorCollectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateFleetAdvisorCollectorCommandOutput>;
|
|
168
113
|
createFleetAdvisorCollector(args: CreateFleetAdvisorCollectorCommandInput, cb: (err: any, data?: CreateFleetAdvisorCollectorCommandOutput) => void): void;
|
|
169
114
|
createFleetAdvisorCollector(args: CreateFleetAdvisorCollectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFleetAdvisorCollectorCommandOutput) => void): void;
|
|
170
115
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* <p>Creates the replication instance using the specified parameters.</p>
|
|
173
|
-
* <p>DMS requires that your account have certain roles with appropriate permissions
|
|
174
|
-
* before you can create a replication instance. For information on the required roles, see
|
|
175
|
-
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.APIRole">Creating the IAM Roles to Use With the CLI and DMS API</a>. For
|
|
176
|
-
* information on the required permissions, see
|
|
177
|
-
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.IAMPermissions">IAM Permissions Needed to Use DMS</a>.</p>
|
|
116
|
+
* @see {@link CreateReplicationInstanceCommand}
|
|
178
117
|
*/
|
|
179
118
|
createReplicationInstance(args: CreateReplicationInstanceCommandInput, options?: __HttpHandlerOptions): Promise<CreateReplicationInstanceCommandOutput>;
|
|
180
119
|
createReplicationInstance(args: CreateReplicationInstanceCommandInput, cb: (err: any, data?: CreateReplicationInstanceCommandOutput) => void): void;
|
|
181
120
|
createReplicationInstance(args: CreateReplicationInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReplicationInstanceCommandOutput) => void): void;
|
|
182
121
|
/**
|
|
183
|
-
* @
|
|
184
|
-
* <p>Creates a replication subnet group given a list of the subnet IDs in a VPC.</p>
|
|
185
|
-
* <p>The VPC needs to have at least one subnet in at least two availability zones in the Amazon Web Services Region, otherwise the
|
|
186
|
-
* service will throw a <code>ReplicationSubnetGroupDoesNotCoverEnoughAZs</code> exception.</p>
|
|
122
|
+
* @see {@link CreateReplicationSubnetGroupCommand}
|
|
187
123
|
*/
|
|
188
124
|
createReplicationSubnetGroup(args: CreateReplicationSubnetGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateReplicationSubnetGroupCommandOutput>;
|
|
189
125
|
createReplicationSubnetGroup(args: CreateReplicationSubnetGroupCommandInput, cb: (err: any, data?: CreateReplicationSubnetGroupCommandOutput) => void): void;
|
|
190
126
|
createReplicationSubnetGroup(args: CreateReplicationSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReplicationSubnetGroupCommandOutput) => void): void;
|
|
191
127
|
/**
|
|
192
|
-
* @
|
|
193
|
-
* <p>Creates a replication task using the specified parameters.</p>
|
|
128
|
+
* @see {@link CreateReplicationTaskCommand}
|
|
194
129
|
*/
|
|
195
130
|
createReplicationTask(args: CreateReplicationTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateReplicationTaskCommandOutput>;
|
|
196
131
|
createReplicationTask(args: CreateReplicationTaskCommandInput, cb: (err: any, data?: CreateReplicationTaskCommandOutput) => void): void;
|
|
197
132
|
createReplicationTask(args: CreateReplicationTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReplicationTaskCommandOutput) => void): void;
|
|
198
133
|
/**
|
|
199
|
-
* @
|
|
200
|
-
* <p>Deletes the specified certificate. </p>
|
|
134
|
+
* @see {@link DeleteCertificateCommand}
|
|
201
135
|
*/
|
|
202
136
|
deleteCertificate(args: DeleteCertificateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCertificateCommandOutput>;
|
|
203
137
|
deleteCertificate(args: DeleteCertificateCommandInput, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
|
|
204
138
|
deleteCertificate(args: DeleteCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCertificateCommandOutput) => void): void;
|
|
205
139
|
/**
|
|
206
|
-
* @
|
|
207
|
-
* <p>Deletes the connection between a replication instance and an endpoint.</p>
|
|
140
|
+
* @see {@link DeleteConnectionCommand}
|
|
208
141
|
*/
|
|
209
142
|
deleteConnection(args: DeleteConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectionCommandOutput>;
|
|
210
143
|
deleteConnection(args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
211
144
|
deleteConnection(args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
212
145
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* <p>Deletes the specified endpoint.</p>
|
|
215
|
-
* <note>
|
|
216
|
-
* <p>All tasks associated with the endpoint must be deleted before you can delete the
|
|
217
|
-
* endpoint.</p>
|
|
218
|
-
* </note>
|
|
219
|
-
* <p></p>
|
|
146
|
+
* @see {@link DeleteEndpointCommand}
|
|
220
147
|
*/
|
|
221
148
|
deleteEndpoint(args: DeleteEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEndpointCommandOutput>;
|
|
222
149
|
deleteEndpoint(args: DeleteEndpointCommandInput, cb: (err: any, data?: DeleteEndpointCommandOutput) => void): void;
|
|
223
150
|
deleteEndpoint(args: DeleteEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEndpointCommandOutput) => void): void;
|
|
224
151
|
/**
|
|
225
|
-
* @
|
|
226
|
-
* <p> Deletes an DMS event subscription. </p>
|
|
152
|
+
* @see {@link DeleteEventSubscriptionCommand}
|
|
227
153
|
*/
|
|
228
154
|
deleteEventSubscription(args: DeleteEventSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEventSubscriptionCommandOutput>;
|
|
229
155
|
deleteEventSubscription(args: DeleteEventSubscriptionCommandInput, cb: (err: any, data?: DeleteEventSubscriptionCommandOutput) => void): void;
|
|
230
156
|
deleteEventSubscription(args: DeleteEventSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEventSubscriptionCommandOutput) => void): void;
|
|
231
157
|
/**
|
|
232
|
-
* @
|
|
233
|
-
* <p>Deletes the specified Fleet Advisor collector.</p>
|
|
158
|
+
* @see {@link DeleteFleetAdvisorCollectorCommand}
|
|
234
159
|
*/
|
|
235
160
|
deleteFleetAdvisorCollector(args: DeleteFleetAdvisorCollectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFleetAdvisorCollectorCommandOutput>;
|
|
236
161
|
deleteFleetAdvisorCollector(args: DeleteFleetAdvisorCollectorCommandInput, cb: (err: any, data?: DeleteFleetAdvisorCollectorCommandOutput) => void): void;
|
|
237
162
|
deleteFleetAdvisorCollector(args: DeleteFleetAdvisorCollectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFleetAdvisorCollectorCommandOutput) => void): void;
|
|
238
163
|
/**
|
|
239
|
-
* @
|
|
240
|
-
* <p>Deletes the specified Fleet Advisor collector databases.</p>
|
|
164
|
+
* @see {@link DeleteFleetAdvisorDatabasesCommand}
|
|
241
165
|
*/
|
|
242
166
|
deleteFleetAdvisorDatabases(args: DeleteFleetAdvisorDatabasesCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFleetAdvisorDatabasesCommandOutput>;
|
|
243
167
|
deleteFleetAdvisorDatabases(args: DeleteFleetAdvisorDatabasesCommandInput, cb: (err: any, data?: DeleteFleetAdvisorDatabasesCommandOutput) => void): void;
|
|
244
168
|
deleteFleetAdvisorDatabases(args: DeleteFleetAdvisorDatabasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFleetAdvisorDatabasesCommandOutput) => void): void;
|
|
245
169
|
/**
|
|
246
|
-
* @
|
|
247
|
-
* <p>Deletes the specified replication instance.</p>
|
|
248
|
-
* <note>
|
|
249
|
-
* <p>You must delete any migration tasks that are associated with the replication instance
|
|
250
|
-
* before you can delete it.</p>
|
|
251
|
-
* </note>
|
|
252
|
-
* <p></p>
|
|
170
|
+
* @see {@link DeleteReplicationInstanceCommand}
|
|
253
171
|
*/
|
|
254
172
|
deleteReplicationInstance(args: DeleteReplicationInstanceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReplicationInstanceCommandOutput>;
|
|
255
173
|
deleteReplicationInstance(args: DeleteReplicationInstanceCommandInput, cb: (err: any, data?: DeleteReplicationInstanceCommandOutput) => void): void;
|
|
256
174
|
deleteReplicationInstance(args: DeleteReplicationInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReplicationInstanceCommandOutput) => void): void;
|
|
257
175
|
/**
|
|
258
|
-
* @
|
|
259
|
-
* <p>Deletes a subnet group.</p>
|
|
176
|
+
* @see {@link DeleteReplicationSubnetGroupCommand}
|
|
260
177
|
*/
|
|
261
178
|
deleteReplicationSubnetGroup(args: DeleteReplicationSubnetGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReplicationSubnetGroupCommandOutput>;
|
|
262
179
|
deleteReplicationSubnetGroup(args: DeleteReplicationSubnetGroupCommandInput, cb: (err: any, data?: DeleteReplicationSubnetGroupCommandOutput) => void): void;
|
|
263
180
|
deleteReplicationSubnetGroup(args: DeleteReplicationSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReplicationSubnetGroupCommandOutput) => void): void;
|
|
264
181
|
/**
|
|
265
|
-
* @
|
|
266
|
-
* <p>Deletes the specified replication task.</p>
|
|
182
|
+
* @see {@link DeleteReplicationTaskCommand}
|
|
267
183
|
*/
|
|
268
184
|
deleteReplicationTask(args: DeleteReplicationTaskCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReplicationTaskCommandOutput>;
|
|
269
185
|
deleteReplicationTask(args: DeleteReplicationTaskCommandInput, cb: (err: any, data?: DeleteReplicationTaskCommandOutput) => void): void;
|
|
270
186
|
deleteReplicationTask(args: DeleteReplicationTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReplicationTaskCommandOutput) => void): void;
|
|
271
187
|
/**
|
|
272
|
-
* @
|
|
273
|
-
* <p>Deletes the record of a single premigration assessment run.</p>
|
|
274
|
-
* <p>This operation removes all metadata that DMS maintains about this assessment run.
|
|
275
|
-
* However, the operation leaves untouched all information about this assessment run that is
|
|
276
|
-
* stored in your Amazon S3 bucket.</p>
|
|
188
|
+
* @see {@link DeleteReplicationTaskAssessmentRunCommand}
|
|
277
189
|
*/
|
|
278
190
|
deleteReplicationTaskAssessmentRun(args: DeleteReplicationTaskAssessmentRunCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReplicationTaskAssessmentRunCommandOutput>;
|
|
279
191
|
deleteReplicationTaskAssessmentRun(args: DeleteReplicationTaskAssessmentRunCommandInput, cb: (err: any, data?: DeleteReplicationTaskAssessmentRunCommandOutput) => void): void;
|
|
280
192
|
deleteReplicationTaskAssessmentRun(args: DeleteReplicationTaskAssessmentRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReplicationTaskAssessmentRunCommandOutput) => void): void;
|
|
281
193
|
/**
|
|
282
|
-
* @
|
|
283
|
-
* <p>Lists all of the DMS attributes for a customer account. These attributes include DMS
|
|
284
|
-
* quotas for the account and a unique account identifier in a particular DMS region. DMS
|
|
285
|
-
* quotas include a list of resource quotas supported by the account, such as the number of
|
|
286
|
-
* replication instances allowed. The description for each resource quota, includes the quota
|
|
287
|
-
* name, current usage toward that quota, and the quota's maximum value. DMS uses the unique
|
|
288
|
-
* account identifier to name each artifact used by DMS in the given region.</p>
|
|
289
|
-
* <p>This command does not take any parameters.</p>
|
|
194
|
+
* @see {@link DescribeAccountAttributesCommand}
|
|
290
195
|
*/
|
|
291
196
|
describeAccountAttributes(args: DescribeAccountAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccountAttributesCommandOutput>;
|
|
292
197
|
describeAccountAttributes(args: DescribeAccountAttributesCommandInput, cb: (err: any, data?: DescribeAccountAttributesCommandOutput) => void): void;
|
|
293
198
|
describeAccountAttributes(args: DescribeAccountAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountAttributesCommandOutput) => void): void;
|
|
294
199
|
/**
|
|
295
|
-
* @
|
|
296
|
-
* <p>Provides a list of individual assessments that you can specify for a new premigration
|
|
297
|
-
* assessment run, given one or more parameters.</p>
|
|
298
|
-
* <p>If you specify an existing migration task, this operation provides the default individual
|
|
299
|
-
* assessments you can specify for that task. Otherwise, the specified parameters model elements
|
|
300
|
-
* of a possible migration task on which to base a premigration assessment run.</p>
|
|
301
|
-
* <p>To use these migration task modeling parameters, you must specify an existing replication instance,
|
|
302
|
-
* a source database engine, a target database engine, and a migration type. This combination of
|
|
303
|
-
* parameters potentially limits the default individual assessments available for an assessment run
|
|
304
|
-
* created for a corresponding migration task.</p>
|
|
305
|
-
* <p>If you specify no parameters, this operation provides a list of all possible individual assessments
|
|
306
|
-
* that you can specify for an assessment run. If you specify any one of the task modeling parameters, you must
|
|
307
|
-
* specify all of them or the operation cannot provide a list of individual assessments.
|
|
308
|
-
* The only parameter that you can specify alone is for an existing migration task. The specified task
|
|
309
|
-
* definition then determines the default list of individual assessments that you can specify in an
|
|
310
|
-
* assessment run for the task.</p>
|
|
200
|
+
* @see {@link DescribeApplicableIndividualAssessmentsCommand}
|
|
311
201
|
*/
|
|
312
202
|
describeApplicableIndividualAssessments(args: DescribeApplicableIndividualAssessmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeApplicableIndividualAssessmentsCommandOutput>;
|
|
313
203
|
describeApplicableIndividualAssessments(args: DescribeApplicableIndividualAssessmentsCommandInput, cb: (err: any, data?: DescribeApplicableIndividualAssessmentsCommandOutput) => void): void;
|
|
314
204
|
describeApplicableIndividualAssessments(args: DescribeApplicableIndividualAssessmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeApplicableIndividualAssessmentsCommandOutput) => void): void;
|
|
315
205
|
/**
|
|
316
|
-
* @
|
|
317
|
-
* <p>Provides a description of the certificate.</p>
|
|
206
|
+
* @see {@link DescribeCertificatesCommand}
|
|
318
207
|
*/
|
|
319
208
|
describeCertificates(args: DescribeCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCertificatesCommandOutput>;
|
|
320
209
|
describeCertificates(args: DescribeCertificatesCommandInput, cb: (err: any, data?: DescribeCertificatesCommandOutput) => void): void;
|
|
321
210
|
describeCertificates(args: DescribeCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCertificatesCommandOutput) => void): void;
|
|
322
211
|
/**
|
|
323
|
-
* @
|
|
324
|
-
* <p>Describes the status of the connections that have been made between the replication
|
|
325
|
-
* instance and an endpoint. Connections are created when you test an endpoint.</p>
|
|
212
|
+
* @see {@link DescribeConnectionsCommand}
|
|
326
213
|
*/
|
|
327
214
|
describeConnections(args: DescribeConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectionsCommandOutput>;
|
|
328
215
|
describeConnections(args: DescribeConnectionsCommandInput, cb: (err: any, data?: DescribeConnectionsCommandOutput) => void): void;
|
|
329
216
|
describeConnections(args: DescribeConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectionsCommandOutput) => void): void;
|
|
330
217
|
/**
|
|
331
|
-
* @
|
|
332
|
-
* <p>Returns information about the endpoints for your account in the current region.</p>
|
|
218
|
+
* @see {@link DescribeEndpointsCommand}
|
|
333
219
|
*/
|
|
334
220
|
describeEndpoints(args: DescribeEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointsCommandOutput>;
|
|
335
221
|
describeEndpoints(args: DescribeEndpointsCommandInput, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
|
|
336
222
|
describeEndpoints(args: DescribeEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointsCommandOutput) => void): void;
|
|
337
223
|
/**
|
|
338
|
-
* @
|
|
339
|
-
* <p>Returns information about the possible endpoint settings available
|
|
340
|
-
* when you create an endpoint for a specific database engine.</p>
|
|
224
|
+
* @see {@link DescribeEndpointSettingsCommand}
|
|
341
225
|
*/
|
|
342
226
|
describeEndpointSettings(args: DescribeEndpointSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointSettingsCommandOutput>;
|
|
343
227
|
describeEndpointSettings(args: DescribeEndpointSettingsCommandInput, cb: (err: any, data?: DescribeEndpointSettingsCommandOutput) => void): void;
|
|
344
228
|
describeEndpointSettings(args: DescribeEndpointSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointSettingsCommandOutput) => void): void;
|
|
345
229
|
/**
|
|
346
|
-
* @
|
|
347
|
-
* <p>Returns information about the type of endpoints available.</p>
|
|
230
|
+
* @see {@link DescribeEndpointTypesCommand}
|
|
348
231
|
*/
|
|
349
232
|
describeEndpointTypes(args: DescribeEndpointTypesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointTypesCommandOutput>;
|
|
350
233
|
describeEndpointTypes(args: DescribeEndpointTypesCommandInput, cb: (err: any, data?: DescribeEndpointTypesCommandOutput) => void): void;
|
|
351
234
|
describeEndpointTypes(args: DescribeEndpointTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointTypesCommandOutput) => void): void;
|
|
352
235
|
/**
|
|
353
|
-
* @
|
|
354
|
-
* <p>Lists categories for all event source types, or, if specified, for a specified source
|
|
355
|
-
* type. You can see a list of the event categories and source types in <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html">Working with Events
|
|
356
|
-
* and Notifications</a> in the <i>Database Migration Service User
|
|
357
|
-
* Guide.</i>
|
|
358
|
-
* </p>
|
|
236
|
+
* @see {@link DescribeEventCategoriesCommand}
|
|
359
237
|
*/
|
|
360
238
|
describeEventCategories(args: DescribeEventCategoriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEventCategoriesCommandOutput>;
|
|
361
239
|
describeEventCategories(args: DescribeEventCategoriesCommandInput, cb: (err: any, data?: DescribeEventCategoriesCommandOutput) => void): void;
|
|
362
240
|
describeEventCategories(args: DescribeEventCategoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEventCategoriesCommandOutput) => void): void;
|
|
363
241
|
/**
|
|
364
|
-
* @
|
|
365
|
-
* <p> Lists events for a given source identifier and source type. You can also specify a
|
|
366
|
-
* start and end time. For more information on DMS events, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html">Working with Events and
|
|
367
|
-
* Notifications</a> in the <i>Database Migration Service User
|
|
368
|
-
* Guide.</i>
|
|
369
|
-
* </p>
|
|
242
|
+
* @see {@link DescribeEventsCommand}
|
|
370
243
|
*/
|
|
371
244
|
describeEvents(args: DescribeEventsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEventsCommandOutput>;
|
|
372
245
|
describeEvents(args: DescribeEventsCommandInput, cb: (err: any, data?: DescribeEventsCommandOutput) => void): void;
|
|
373
246
|
describeEvents(args: DescribeEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEventsCommandOutput) => void): void;
|
|
374
247
|
/**
|
|
375
|
-
* @
|
|
376
|
-
* <p>Lists all the event subscriptions for a customer account. The description of a
|
|
377
|
-
* subscription includes <code>SubscriptionName</code>, <code>SNSTopicARN</code>,
|
|
378
|
-
* <code>CustomerID</code>, <code>SourceType</code>, <code>SourceID</code>,
|
|
379
|
-
* <code>CreationTime</code>, and <code>Status</code>. </p>
|
|
380
|
-
* <p>If you specify <code>SubscriptionName</code>, this action lists the description for that
|
|
381
|
-
* subscription.</p>
|
|
248
|
+
* @see {@link DescribeEventSubscriptionsCommand}
|
|
382
249
|
*/
|
|
383
250
|
describeEventSubscriptions(args: DescribeEventSubscriptionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEventSubscriptionsCommandOutput>;
|
|
384
251
|
describeEventSubscriptions(args: DescribeEventSubscriptionsCommandInput, cb: (err: any, data?: DescribeEventSubscriptionsCommandOutput) => void): void;
|
|
385
252
|
describeEventSubscriptions(args: DescribeEventSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEventSubscriptionsCommandOutput) => void): void;
|
|
386
253
|
/**
|
|
387
|
-
* @
|
|
388
|
-
* <p>Returns a list of the Fleet Advisor collectors in your account.</p>
|
|
254
|
+
* @see {@link DescribeFleetAdvisorCollectorsCommand}
|
|
389
255
|
*/
|
|
390
256
|
describeFleetAdvisorCollectors(args: DescribeFleetAdvisorCollectorsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetAdvisorCollectorsCommandOutput>;
|
|
391
257
|
describeFleetAdvisorCollectors(args: DescribeFleetAdvisorCollectorsCommandInput, cb: (err: any, data?: DescribeFleetAdvisorCollectorsCommandOutput) => void): void;
|
|
392
258
|
describeFleetAdvisorCollectors(args: DescribeFleetAdvisorCollectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetAdvisorCollectorsCommandOutput) => void): void;
|
|
393
259
|
/**
|
|
394
|
-
* @
|
|
395
|
-
* <p>Returns a list of Fleet Advisor databases in your account.</p>
|
|
260
|
+
* @see {@link DescribeFleetAdvisorDatabasesCommand}
|
|
396
261
|
*/
|
|
397
262
|
describeFleetAdvisorDatabases(args: DescribeFleetAdvisorDatabasesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetAdvisorDatabasesCommandOutput>;
|
|
398
263
|
describeFleetAdvisorDatabases(args: DescribeFleetAdvisorDatabasesCommandInput, cb: (err: any, data?: DescribeFleetAdvisorDatabasesCommandOutput) => void): void;
|
|
399
264
|
describeFleetAdvisorDatabases(args: DescribeFleetAdvisorDatabasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetAdvisorDatabasesCommandOutput) => void): void;
|
|
400
265
|
/**
|
|
401
|
-
* @
|
|
402
|
-
* <p>Provides descriptions of large-scale assessment (LSA) analyses produced by your Fleet
|
|
403
|
-
* Advisor collectors. </p>
|
|
266
|
+
* @see {@link DescribeFleetAdvisorLsaAnalysisCommand}
|
|
404
267
|
*/
|
|
405
268
|
describeFleetAdvisorLsaAnalysis(args: DescribeFleetAdvisorLsaAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetAdvisorLsaAnalysisCommandOutput>;
|
|
406
269
|
describeFleetAdvisorLsaAnalysis(args: DescribeFleetAdvisorLsaAnalysisCommandInput, cb: (err: any, data?: DescribeFleetAdvisorLsaAnalysisCommandOutput) => void): void;
|
|
407
270
|
describeFleetAdvisorLsaAnalysis(args: DescribeFleetAdvisorLsaAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetAdvisorLsaAnalysisCommandOutput) => void): void;
|
|
408
271
|
/**
|
|
409
|
-
* @
|
|
410
|
-
* <p>Provides descriptions of the schemas discovered by your Fleet Advisor
|
|
411
|
-
* collectors.</p>
|
|
272
|
+
* @see {@link DescribeFleetAdvisorSchemaObjectSummaryCommand}
|
|
412
273
|
*/
|
|
413
274
|
describeFleetAdvisorSchemaObjectSummary(args: DescribeFleetAdvisorSchemaObjectSummaryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetAdvisorSchemaObjectSummaryCommandOutput>;
|
|
414
275
|
describeFleetAdvisorSchemaObjectSummary(args: DescribeFleetAdvisorSchemaObjectSummaryCommandInput, cb: (err: any, data?: DescribeFleetAdvisorSchemaObjectSummaryCommandOutput) => void): void;
|
|
415
276
|
describeFleetAdvisorSchemaObjectSummary(args: DescribeFleetAdvisorSchemaObjectSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetAdvisorSchemaObjectSummaryCommandOutput) => void): void;
|
|
416
277
|
/**
|
|
417
|
-
* @
|
|
418
|
-
* <p>Returns a list of schemas detected by Fleet Advisor Collectors in your account.</p>
|
|
278
|
+
* @see {@link DescribeFleetAdvisorSchemasCommand}
|
|
419
279
|
*/
|
|
420
280
|
describeFleetAdvisorSchemas(args: DescribeFleetAdvisorSchemasCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFleetAdvisorSchemasCommandOutput>;
|
|
421
281
|
describeFleetAdvisorSchemas(args: DescribeFleetAdvisorSchemasCommandInput, cb: (err: any, data?: DescribeFleetAdvisorSchemasCommandOutput) => void): void;
|
|
422
282
|
describeFleetAdvisorSchemas(args: DescribeFleetAdvisorSchemasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFleetAdvisorSchemasCommandOutput) => void): void;
|
|
423
283
|
/**
|
|
424
|
-
* @
|
|
425
|
-
* <p>Returns information about the replication instance types that can be created in the
|
|
426
|
-
* specified region.</p>
|
|
284
|
+
* @see {@link DescribeOrderableReplicationInstancesCommand}
|
|
427
285
|
*/
|
|
428
286
|
describeOrderableReplicationInstances(args: DescribeOrderableReplicationInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOrderableReplicationInstancesCommandOutput>;
|
|
429
287
|
describeOrderableReplicationInstances(args: DescribeOrderableReplicationInstancesCommandInput, cb: (err: any, data?: DescribeOrderableReplicationInstancesCommandOutput) => void): void;
|
|
430
288
|
describeOrderableReplicationInstances(args: DescribeOrderableReplicationInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOrderableReplicationInstancesCommandOutput) => void): void;
|
|
431
289
|
/**
|
|
432
|
-
* @
|
|
433
|
-
* <p>For internal use only</p>
|
|
290
|
+
* @see {@link DescribePendingMaintenanceActionsCommand}
|
|
434
291
|
*/
|
|
435
292
|
describePendingMaintenanceActions(args: DescribePendingMaintenanceActionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribePendingMaintenanceActionsCommandOutput>;
|
|
436
293
|
describePendingMaintenanceActions(args: DescribePendingMaintenanceActionsCommandInput, cb: (err: any, data?: DescribePendingMaintenanceActionsCommandOutput) => void): void;
|
|
437
294
|
describePendingMaintenanceActions(args: DescribePendingMaintenanceActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePendingMaintenanceActionsCommandOutput) => void): void;
|
|
438
295
|
/**
|
|
439
|
-
* @
|
|
440
|
-
* <p>Returns a paginated list of limitations for recommendations of target Amazon Web Services
|
|
441
|
-
* engines.</p>
|
|
296
|
+
* @see {@link DescribeRecommendationLimitationsCommand}
|
|
442
297
|
*/
|
|
443
298
|
describeRecommendationLimitations(args: DescribeRecommendationLimitationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecommendationLimitationsCommandOutput>;
|
|
444
299
|
describeRecommendationLimitations(args: DescribeRecommendationLimitationsCommandInput, cb: (err: any, data?: DescribeRecommendationLimitationsCommandOutput) => void): void;
|
|
445
300
|
describeRecommendationLimitations(args: DescribeRecommendationLimitationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecommendationLimitationsCommandOutput) => void): void;
|
|
446
301
|
/**
|
|
447
|
-
* @
|
|
448
|
-
* <p>Returns a paginated list of target engine recommendations for your source
|
|
449
|
-
* databases.</p>
|
|
302
|
+
* @see {@link DescribeRecommendationsCommand}
|
|
450
303
|
*/
|
|
451
304
|
describeRecommendations(args: DescribeRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRecommendationsCommandOutput>;
|
|
452
305
|
describeRecommendations(args: DescribeRecommendationsCommandInput, cb: (err: any, data?: DescribeRecommendationsCommandOutput) => void): void;
|
|
453
306
|
describeRecommendations(args: DescribeRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRecommendationsCommandOutput) => void): void;
|
|
454
307
|
/**
|
|
455
|
-
* @
|
|
456
|
-
* <p>Returns the status of the RefreshSchemas operation.</p>
|
|
308
|
+
* @see {@link DescribeRefreshSchemasStatusCommand}
|
|
457
309
|
*/
|
|
458
310
|
describeRefreshSchemasStatus(args: DescribeRefreshSchemasStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRefreshSchemasStatusCommandOutput>;
|
|
459
311
|
describeRefreshSchemasStatus(args: DescribeRefreshSchemasStatusCommandInput, cb: (err: any, data?: DescribeRefreshSchemasStatusCommandOutput) => void): void;
|
|
460
312
|
describeRefreshSchemasStatus(args: DescribeRefreshSchemasStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRefreshSchemasStatusCommandOutput) => void): void;
|
|
461
313
|
/**
|
|
462
|
-
* @
|
|
463
|
-
* <p>Returns information about replication instances for your account in the current
|
|
464
|
-
* region.</p>
|
|
314
|
+
* @see {@link DescribeReplicationInstancesCommand}
|
|
465
315
|
*/
|
|
466
316
|
describeReplicationInstances(args: DescribeReplicationInstancesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationInstancesCommandOutput>;
|
|
467
317
|
describeReplicationInstances(args: DescribeReplicationInstancesCommandInput, cb: (err: any, data?: DescribeReplicationInstancesCommandOutput) => void): void;
|
|
468
318
|
describeReplicationInstances(args: DescribeReplicationInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationInstancesCommandOutput) => void): void;
|
|
469
319
|
/**
|
|
470
|
-
* @
|
|
471
|
-
* <p>Returns information about the task logs for the specified task.</p>
|
|
320
|
+
* @see {@link DescribeReplicationInstanceTaskLogsCommand}
|
|
472
321
|
*/
|
|
473
322
|
describeReplicationInstanceTaskLogs(args: DescribeReplicationInstanceTaskLogsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationInstanceTaskLogsCommandOutput>;
|
|
474
323
|
describeReplicationInstanceTaskLogs(args: DescribeReplicationInstanceTaskLogsCommandInput, cb: (err: any, data?: DescribeReplicationInstanceTaskLogsCommandOutput) => void): void;
|
|
475
324
|
describeReplicationInstanceTaskLogs(args: DescribeReplicationInstanceTaskLogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationInstanceTaskLogsCommandOutput) => void): void;
|
|
476
325
|
/**
|
|
477
|
-
* @
|
|
478
|
-
* <p>Returns information about the replication subnet groups.</p>
|
|
326
|
+
* @see {@link DescribeReplicationSubnetGroupsCommand}
|
|
479
327
|
*/
|
|
480
328
|
describeReplicationSubnetGroups(args: DescribeReplicationSubnetGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationSubnetGroupsCommandOutput>;
|
|
481
329
|
describeReplicationSubnetGroups(args: DescribeReplicationSubnetGroupsCommandInput, cb: (err: any, data?: DescribeReplicationSubnetGroupsCommandOutput) => void): void;
|
|
482
330
|
describeReplicationSubnetGroups(args: DescribeReplicationSubnetGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationSubnetGroupsCommandOutput) => void): void;
|
|
483
331
|
/**
|
|
484
|
-
* @
|
|
485
|
-
* <p>Returns the task assessment results from the Amazon S3 bucket that DMS creates in your
|
|
486
|
-
* Amazon Web Services account. This action always returns the
|
|
487
|
-
* latest results.</p>
|
|
488
|
-
* <p>For more information about DMS task assessments, see
|
|
489
|
-
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html">Creating a task assessment report</a>
|
|
490
|
-
* in the <i>Database Migration Service User Guide</i>.</p>
|
|
332
|
+
* @see {@link DescribeReplicationTaskAssessmentResultsCommand}
|
|
491
333
|
*/
|
|
492
334
|
describeReplicationTaskAssessmentResults(args: DescribeReplicationTaskAssessmentResultsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationTaskAssessmentResultsCommandOutput>;
|
|
493
335
|
describeReplicationTaskAssessmentResults(args: DescribeReplicationTaskAssessmentResultsCommandInput, cb: (err: any, data?: DescribeReplicationTaskAssessmentResultsCommandOutput) => void): void;
|
|
494
336
|
describeReplicationTaskAssessmentResults(args: DescribeReplicationTaskAssessmentResultsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationTaskAssessmentResultsCommandOutput) => void): void;
|
|
495
337
|
/**
|
|
496
|
-
* @
|
|
497
|
-
* <p>Returns a paginated list of premigration assessment runs based on filter
|
|
498
|
-
* settings.</p>
|
|
499
|
-
* <p>These filter settings can specify a combination of premigration assessment runs,
|
|
500
|
-
* migration tasks, replication instances, and assessment run status values.</p>
|
|
501
|
-
* <note>
|
|
502
|
-
* <p>This operation doesn't return information about individual assessments. For this
|
|
503
|
-
* information, see the <code>DescribeReplicationTaskIndividualAssessments</code>
|
|
504
|
-
* operation. </p>
|
|
505
|
-
* </note>
|
|
338
|
+
* @see {@link DescribeReplicationTaskAssessmentRunsCommand}
|
|
506
339
|
*/
|
|
507
340
|
describeReplicationTaskAssessmentRuns(args: DescribeReplicationTaskAssessmentRunsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationTaskAssessmentRunsCommandOutput>;
|
|
508
341
|
describeReplicationTaskAssessmentRuns(args: DescribeReplicationTaskAssessmentRunsCommandInput, cb: (err: any, data?: DescribeReplicationTaskAssessmentRunsCommandOutput) => void): void;
|
|
509
342
|
describeReplicationTaskAssessmentRuns(args: DescribeReplicationTaskAssessmentRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationTaskAssessmentRunsCommandOutput) => void): void;
|
|
510
343
|
/**
|
|
511
|
-
* @
|
|
512
|
-
* <p>Returns a paginated list of individual assessments based on filter settings.</p>
|
|
513
|
-
* <p>These filter settings can specify a combination of premigration assessment runs,
|
|
514
|
-
* migration tasks, and assessment status values.</p>
|
|
344
|
+
* @see {@link DescribeReplicationTaskIndividualAssessmentsCommand}
|
|
515
345
|
*/
|
|
516
346
|
describeReplicationTaskIndividualAssessments(args: DescribeReplicationTaskIndividualAssessmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationTaskIndividualAssessmentsCommandOutput>;
|
|
517
347
|
describeReplicationTaskIndividualAssessments(args: DescribeReplicationTaskIndividualAssessmentsCommandInput, cb: (err: any, data?: DescribeReplicationTaskIndividualAssessmentsCommandOutput) => void): void;
|
|
518
348
|
describeReplicationTaskIndividualAssessments(args: DescribeReplicationTaskIndividualAssessmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationTaskIndividualAssessmentsCommandOutput) => void): void;
|
|
519
349
|
/**
|
|
520
|
-
* @
|
|
521
|
-
* <p>Returns information about replication tasks for your account in the current
|
|
522
|
-
* region.</p>
|
|
350
|
+
* @see {@link DescribeReplicationTasksCommand}
|
|
523
351
|
*/
|
|
524
352
|
describeReplicationTasks(args: DescribeReplicationTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReplicationTasksCommandOutput>;
|
|
525
353
|
describeReplicationTasks(args: DescribeReplicationTasksCommandInput, cb: (err: any, data?: DescribeReplicationTasksCommandOutput) => void): void;
|
|
526
354
|
describeReplicationTasks(args: DescribeReplicationTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReplicationTasksCommandOutput) => void): void;
|
|
527
355
|
/**
|
|
528
|
-
* @
|
|
529
|
-
* <p>Returns information about the schema for the specified endpoint.</p>
|
|
530
|
-
* <p></p>
|
|
356
|
+
* @see {@link DescribeSchemasCommand}
|
|
531
357
|
*/
|
|
532
358
|
describeSchemas(args: DescribeSchemasCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSchemasCommandOutput>;
|
|
533
359
|
describeSchemas(args: DescribeSchemasCommandInput, cb: (err: any, data?: DescribeSchemasCommandOutput) => void): void;
|
|
534
360
|
describeSchemas(args: DescribeSchemasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSchemasCommandOutput) => void): void;
|
|
535
361
|
/**
|
|
536
|
-
* @
|
|
537
|
-
* <p>Returns table statistics on the database migration task, including table name, rows
|
|
538
|
-
* inserted, rows updated, and rows deleted.</p>
|
|
539
|
-
* <p>Note that the "last updated" column the DMS console only indicates the time that DMS
|
|
540
|
-
* last updated the table statistics record for a table. It does not indicate the time of the
|
|
541
|
-
* last update to the table.</p>
|
|
362
|
+
* @see {@link DescribeTableStatisticsCommand}
|
|
542
363
|
*/
|
|
543
364
|
describeTableStatistics(args: DescribeTableStatisticsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTableStatisticsCommandOutput>;
|
|
544
365
|
describeTableStatistics(args: DescribeTableStatisticsCommandInput, cb: (err: any, data?: DescribeTableStatisticsCommandOutput) => void): void;
|
|
545
366
|
describeTableStatistics(args: DescribeTableStatisticsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTableStatisticsCommandOutput) => void): void;
|
|
546
367
|
/**
|
|
547
|
-
* @
|
|
548
|
-
* <p>Uploads the specified certificate.</p>
|
|
368
|
+
* @see {@link ImportCertificateCommand}
|
|
549
369
|
*/
|
|
550
370
|
importCertificate(args: ImportCertificateCommandInput, options?: __HttpHandlerOptions): Promise<ImportCertificateCommandOutput>;
|
|
551
371
|
importCertificate(args: ImportCertificateCommandInput, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
|
|
552
372
|
importCertificate(args: ImportCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportCertificateCommandOutput) => void): void;
|
|
553
373
|
/**
|
|
554
|
-
* @
|
|
555
|
-
* <p>Lists all metadata tags attached to an DMS resource, including
|
|
556
|
-
* replication instance, endpoint, subnet group, and migration task.
|
|
557
|
-
* For more information, see <a href="https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html">
|
|
558
|
-
* <code>Tag</code>
|
|
559
|
-
* </a> data type description.</p>
|
|
374
|
+
* @see {@link ListTagsForResourceCommand}
|
|
560
375
|
*/
|
|
561
376
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
562
377
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
563
378
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
564
379
|
/**
|
|
565
|
-
* @
|
|
566
|
-
* <p>Modifies the specified endpoint.</p>
|
|
567
|
-
* <note>
|
|
568
|
-
* <p>For a MySQL source or target endpoint, don't explicitly specify the database using
|
|
569
|
-
* the <code>DatabaseName</code> request parameter on the <code>ModifyEndpoint</code> API call.
|
|
570
|
-
* Specifying <code>DatabaseName</code> when you modify a MySQL endpoint replicates all the
|
|
571
|
-
* task tables to this single database. For MySQL endpoints, you specify the database only when
|
|
572
|
-
* you specify the schema in the table-mapping rules of the DMS task.</p>
|
|
573
|
-
* </note>
|
|
380
|
+
* @see {@link ModifyEndpointCommand}
|
|
574
381
|
*/
|
|
575
382
|
modifyEndpoint(args: ModifyEndpointCommandInput, options?: __HttpHandlerOptions): Promise<ModifyEndpointCommandOutput>;
|
|
576
383
|
modifyEndpoint(args: ModifyEndpointCommandInput, cb: (err: any, data?: ModifyEndpointCommandOutput) => void): void;
|
|
577
384
|
modifyEndpoint(args: ModifyEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyEndpointCommandOutput) => void): void;
|
|
578
385
|
/**
|
|
579
|
-
* @
|
|
580
|
-
* <p>Modifies an existing DMS event notification subscription. </p>
|
|
386
|
+
* @see {@link ModifyEventSubscriptionCommand}
|
|
581
387
|
*/
|
|
582
388
|
modifyEventSubscription(args: ModifyEventSubscriptionCommandInput, options?: __HttpHandlerOptions): Promise<ModifyEventSubscriptionCommandOutput>;
|
|
583
389
|
modifyEventSubscription(args: ModifyEventSubscriptionCommandInput, cb: (err: any, data?: ModifyEventSubscriptionCommandOutput) => void): void;
|
|
584
390
|
modifyEventSubscription(args: ModifyEventSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyEventSubscriptionCommandOutput) => void): void;
|
|
585
391
|
/**
|
|
586
|
-
* @
|
|
587
|
-
* <p>Modifies the replication instance to apply new settings. You can change one or more
|
|
588
|
-
* parameters by specifying these parameters and the new values in the request.</p>
|
|
589
|
-
* <p>Some settings are applied during the maintenance window.</p>
|
|
590
|
-
* <p></p>
|
|
392
|
+
* @see {@link ModifyReplicationInstanceCommand}
|
|
591
393
|
*/
|
|
592
394
|
modifyReplicationInstance(args: ModifyReplicationInstanceCommandInput, options?: __HttpHandlerOptions): Promise<ModifyReplicationInstanceCommandOutput>;
|
|
593
395
|
modifyReplicationInstance(args: ModifyReplicationInstanceCommandInput, cb: (err: any, data?: ModifyReplicationInstanceCommandOutput) => void): void;
|
|
594
396
|
modifyReplicationInstance(args: ModifyReplicationInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyReplicationInstanceCommandOutput) => void): void;
|
|
595
397
|
/**
|
|
596
|
-
* @
|
|
597
|
-
* <p>Modifies the settings for the specified replication subnet group.</p>
|
|
398
|
+
* @see {@link ModifyReplicationSubnetGroupCommand}
|
|
598
399
|
*/
|
|
599
400
|
modifyReplicationSubnetGroup(args: ModifyReplicationSubnetGroupCommandInput, options?: __HttpHandlerOptions): Promise<ModifyReplicationSubnetGroupCommandOutput>;
|
|
600
401
|
modifyReplicationSubnetGroup(args: ModifyReplicationSubnetGroupCommandInput, cb: (err: any, data?: ModifyReplicationSubnetGroupCommandOutput) => void): void;
|
|
601
402
|
modifyReplicationSubnetGroup(args: ModifyReplicationSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyReplicationSubnetGroupCommandOutput) => void): void;
|
|
602
403
|
/**
|
|
603
|
-
* @
|
|
604
|
-
* <p>Modifies the specified replication task.</p>
|
|
605
|
-
* <p>You can't modify the task endpoints. The task must be stopped before you can modify it. </p>
|
|
606
|
-
* <p>For more information about DMS tasks, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.html">Working with Migration Tasks</a> in the
|
|
607
|
-
* <i>Database Migration Service User Guide</i>.</p>
|
|
404
|
+
* @see {@link ModifyReplicationTaskCommand}
|
|
608
405
|
*/
|
|
609
406
|
modifyReplicationTask(args: ModifyReplicationTaskCommandInput, options?: __HttpHandlerOptions): Promise<ModifyReplicationTaskCommandOutput>;
|
|
610
407
|
modifyReplicationTask(args: ModifyReplicationTaskCommandInput, cb: (err: any, data?: ModifyReplicationTaskCommandOutput) => void): void;
|
|
611
408
|
modifyReplicationTask(args: ModifyReplicationTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyReplicationTaskCommandOutput) => void): void;
|
|
612
409
|
/**
|
|
613
|
-
* @
|
|
614
|
-
* <p>Moves a replication task from its current replication instance to a different target
|
|
615
|
-
* replication instance using the specified parameters. The target replication instance must
|
|
616
|
-
* be created with the same or later DMS version as the current replication
|
|
617
|
-
* instance.</p>
|
|
410
|
+
* @see {@link MoveReplicationTaskCommand}
|
|
618
411
|
*/
|
|
619
412
|
moveReplicationTask(args: MoveReplicationTaskCommandInput, options?: __HttpHandlerOptions): Promise<MoveReplicationTaskCommandOutput>;
|
|
620
413
|
moveReplicationTask(args: MoveReplicationTaskCommandInput, cb: (err: any, data?: MoveReplicationTaskCommandOutput) => void): void;
|
|
621
414
|
moveReplicationTask(args: MoveReplicationTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: MoveReplicationTaskCommandOutput) => void): void;
|
|
622
415
|
/**
|
|
623
|
-
* @
|
|
624
|
-
* <p>Reboots a replication instance. Rebooting results in a momentary outage, until the
|
|
625
|
-
* replication instance becomes available again.</p>
|
|
416
|
+
* @see {@link RebootReplicationInstanceCommand}
|
|
626
417
|
*/
|
|
627
418
|
rebootReplicationInstance(args: RebootReplicationInstanceCommandInput, options?: __HttpHandlerOptions): Promise<RebootReplicationInstanceCommandOutput>;
|
|
628
419
|
rebootReplicationInstance(args: RebootReplicationInstanceCommandInput, cb: (err: any, data?: RebootReplicationInstanceCommandOutput) => void): void;
|
|
629
420
|
rebootReplicationInstance(args: RebootReplicationInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootReplicationInstanceCommandOutput) => void): void;
|
|
630
421
|
/**
|
|
631
|
-
* @
|
|
632
|
-
* <p>Populates the schema for the specified endpoint. This is an asynchronous operation and
|
|
633
|
-
* can take several minutes. You can check the status of this operation by calling the
|
|
634
|
-
* DescribeRefreshSchemasStatus operation.</p>
|
|
422
|
+
* @see {@link RefreshSchemasCommand}
|
|
635
423
|
*/
|
|
636
424
|
refreshSchemas(args: RefreshSchemasCommandInput, options?: __HttpHandlerOptions): Promise<RefreshSchemasCommandOutput>;
|
|
637
425
|
refreshSchemas(args: RefreshSchemasCommandInput, cb: (err: any, data?: RefreshSchemasCommandOutput) => void): void;
|
|
638
426
|
refreshSchemas(args: RefreshSchemasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RefreshSchemasCommandOutput) => void): void;
|
|
639
427
|
/**
|
|
640
|
-
* @
|
|
641
|
-
* <p>Reloads the target database table with the source data. </p>
|
|
642
|
-
* <p>You can only use this operation with a task in the <code>RUNNING</code> state, otherwise the service
|
|
643
|
-
* will throw an <code>InvalidResourceStateFault</code> exception.</p>
|
|
428
|
+
* @see {@link ReloadTablesCommand}
|
|
644
429
|
*/
|
|
645
430
|
reloadTables(args: ReloadTablesCommandInput, options?: __HttpHandlerOptions): Promise<ReloadTablesCommandOutput>;
|
|
646
431
|
reloadTables(args: ReloadTablesCommandInput, cb: (err: any, data?: ReloadTablesCommandOutput) => void): void;
|
|
647
432
|
reloadTables(args: ReloadTablesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReloadTablesCommandOutput) => void): void;
|
|
648
433
|
/**
|
|
649
|
-
* @
|
|
650
|
-
* <p>Removes metadata tags from an DMS resource, including replication instance,
|
|
651
|
-
* endpoint, subnet group, and migration task. For more information, see
|
|
652
|
-
* <a href="https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html">
|
|
653
|
-
* <code>Tag</code>
|
|
654
|
-
* </a>
|
|
655
|
-
* data type description.</p>
|
|
434
|
+
* @see {@link RemoveTagsFromResourceCommand}
|
|
656
435
|
*/
|
|
657
436
|
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsFromResourceCommandOutput>;
|
|
658
437
|
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void): void;
|
|
659
438
|
removeTagsFromResource(args: RemoveTagsFromResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsFromResourceCommandOutput) => void): void;
|
|
660
439
|
/**
|
|
661
|
-
* @
|
|
662
|
-
* <p>Runs large-scale assessment (LSA) analysis on every Fleet Advisor collector in your account.</p>
|
|
440
|
+
* @see {@link RunFleetAdvisorLsaAnalysisCommand}
|
|
663
441
|
*/
|
|
664
442
|
runFleetAdvisorLsaAnalysis(args: RunFleetAdvisorLsaAnalysisCommandInput, options?: __HttpHandlerOptions): Promise<RunFleetAdvisorLsaAnalysisCommandOutput>;
|
|
665
443
|
runFleetAdvisorLsaAnalysis(args: RunFleetAdvisorLsaAnalysisCommandInput, cb: (err: any, data?: RunFleetAdvisorLsaAnalysisCommandOutput) => void): void;
|
|
666
444
|
runFleetAdvisorLsaAnalysis(args: RunFleetAdvisorLsaAnalysisCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RunFleetAdvisorLsaAnalysisCommandOutput) => void): void;
|
|
667
445
|
/**
|
|
668
|
-
* @
|
|
669
|
-
* <p>Starts the analysis of your source database to provide recommendations of target
|
|
670
|
-
* engines.</p>
|
|
671
|
-
* <p>You can create recommendations for multiple source databases using <a href="https://docs.aws.amazon.com/dms/latest/APIReference/API_BatchStartRecommendations.html">BatchStartRecommendations</a>.</p>
|
|
446
|
+
* @see {@link StartRecommendationsCommand}
|
|
672
447
|
*/
|
|
673
448
|
startRecommendations(args: StartRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<StartRecommendationsCommandOutput>;
|
|
674
449
|
startRecommendations(args: StartRecommendationsCommandInput, cb: (err: any, data?: StartRecommendationsCommandOutput) => void): void;
|
|
675
450
|
startRecommendations(args: StartRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRecommendationsCommandOutput) => void): void;
|
|
676
451
|
/**
|
|
677
|
-
* @
|
|
678
|
-
* <p>Starts the replication task.</p>
|
|
679
|
-
* <p>For more information about DMS tasks, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.html">Working with Migration Tasks </a> in the
|
|
680
|
-
* <i>Database Migration Service User Guide.</i>
|
|
681
|
-
* </p>
|
|
452
|
+
* @see {@link StartReplicationTaskCommand}
|
|
682
453
|
*/
|
|
683
454
|
startReplicationTask(args: StartReplicationTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartReplicationTaskCommandOutput>;
|
|
684
455
|
startReplicationTask(args: StartReplicationTaskCommandInput, cb: (err: any, data?: StartReplicationTaskCommandOutput) => void): void;
|
|
685
456
|
startReplicationTask(args: StartReplicationTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReplicationTaskCommandOutput) => void): void;
|
|
686
457
|
/**
|
|
687
|
-
* @
|
|
688
|
-
* <p> Starts the replication task assessment for unsupported data types in the source
|
|
689
|
-
* database. </p>
|
|
690
|
-
* <p>You can only use this operation for a task if the following conditions are true:</p>
|
|
691
|
-
* <ul>
|
|
692
|
-
* <li>
|
|
693
|
-
* <p>The task must be in the <code>stopped</code> state.</p>
|
|
694
|
-
* </li>
|
|
695
|
-
* <li>
|
|
696
|
-
* <p>The task must have successful connections to the source and target.</p>
|
|
697
|
-
* </li>
|
|
698
|
-
* </ul>
|
|
699
|
-
* <p>If either of these conditions are not met, an <code>InvalidResourceStateFault</code> error will result. </p>
|
|
700
|
-
* <p>For information about DMS task assessments, see
|
|
701
|
-
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html">Creating a task assessment report</a>
|
|
702
|
-
* in the <i>Database Migration Service User Guide</i>.</p>
|
|
458
|
+
* @see {@link StartReplicationTaskAssessmentCommand}
|
|
703
459
|
*/
|
|
704
460
|
startReplicationTaskAssessment(args: StartReplicationTaskAssessmentCommandInput, options?: __HttpHandlerOptions): Promise<StartReplicationTaskAssessmentCommandOutput>;
|
|
705
461
|
startReplicationTaskAssessment(args: StartReplicationTaskAssessmentCommandInput, cb: (err: any, data?: StartReplicationTaskAssessmentCommandOutput) => void): void;
|
|
706
462
|
startReplicationTaskAssessment(args: StartReplicationTaskAssessmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReplicationTaskAssessmentCommandOutput) => void): void;
|
|
707
463
|
/**
|
|
708
|
-
* @
|
|
709
|
-
* <p>Starts a new premigration assessment run for one or more individual assessments
|
|
710
|
-
* of a migration task.</p>
|
|
711
|
-
* <p>The assessments that you can specify depend on the source and target database engine and
|
|
712
|
-
* the migration type defined for the given task. To run this operation, your migration task
|
|
713
|
-
* must already be created. After you run this operation, you can review the status of each
|
|
714
|
-
* individual assessment. You can also run the migration task manually after the assessment
|
|
715
|
-
* run and its individual assessments complete.</p>
|
|
464
|
+
* @see {@link StartReplicationTaskAssessmentRunCommand}
|
|
716
465
|
*/
|
|
717
466
|
startReplicationTaskAssessmentRun(args: StartReplicationTaskAssessmentRunCommandInput, options?: __HttpHandlerOptions): Promise<StartReplicationTaskAssessmentRunCommandOutput>;
|
|
718
467
|
startReplicationTaskAssessmentRun(args: StartReplicationTaskAssessmentRunCommandInput, cb: (err: any, data?: StartReplicationTaskAssessmentRunCommandOutput) => void): void;
|
|
719
468
|
startReplicationTaskAssessmentRun(args: StartReplicationTaskAssessmentRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReplicationTaskAssessmentRunCommandOutput) => void): void;
|
|
720
469
|
/**
|
|
721
|
-
* @
|
|
722
|
-
* <p>Stops the replication task.</p>
|
|
470
|
+
* @see {@link StopReplicationTaskCommand}
|
|
723
471
|
*/
|
|
724
472
|
stopReplicationTask(args: StopReplicationTaskCommandInput, options?: __HttpHandlerOptions): Promise<StopReplicationTaskCommandOutput>;
|
|
725
473
|
stopReplicationTask(args: StopReplicationTaskCommandInput, cb: (err: any, data?: StopReplicationTaskCommandOutput) => void): void;
|
|
726
474
|
stopReplicationTask(args: StopReplicationTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopReplicationTaskCommandOutput) => void): void;
|
|
727
475
|
/**
|
|
728
|
-
* @
|
|
729
|
-
* <p>Tests the connection between the replication instance and the endpoint.</p>
|
|
476
|
+
* @see {@link TestConnectionCommand}
|
|
730
477
|
*/
|
|
731
478
|
testConnection(args: TestConnectionCommandInput, options?: __HttpHandlerOptions): Promise<TestConnectionCommandOutput>;
|
|
732
479
|
testConnection(args: TestConnectionCommandInput, cb: (err: any, data?: TestConnectionCommandOutput) => void): void;
|
|
733
480
|
testConnection(args: TestConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestConnectionCommandOutput) => void): void;
|
|
734
481
|
/**
|
|
735
|
-
* @
|
|
736
|
-
* <p>Migrates 10 active and enabled Amazon SNS subscriptions at a time and converts them to corresponding Amazon EventBridge rules.
|
|
737
|
-
* By default, this operation migrates subscriptions only when all your replication instance versions are 3.4.6 or higher.
|
|
738
|
-
* If any replication instances are from versions earlier than 3.4.6, the operation raises an error and tells you
|
|
739
|
-
* to upgrade these instances to version 3.4.6 or higher. To enable migration regardless of version, set the <code>Force</code>
|
|
740
|
-
* option to true. However, if you don't upgrade instances earlier than version 3.4.6, some types of events might not be
|
|
741
|
-
* available when you use Amazon EventBridge.</p>
|
|
742
|
-
* <p>To call this operation, make sure that you have certain permissions added to your user account.
|
|
743
|
-
* For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html#CHAP_Events-migrate-to-eventbridge">Migrating event subscriptions to Amazon EventBridge</a>
|
|
744
|
-
* in the <i>Amazon Web Services Database Migration Service User Guide</i>.</p>
|
|
482
|
+
* @see {@link UpdateSubscriptionsToEventBridgeCommand}
|
|
745
483
|
*/
|
|
746
484
|
updateSubscriptionsToEventBridge(args: UpdateSubscriptionsToEventBridgeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSubscriptionsToEventBridgeCommandOutput>;
|
|
747
485
|
updateSubscriptionsToEventBridge(args: UpdateSubscriptionsToEventBridgeCommandInput, cb: (err: any, data?: UpdateSubscriptionsToEventBridgeCommandOutput) => void): void;
|
|
748
486
|
updateSubscriptionsToEventBridge(args: UpdateSubscriptionsToEventBridgeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSubscriptionsToEventBridgeCommandOutput) => void): void;
|
|
749
487
|
}
|
|
488
|
+
/**
|
|
489
|
+
* @public
|
|
490
|
+
* <fullname>Database Migration Service</fullname>
|
|
491
|
+
* <p>Database Migration Service (DMS) can migrate your data to and from the most
|
|
492
|
+
* widely used commercial and open-source databases such as Oracle, PostgreSQL, Microsoft SQL
|
|
493
|
+
* Server, Amazon Redshift, MariaDB, Amazon Aurora, MySQL, and SAP Adaptive Server Enterprise
|
|
494
|
+
* (ASE). The service supports homogeneous migrations such as Oracle to Oracle, as well as
|
|
495
|
+
* heterogeneous migrations between different database platforms, such as Oracle to MySQL or
|
|
496
|
+
* SQL Server to PostgreSQL.</p>
|
|
497
|
+
* <p>For more information about DMS, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/Welcome.html">What Is Database Migration Service?</a>
|
|
498
|
+
* in the <i>Database Migration Service User Guide.</i>
|
|
499
|
+
* </p>
|
|
500
|
+
*/
|
|
501
|
+
export declare class DatabaseMigrationService extends DatabaseMigrationServiceClient implements DatabaseMigrationService {
|
|
502
|
+
}
|