@aws-sdk/client-database-migration-service 3.686.0 → 3.691.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-types/models/models_0.d.ts +1141 -1141
- package/dist-types/models/models_1.d.ts +162 -162
- package/dist-types/ts3.4/models/models_0.d.ts +1149 -1141
- package/dist-types/ts3.4/models/models_1.d.ts +166 -162
- package/package.json +7 -7
|
@@ -10,19 +10,19 @@ export interface DescribeTableStatisticsResponse {
|
|
|
10
10
|
* <p>The Amazon Resource Name (ARN) of the replication task.</p>
|
|
11
11
|
* @public
|
|
12
12
|
*/
|
|
13
|
-
ReplicationTaskArn?: string;
|
|
13
|
+
ReplicationTaskArn?: string | undefined;
|
|
14
14
|
/**
|
|
15
15
|
* <p>The table statistics.</p>
|
|
16
16
|
* @public
|
|
17
17
|
*/
|
|
18
|
-
TableStatistics?: TableStatistics[];
|
|
18
|
+
TableStatistics?: TableStatistics[] | undefined;
|
|
19
19
|
/**
|
|
20
20
|
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
21
21
|
* specified, the response includes only records beyond the marker, up to the value specified
|
|
22
22
|
* by <code>MaxRecords</code>. </p>
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
Marker?: string;
|
|
25
|
+
Marker?: string | undefined;
|
|
26
26
|
}
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
@@ -54,12 +54,12 @@ export interface ExportMetadataModelAssessmentMessage {
|
|
|
54
54
|
* <p>The name of the assessment file to create in your Amazon S3 bucket.</p>
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
FileName?: string;
|
|
57
|
+
FileName?: string | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* <p>The file format of the assessment file.</p>
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
AssessmentReportTypes?: AssessmentReportType[];
|
|
62
|
+
AssessmentReportTypes?: AssessmentReportType[] | undefined;
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
65
|
* <p>Provides information about an exported metadata model assessment.</p>
|
|
@@ -70,12 +70,12 @@ export interface ExportMetadataModelAssessmentResultEntry {
|
|
|
70
70
|
* <p>The object key for the object containing the exported metadata model assessment.</p>
|
|
71
71
|
* @public
|
|
72
72
|
*/
|
|
73
|
-
S3ObjectKey?: string;
|
|
73
|
+
S3ObjectKey?: string | undefined;
|
|
74
74
|
/**
|
|
75
75
|
* <p>The URL for the object containing the exported metadata model assessment.</p>
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
|
-
ObjectURL?: string;
|
|
78
|
+
ObjectURL?: string | undefined;
|
|
79
79
|
}
|
|
80
80
|
/**
|
|
81
81
|
* @public
|
|
@@ -85,12 +85,12 @@ export interface ExportMetadataModelAssessmentResponse {
|
|
|
85
85
|
* <p>The Amazon S3 details for an assessment exported in PDF format.</p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
PdfReport?: ExportMetadataModelAssessmentResultEntry;
|
|
88
|
+
PdfReport?: ExportMetadataModelAssessmentResultEntry | undefined;
|
|
89
89
|
/**
|
|
90
90
|
* <p>The Amazon S3 details for an assessment exported in CSV format.</p>
|
|
91
91
|
* @public
|
|
92
92
|
*/
|
|
93
|
-
CsvReport?: ExportMetadataModelAssessmentResultEntry;
|
|
93
|
+
CsvReport?: ExportMetadataModelAssessmentResultEntry | undefined;
|
|
94
94
|
}
|
|
95
95
|
/**
|
|
96
96
|
* @public
|
|
@@ -107,7 +107,7 @@ export interface ImportCertificateMessage {
|
|
|
107
107
|
* <p>The contents of a <code>.pem</code> file, which contains an X.509 certificate.</p>
|
|
108
108
|
* @public
|
|
109
109
|
*/
|
|
110
|
-
CertificatePem?: string;
|
|
110
|
+
CertificatePem?: string | undefined;
|
|
111
111
|
/**
|
|
112
112
|
* <p>The location of an imported Oracle Wallet certificate for use with SSL. Provide the name of a <code>.sso</code> file
|
|
113
113
|
* using the <code>fileb://</code> prefix. You can't provide the certificate inline.</p>
|
|
@@ -115,12 +115,12 @@ export interface ImportCertificateMessage {
|
|
|
115
115
|
* </p>
|
|
116
116
|
* @public
|
|
117
117
|
*/
|
|
118
|
-
CertificateWallet?: Uint8Array;
|
|
118
|
+
CertificateWallet?: Uint8Array | undefined;
|
|
119
119
|
/**
|
|
120
120
|
* <p>The tags associated with the certificate.</p>
|
|
121
121
|
* @public
|
|
122
122
|
*/
|
|
123
|
-
Tags?: Tag[];
|
|
123
|
+
Tags?: Tag[] | undefined;
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
126
|
* @public
|
|
@@ -130,7 +130,7 @@ export interface ImportCertificateResponse {
|
|
|
130
130
|
* <p>The certificate to be uploaded.</p>
|
|
131
131
|
* @public
|
|
132
132
|
*/
|
|
133
|
-
Certificate?: Certificate;
|
|
133
|
+
Certificate?: Certificate | undefined;
|
|
134
134
|
}
|
|
135
135
|
/**
|
|
136
136
|
* <p>The certificate was not valid.</p>
|
|
@@ -155,7 +155,7 @@ export interface ListTagsForResourceMessage {
|
|
|
155
155
|
* their associated tag values.</p>
|
|
156
156
|
* @public
|
|
157
157
|
*/
|
|
158
|
-
ResourceArn?: string;
|
|
158
|
+
ResourceArn?: string | undefined;
|
|
159
159
|
/**
|
|
160
160
|
* <p>List of ARNs that identify multiple DMS resources that you want to list tags for. This
|
|
161
161
|
* returns a list of keys (tag names) and their associated tag values. It also returns each
|
|
@@ -163,7 +163,7 @@ export interface ListTagsForResourceMessage {
|
|
|
163
163
|
* each listed tag is created. </p>
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
|
-
ResourceArnList?: string[];
|
|
166
|
+
ResourceArnList?: string[] | undefined;
|
|
167
167
|
}
|
|
168
168
|
/**
|
|
169
169
|
* <p></p>
|
|
@@ -174,7 +174,7 @@ export interface ListTagsForResourceResponse {
|
|
|
174
174
|
* <p>A list of tags for the resource.</p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
TagList?: Tag[];
|
|
177
|
+
TagList?: Tag[] | undefined;
|
|
178
178
|
}
|
|
179
179
|
/**
|
|
180
180
|
* @public
|
|
@@ -199,7 +199,7 @@ export interface ModifyConversionConfigurationResponse {
|
|
|
199
199
|
* <p>The name or Amazon Resource Name (ARN) of the modified configuration.</p>
|
|
200
200
|
* @public
|
|
201
201
|
*/
|
|
202
|
-
MigrationProjectIdentifier?: string;
|
|
202
|
+
MigrationProjectIdentifier?: string | undefined;
|
|
203
203
|
}
|
|
204
204
|
/**
|
|
205
205
|
* @public
|
|
@@ -214,37 +214,37 @@ export interface ModifyDataMigrationMessage {
|
|
|
214
214
|
* <p>The new name for the data migration.</p>
|
|
215
215
|
* @public
|
|
216
216
|
*/
|
|
217
|
-
DataMigrationName?: string;
|
|
217
|
+
DataMigrationName?: string | undefined;
|
|
218
218
|
/**
|
|
219
219
|
* <p>Whether to enable Cloudwatch logs for the data migration.</p>
|
|
220
220
|
* @public
|
|
221
221
|
*/
|
|
222
|
-
EnableCloudwatchLogs?: boolean;
|
|
222
|
+
EnableCloudwatchLogs?: boolean | undefined;
|
|
223
223
|
/**
|
|
224
224
|
* <p>The new service access role ARN for the data migration.</p>
|
|
225
225
|
* @public
|
|
226
226
|
*/
|
|
227
|
-
ServiceAccessRoleArn?: string;
|
|
227
|
+
ServiceAccessRoleArn?: string | undefined;
|
|
228
228
|
/**
|
|
229
229
|
* <p>The new migration type for the data migration.</p>
|
|
230
230
|
* @public
|
|
231
231
|
*/
|
|
232
|
-
DataMigrationType?: MigrationTypeValue;
|
|
232
|
+
DataMigrationType?: MigrationTypeValue | undefined;
|
|
233
233
|
/**
|
|
234
234
|
* <p>The new information about the source data provider for the data migration.</p>
|
|
235
235
|
* @public
|
|
236
236
|
*/
|
|
237
|
-
SourceDataSettings?: SourceDataSetting[];
|
|
237
|
+
SourceDataSettings?: SourceDataSetting[] | undefined;
|
|
238
238
|
/**
|
|
239
239
|
* <p>The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.</p>
|
|
240
240
|
* @public
|
|
241
241
|
*/
|
|
242
|
-
NumberOfJobs?: number;
|
|
242
|
+
NumberOfJobs?: number | undefined;
|
|
243
243
|
/**
|
|
244
244
|
* <p>A JSON-formatted string that defines what objects to include and exclude from the migration.</p>
|
|
245
245
|
* @public
|
|
246
246
|
*/
|
|
247
|
-
SelectionRules?: string;
|
|
247
|
+
SelectionRules?: string | undefined;
|
|
248
248
|
}
|
|
249
249
|
/**
|
|
250
250
|
* @public
|
|
@@ -254,7 +254,7 @@ export interface ModifyDataMigrationResponse {
|
|
|
254
254
|
* <p>Information about the modified data migration.</p>
|
|
255
255
|
* @public
|
|
256
256
|
*/
|
|
257
|
-
DataMigration?: DataMigration;
|
|
257
|
+
DataMigration?: DataMigration | undefined;
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
260
|
* @public
|
|
@@ -271,19 +271,19 @@ export interface ModifyDataProviderMessage {
|
|
|
271
271
|
* <p>The name of the data provider.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
DataProviderName?: string;
|
|
274
|
+
DataProviderName?: string | undefined;
|
|
275
275
|
/**
|
|
276
276
|
* <p>A user-friendly description of the data provider.</p>
|
|
277
277
|
* @public
|
|
278
278
|
*/
|
|
279
|
-
Description?: string;
|
|
279
|
+
Description?: string | undefined;
|
|
280
280
|
/**
|
|
281
281
|
* <p>The type of database engine for the data provider. Valid values include <code>"aurora"</code>,
|
|
282
282
|
* <code>"aurora-postgresql"</code>, <code>"mysql"</code>, <code>"oracle"</code>, <code>"postgres"</code>,
|
|
283
283
|
* <code>"sqlserver"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, and <code>docdb</code>. A value of <code>"aurora"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>
|
|
284
284
|
* @public
|
|
285
285
|
*/
|
|
286
|
-
Engine?: string;
|
|
286
|
+
Engine?: string | undefined;
|
|
287
287
|
/**
|
|
288
288
|
* <p>If this attribute is Y, the current call to <code>ModifyDataProvider</code> replaces all
|
|
289
289
|
* existing data provider settings with the exact settings that you specify in this call. If this
|
|
@@ -300,12 +300,12 @@ export interface ModifyDataProviderMessage {
|
|
|
300
300
|
* </ul>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
ExactSettings?: boolean;
|
|
303
|
+
ExactSettings?: boolean | undefined;
|
|
304
304
|
/**
|
|
305
305
|
* <p>The settings in JSON format for a data provider.</p>
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
|
-
Settings?: DataProviderSettings;
|
|
308
|
+
Settings?: DataProviderSettings | undefined;
|
|
309
309
|
}
|
|
310
310
|
/**
|
|
311
311
|
* @public
|
|
@@ -315,7 +315,7 @@ export interface ModifyDataProviderResponse {
|
|
|
315
315
|
* <p>The data provider that was modified.</p>
|
|
316
316
|
* @public
|
|
317
317
|
*/
|
|
318
|
-
DataProvider?: DataProvider;
|
|
318
|
+
DataProvider?: DataProvider | undefined;
|
|
319
319
|
}
|
|
320
320
|
/**
|
|
321
321
|
* <p></p>
|
|
@@ -333,12 +333,12 @@ export interface ModifyEndpointMessage {
|
|
|
333
333
|
* consecutive hyphens.</p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
EndpointIdentifier?: string;
|
|
336
|
+
EndpointIdentifier?: string | undefined;
|
|
337
337
|
/**
|
|
338
338
|
* <p>The type of endpoint. Valid values are <code>source</code> and <code>target</code>.</p>
|
|
339
339
|
* @public
|
|
340
340
|
*/
|
|
341
|
-
EndpointType?: ReplicationEndpointTypeValue;
|
|
341
|
+
EndpointType?: ReplicationEndpointTypeValue | undefined;
|
|
342
342
|
/**
|
|
343
343
|
* <p>The database engine name. Valid values, depending on the EndpointType, include
|
|
344
344
|
* <code>"mysql"</code>, <code>"oracle"</code>, <code>"postgres"</code>,
|
|
@@ -350,59 +350,59 @@ export interface ModifyEndpointMessage {
|
|
|
350
350
|
* <code>"neptune"</code>, and <code>"babelfish"</code>.</p>
|
|
351
351
|
* @public
|
|
352
352
|
*/
|
|
353
|
-
EngineName?: string;
|
|
353
|
+
EngineName?: string | undefined;
|
|
354
354
|
/**
|
|
355
355
|
* <p>The user name to be used to login to the endpoint database.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
Username?: string;
|
|
358
|
+
Username?: string | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* <p>The password to be used to login to the endpoint database.</p>
|
|
361
361
|
* @public
|
|
362
362
|
*/
|
|
363
|
-
Password?: string;
|
|
363
|
+
Password?: string | undefined;
|
|
364
364
|
/**
|
|
365
365
|
* <p>The name of the server where the endpoint database resides.</p>
|
|
366
366
|
* @public
|
|
367
367
|
*/
|
|
368
|
-
ServerName?: string;
|
|
368
|
+
ServerName?: string | undefined;
|
|
369
369
|
/**
|
|
370
370
|
* <p>The port used by the endpoint database.</p>
|
|
371
371
|
* @public
|
|
372
372
|
*/
|
|
373
|
-
Port?: number;
|
|
373
|
+
Port?: number | undefined;
|
|
374
374
|
/**
|
|
375
375
|
* <p>The name of the endpoint database. For a MySQL source or target endpoint, do not specify DatabaseName.</p>
|
|
376
376
|
* @public
|
|
377
377
|
*/
|
|
378
|
-
DatabaseName?: string;
|
|
378
|
+
DatabaseName?: string | undefined;
|
|
379
379
|
/**
|
|
380
380
|
* <p>Additional attributes associated with the connection. To reset this parameter, pass the
|
|
381
381
|
* empty string ("") as an argument.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
ExtraConnectionAttributes?: string;
|
|
384
|
+
ExtraConnectionAttributes?: string | undefined;
|
|
385
385
|
/**
|
|
386
386
|
* <p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
|
-
CertificateArn?: string;
|
|
389
|
+
CertificateArn?: string | undefined;
|
|
390
390
|
/**
|
|
391
391
|
* <p>The SSL mode used to connect to the endpoint. The default value is <code>none</code>.</p>
|
|
392
392
|
* @public
|
|
393
393
|
*/
|
|
394
|
-
SslMode?: DmsSslModeValue;
|
|
394
|
+
SslMode?: DmsSslModeValue | undefined;
|
|
395
395
|
/**
|
|
396
396
|
* <p> The Amazon Resource Name (ARN) for the IAM role you want to use to modify
|
|
397
397
|
* the endpoint. The role must allow the <code>iam:PassRole</code> action.</p>
|
|
398
398
|
* @public
|
|
399
399
|
*/
|
|
400
|
-
ServiceAccessRoleArn?: string;
|
|
400
|
+
ServiceAccessRoleArn?: string | undefined;
|
|
401
401
|
/**
|
|
402
402
|
* <p>The external table definition.</p>
|
|
403
403
|
* @public
|
|
404
404
|
*/
|
|
405
|
-
ExternalTableDefinition?: string;
|
|
405
|
+
ExternalTableDefinition?: string | undefined;
|
|
406
406
|
/**
|
|
407
407
|
* <p>Settings in JSON format for the target Amazon DynamoDB endpoint. For information about other
|
|
408
408
|
* available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.DynamoDB.html#CHAP_Target.DynamoDB.ObjectMapping">Using Object Mapping to Migrate
|
|
@@ -411,7 +411,7 @@ export interface ModifyEndpointMessage {
|
|
|
411
411
|
* </p>
|
|
412
412
|
* @public
|
|
413
413
|
*/
|
|
414
|
-
DynamoDbSettings?: DynamoDbSettings;
|
|
414
|
+
DynamoDbSettings?: DynamoDbSettings | undefined;
|
|
415
415
|
/**
|
|
416
416
|
* <p>Settings in JSON format for the target Amazon S3 endpoint. For more information about
|
|
417
417
|
* the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.Configuring">Extra
|
|
@@ -420,7 +420,7 @@ export interface ModifyEndpointMessage {
|
|
|
420
420
|
* </p>
|
|
421
421
|
* @public
|
|
422
422
|
*/
|
|
423
|
-
S3Settings?: S3Settings;
|
|
423
|
+
S3Settings?: S3Settings | undefined;
|
|
424
424
|
/**
|
|
425
425
|
* <p>The settings in JSON format for the DMS transfer type of source endpoint. </p>
|
|
426
426
|
* <p>Attributes include the following:</p>
|
|
@@ -440,7 +440,7 @@ export interface ModifyEndpointMessage {
|
|
|
440
440
|
* </p>
|
|
441
441
|
* @public
|
|
442
442
|
*/
|
|
443
|
-
DmsTransferSettings?: DmsTransferSettings;
|
|
443
|
+
DmsTransferSettings?: DmsTransferSettings | undefined;
|
|
444
444
|
/**
|
|
445
445
|
* <p>Settings in JSON format for the source MongoDB endpoint. For more information about the
|
|
446
446
|
* available settings, see the configuration properties section in <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MongoDB.html#CHAP_Source.MongoDB.Configuration">Endpoint configuration settings
|
|
@@ -449,7 +449,7 @@ export interface ModifyEndpointMessage {
|
|
|
449
449
|
* </p>
|
|
450
450
|
* @public
|
|
451
451
|
*/
|
|
452
|
-
MongoDbSettings?: MongoDbSettings;
|
|
452
|
+
MongoDbSettings?: MongoDbSettings | undefined;
|
|
453
453
|
/**
|
|
454
454
|
* <p>Settings in JSON format for the target endpoint for Amazon Kinesis Data Streams. For
|
|
455
455
|
* more information about the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kinesis.html#CHAP_Target.Kinesis.ObjectMapping">Using object mapping to
|
|
@@ -457,7 +457,7 @@ export interface ModifyEndpointMessage {
|
|
|
457
457
|
* </p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
KinesisSettings?: KinesisSettings;
|
|
460
|
+
KinesisSettings?: KinesisSettings | undefined;
|
|
461
461
|
/**
|
|
462
462
|
* <p>Settings in JSON format for the target Apache Kafka endpoint. For more information about
|
|
463
463
|
* the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Kafka.html#CHAP_Target.Kafka.ObjectMapping">Using object mapping
|
|
@@ -465,7 +465,7 @@ export interface ModifyEndpointMessage {
|
|
|
465
465
|
* </p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
KafkaSettings?: KafkaSettings;
|
|
468
|
+
KafkaSettings?: KafkaSettings | undefined;
|
|
469
469
|
/**
|
|
470
470
|
* <p>Settings in JSON format for the target OpenSearch endpoint. For more information
|
|
471
471
|
* about the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Elasticsearch.html#CHAP_Target.Elasticsearch.Configuration">Extra Connection Attributes When Using OpenSearch as a Target for DMS</a> in
|
|
@@ -473,7 +473,7 @@ export interface ModifyEndpointMessage {
|
|
|
473
473
|
* </p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
ElasticsearchSettings?: ElasticsearchSettings;
|
|
476
|
+
ElasticsearchSettings?: ElasticsearchSettings | undefined;
|
|
477
477
|
/**
|
|
478
478
|
* <p>Settings in JSON format for the target Amazon Neptune endpoint. For more information
|
|
479
479
|
* about the available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.Neptune.html#CHAP_Target.Neptune.EndpointSettings">Specifying graph-mapping rules using Gremlin and R2RML for Amazon Neptune as a target</a>
|
|
@@ -481,12 +481,12 @@ export interface ModifyEndpointMessage {
|
|
|
481
481
|
* </p>
|
|
482
482
|
* @public
|
|
483
483
|
*/
|
|
484
|
-
NeptuneSettings?: NeptuneSettings;
|
|
484
|
+
NeptuneSettings?: NeptuneSettings | undefined;
|
|
485
485
|
/**
|
|
486
486
|
* <p>Provides information that defines an Amazon Redshift endpoint.</p>
|
|
487
487
|
* @public
|
|
488
488
|
*/
|
|
489
|
-
RedshiftSettings?: RedshiftSettings;
|
|
489
|
+
RedshiftSettings?: RedshiftSettings | undefined;
|
|
490
490
|
/**
|
|
491
491
|
* <p>Settings in JSON format for the source and target PostgreSQL endpoint. For information
|
|
492
492
|
* about other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.PostgreSQL.html#CHAP_Source.PostgreSQL.ConnectionAttrib">Extra connection
|
|
@@ -496,7 +496,7 @@ export interface ModifyEndpointMessage {
|
|
|
496
496
|
* </p>
|
|
497
497
|
* @public
|
|
498
498
|
*/
|
|
499
|
-
PostgreSQLSettings?: PostgreSQLSettings;
|
|
499
|
+
PostgreSQLSettings?: PostgreSQLSettings | undefined;
|
|
500
500
|
/**
|
|
501
501
|
* <p>Settings in JSON format for the source and target MySQL endpoint. For information about
|
|
502
502
|
* other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.MySQL.html#CHAP_Source.MySQL.ConnectionAttrib">Extra connection
|
|
@@ -506,7 +506,7 @@ export interface ModifyEndpointMessage {
|
|
|
506
506
|
* </p>
|
|
507
507
|
* @public
|
|
508
508
|
*/
|
|
509
|
-
MySQLSettings?: MySQLSettings;
|
|
509
|
+
MySQLSettings?: MySQLSettings | undefined;
|
|
510
510
|
/**
|
|
511
511
|
* <p>Settings in JSON format for the source and target Oracle endpoint. For information about
|
|
512
512
|
* other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.Oracle.html#CHAP_Source.Oracle.ConnectionAttrib">Extra connection
|
|
@@ -516,7 +516,7 @@ export interface ModifyEndpointMessage {
|
|
|
516
516
|
* </p>
|
|
517
517
|
* @public
|
|
518
518
|
*/
|
|
519
|
-
OracleSettings?: OracleSettings;
|
|
519
|
+
OracleSettings?: OracleSettings | undefined;
|
|
520
520
|
/**
|
|
521
521
|
* <p>Settings in JSON format for the source and target SAP ASE endpoint. For information
|
|
522
522
|
* about other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SAP.html#CHAP_Source.SAP.ConnectionAttrib">Extra connection attributes
|
|
@@ -526,7 +526,7 @@ export interface ModifyEndpointMessage {
|
|
|
526
526
|
* </p>
|
|
527
527
|
* @public
|
|
528
528
|
*/
|
|
529
|
-
SybaseSettings?: SybaseSettings;
|
|
529
|
+
SybaseSettings?: SybaseSettings | undefined;
|
|
530
530
|
/**
|
|
531
531
|
* <p>Settings in JSON format for the source and target Microsoft SQL Server endpoint. For
|
|
532
532
|
* information about other available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.SQLServer.html#CHAP_Source.SQLServer.ConnectionAttrib">Extra connection
|
|
@@ -536,7 +536,7 @@ export interface ModifyEndpointMessage {
|
|
|
536
536
|
* </p>
|
|
537
537
|
* @public
|
|
538
538
|
*/
|
|
539
|
-
MicrosoftSQLServerSettings?: MicrosoftSQLServerSettings;
|
|
539
|
+
MicrosoftSQLServerSettings?: MicrosoftSQLServerSettings | undefined;
|
|
540
540
|
/**
|
|
541
541
|
* <p>Settings in JSON format for the source IBM Db2 LUW endpoint. For information about other
|
|
542
542
|
* available settings, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DB2.html#CHAP_Source.DB2.ConnectionAttrib">Extra connection attributes
|
|
@@ -545,7 +545,7 @@ export interface ModifyEndpointMessage {
|
|
|
545
545
|
* </p>
|
|
546
546
|
* @public
|
|
547
547
|
*/
|
|
548
|
-
IBMDb2Settings?: IBMDb2Settings;
|
|
548
|
+
IBMDb2Settings?: IBMDb2Settings | undefined;
|
|
549
549
|
/**
|
|
550
550
|
* <p>Settings in JSON format for the source DocumentDB endpoint. For more information about the
|
|
551
551
|
* available settings, see the configuration properties section in <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Source.DocumentDB.html"> Using DocumentDB as a Target for Database Migration Service
|
|
@@ -554,12 +554,12 @@ export interface ModifyEndpointMessage {
|
|
|
554
554
|
* </p>
|
|
555
555
|
* @public
|
|
556
556
|
*/
|
|
557
|
-
DocDbSettings?: DocDbSettings;
|
|
557
|
+
DocDbSettings?: DocDbSettings | undefined;
|
|
558
558
|
/**
|
|
559
559
|
* <p>Settings in JSON format for the Redis target endpoint.</p>
|
|
560
560
|
* @public
|
|
561
561
|
*/
|
|
562
|
-
RedisSettings?: RedisSettings;
|
|
562
|
+
RedisSettings?: RedisSettings | undefined;
|
|
563
563
|
/**
|
|
564
564
|
* <p>If this attribute is Y, the current call to <code>ModifyEndpoint</code> replaces all
|
|
565
565
|
* existing endpoint settings with the exact settings that you specify in this call. If this
|
|
@@ -584,17 +584,17 @@ export interface ModifyEndpointMessage {
|
|
|
584
584
|
* are replaced with the exact settings that you specify. </p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
ExactSettings?: boolean;
|
|
587
|
+
ExactSettings?: boolean | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* <p>Settings in JSON format for the source GCP MySQL endpoint.</p>
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
GcpMySQLSettings?: GcpMySQLSettings;
|
|
592
|
+
GcpMySQLSettings?: GcpMySQLSettings | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* <p>Settings in JSON format for the target Amazon Timestream endpoint.</p>
|
|
595
595
|
* @public
|
|
596
596
|
*/
|
|
597
|
-
TimestreamSettings?: TimestreamSettings;
|
|
597
|
+
TimestreamSettings?: TimestreamSettings | undefined;
|
|
598
598
|
}
|
|
599
599
|
/**
|
|
600
600
|
* <p></p>
|
|
@@ -605,7 +605,7 @@ export interface ModifyEndpointResponse {
|
|
|
605
605
|
* <p>The modified endpoint.</p>
|
|
606
606
|
* @public
|
|
607
607
|
*/
|
|
608
|
-
Endpoint?: Endpoint;
|
|
608
|
+
Endpoint?: Endpoint | undefined;
|
|
609
609
|
}
|
|
610
610
|
/**
|
|
611
611
|
* <p></p>
|
|
@@ -622,25 +622,25 @@ export interface ModifyEventSubscriptionMessage {
|
|
|
622
622
|
* The ARN is created by Amazon SNS when you create a topic and subscribe to it.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
SnsTopicArn?: string;
|
|
625
|
+
SnsTopicArn?: string | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* <p> The type of DMS resource that generates the events you want to subscribe to. </p>
|
|
628
628
|
* <p>Valid values: replication-instance | replication-task</p>
|
|
629
629
|
* @public
|
|
630
630
|
*/
|
|
631
|
-
SourceType?: string;
|
|
631
|
+
SourceType?: string | undefined;
|
|
632
632
|
/**
|
|
633
633
|
* <p> A list of event categories for a source type that you want to subscribe to. Use the
|
|
634
634
|
* <code>DescribeEventCategories</code> action to see a list of event categories. </p>
|
|
635
635
|
* @public
|
|
636
636
|
*/
|
|
637
|
-
EventCategories?: string[];
|
|
637
|
+
EventCategories?: string[] | undefined;
|
|
638
638
|
/**
|
|
639
639
|
* <p> A Boolean value; set to <b>true</b> to activate the
|
|
640
640
|
* subscription. </p>
|
|
641
641
|
* @public
|
|
642
642
|
*/
|
|
643
|
-
Enabled?: boolean;
|
|
643
|
+
Enabled?: boolean | undefined;
|
|
644
644
|
}
|
|
645
645
|
/**
|
|
646
646
|
* <p></p>
|
|
@@ -651,7 +651,7 @@ export interface ModifyEventSubscriptionResponse {
|
|
|
651
651
|
* <p>The modified event subscription.</p>
|
|
652
652
|
* @public
|
|
653
653
|
*/
|
|
654
|
-
EventSubscription?: EventSubscription;
|
|
654
|
+
EventSubscription?: EventSubscription | undefined;
|
|
655
655
|
}
|
|
656
656
|
/**
|
|
657
657
|
* @public
|
|
@@ -668,7 +668,7 @@ export interface ModifyInstanceProfileMessage {
|
|
|
668
668
|
* <p>The Availability Zone where the instance profile runs.</p>
|
|
669
669
|
* @public
|
|
670
670
|
*/
|
|
671
|
-
AvailabilityZone?: string;
|
|
671
|
+
AvailabilityZone?: string | undefined;
|
|
672
672
|
/**
|
|
673
673
|
* <p>The Amazon Resource Name (ARN) of the KMS key that is used to encrypt
|
|
674
674
|
* the connection parameters for the instance profile.</p>
|
|
@@ -678,7 +678,7 @@ export interface ModifyInstanceProfileMessage {
|
|
|
678
678
|
* different default encryption key for each Amazon Web Services Region.</p>
|
|
679
679
|
* @public
|
|
680
680
|
*/
|
|
681
|
-
KmsKeyArn?: string;
|
|
681
|
+
KmsKeyArn?: string | undefined;
|
|
682
682
|
/**
|
|
683
683
|
* <p>Specifies the accessibility options for the instance profile. A value of
|
|
684
684
|
* <code>true</code> represents an instance profile with a public IP address. A value of
|
|
@@ -686,7 +686,7 @@ export interface ModifyInstanceProfileMessage {
|
|
|
686
686
|
* is <code>true</code>.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
PubliclyAccessible?: boolean;
|
|
689
|
+
PubliclyAccessible?: boolean | undefined;
|
|
690
690
|
/**
|
|
691
691
|
* <p>Specifies the network type for the instance profile. A value of <code>IPV4</code>
|
|
692
692
|
* represents an instance profile with IPv4 network type and only supports IPv4 addressing.
|
|
@@ -695,28 +695,28 @@ export interface ModifyInstanceProfileMessage {
|
|
|
695
695
|
* profile with dual network type that supports IPv4 and IPv6 addressing.</p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
NetworkType?: string;
|
|
698
|
+
NetworkType?: string | undefined;
|
|
699
699
|
/**
|
|
700
700
|
* <p>A user-friendly name for the instance profile.</p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
InstanceProfileName?: string;
|
|
703
|
+
InstanceProfileName?: string | undefined;
|
|
704
704
|
/**
|
|
705
705
|
* <p>A user-friendly description for the instance profile.</p>
|
|
706
706
|
* @public
|
|
707
707
|
*/
|
|
708
|
-
Description?: string;
|
|
708
|
+
Description?: string | undefined;
|
|
709
709
|
/**
|
|
710
710
|
* <p>A subnet group to associate with the instance profile.</p>
|
|
711
711
|
* @public
|
|
712
712
|
*/
|
|
713
|
-
SubnetGroupIdentifier?: string;
|
|
713
|
+
SubnetGroupIdentifier?: string | undefined;
|
|
714
714
|
/**
|
|
715
715
|
* <p>Specifies the VPC security groups to be used with the instance profile.
|
|
716
716
|
* The VPC security group must work with the VPC containing the instance profile.</p>
|
|
717
717
|
* @public
|
|
718
718
|
*/
|
|
719
|
-
VpcSecurityGroups?: string[];
|
|
719
|
+
VpcSecurityGroups?: string[] | undefined;
|
|
720
720
|
}
|
|
721
721
|
/**
|
|
722
722
|
* @public
|
|
@@ -726,7 +726,7 @@ export interface ModifyInstanceProfileResponse {
|
|
|
726
726
|
* <p>The instance profile that was modified.</p>
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
InstanceProfile?: InstanceProfile;
|
|
729
|
+
InstanceProfile?: InstanceProfile | undefined;
|
|
730
730
|
}
|
|
731
731
|
/**
|
|
732
732
|
* @public
|
|
@@ -743,39 +743,39 @@ export interface ModifyMigrationProjectMessage {
|
|
|
743
743
|
* <p>A user-friendly name for the migration project.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
MigrationProjectName?: string;
|
|
746
|
+
MigrationProjectName?: string | undefined;
|
|
747
747
|
/**
|
|
748
748
|
* <p>Information about the source data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.</p>
|
|
749
749
|
* @public
|
|
750
750
|
*/
|
|
751
|
-
SourceDataProviderDescriptors?: DataProviderDescriptorDefinition[];
|
|
751
|
+
SourceDataProviderDescriptors?: DataProviderDescriptorDefinition[] | undefined;
|
|
752
752
|
/**
|
|
753
753
|
* <p>Information about the target data provider, including the name, ARN, and Amazon Web Services Secrets Manager parameters.</p>
|
|
754
754
|
* @public
|
|
755
755
|
*/
|
|
756
|
-
TargetDataProviderDescriptors?: DataProviderDescriptorDefinition[];
|
|
756
|
+
TargetDataProviderDescriptors?: DataProviderDescriptorDefinition[] | undefined;
|
|
757
757
|
/**
|
|
758
758
|
* <p>The name or Amazon Resource Name (ARN) for the instance profile.</p>
|
|
759
759
|
* @public
|
|
760
760
|
*/
|
|
761
|
-
InstanceProfileIdentifier?: string;
|
|
761
|
+
InstanceProfileIdentifier?: string | undefined;
|
|
762
762
|
/**
|
|
763
763
|
* <p>The settings in JSON format for migration rules. Migration rules make it possible for you to change
|
|
764
764
|
* the object names according to the rules that you specify. For example, you can change an object name
|
|
765
765
|
* to lowercase or uppercase, add or remove a prefix or suffix, or rename objects.</p>
|
|
766
766
|
* @public
|
|
767
767
|
*/
|
|
768
|
-
TransformationRules?: string;
|
|
768
|
+
TransformationRules?: string | undefined;
|
|
769
769
|
/**
|
|
770
770
|
* <p>A user-friendly description of the migration project.</p>
|
|
771
771
|
* @public
|
|
772
772
|
*/
|
|
773
|
-
Description?: string;
|
|
773
|
+
Description?: string | undefined;
|
|
774
774
|
/**
|
|
775
775
|
* <p>The schema conversion application attributes, including the Amazon S3 bucket name and Amazon S3 role ARN.</p>
|
|
776
776
|
* @public
|
|
777
777
|
*/
|
|
778
|
-
SchemaConversionApplicationAttributes?: SCApplicationAttributes;
|
|
778
|
+
SchemaConversionApplicationAttributes?: SCApplicationAttributes | undefined;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
* @public
|
|
@@ -785,7 +785,7 @@ export interface ModifyMigrationProjectResponse {
|
|
|
785
785
|
* <p>The migration project that was modified.</p>
|
|
786
786
|
* @public
|
|
787
787
|
*/
|
|
788
|
-
MigrationProject?: MigrationProject;
|
|
788
|
+
MigrationProject?: MigrationProject | undefined;
|
|
789
789
|
}
|
|
790
790
|
/**
|
|
791
791
|
* <p></p>
|
|
@@ -801,44 +801,44 @@ export interface ModifyReplicationConfigMessage {
|
|
|
801
801
|
* <p>The new replication config to apply to the replication.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
ReplicationConfigIdentifier?: string;
|
|
804
|
+
ReplicationConfigIdentifier?: string | undefined;
|
|
805
805
|
/**
|
|
806
806
|
* <p>The type of replication.</p>
|
|
807
807
|
* @public
|
|
808
808
|
*/
|
|
809
|
-
ReplicationType?: MigrationTypeValue;
|
|
809
|
+
ReplicationType?: MigrationTypeValue | undefined;
|
|
810
810
|
/**
|
|
811
811
|
* <p>Table mappings specified in the replication.</p>
|
|
812
812
|
* @public
|
|
813
813
|
*/
|
|
814
|
-
TableMappings?: string;
|
|
814
|
+
TableMappings?: string | undefined;
|
|
815
815
|
/**
|
|
816
816
|
* <p>The settings for the replication.</p>
|
|
817
817
|
* @public
|
|
818
818
|
*/
|
|
819
|
-
ReplicationSettings?: string;
|
|
819
|
+
ReplicationSettings?: string | undefined;
|
|
820
820
|
/**
|
|
821
821
|
* <p>Additional settings for the replication.</p>
|
|
822
822
|
* @public
|
|
823
823
|
*/
|
|
824
|
-
SupplementalSettings?: string;
|
|
824
|
+
SupplementalSettings?: string | undefined;
|
|
825
825
|
/**
|
|
826
826
|
* <p>Configuration parameters for provisioning an DMS Serverless replication.</p>
|
|
827
827
|
* @public
|
|
828
828
|
*/
|
|
829
|
-
ComputeConfig?: ComputeConfig;
|
|
829
|
+
ComputeConfig?: ComputeConfig | undefined;
|
|
830
830
|
/**
|
|
831
831
|
* <p>The Amazon Resource Name (ARN) of the source endpoint for
|
|
832
832
|
* this DMS serverless replication configuration.</p>
|
|
833
833
|
* @public
|
|
834
834
|
*/
|
|
835
|
-
SourceEndpointArn?: string;
|
|
835
|
+
SourceEndpointArn?: string | undefined;
|
|
836
836
|
/**
|
|
837
837
|
* <p>The Amazon Resource Name (ARN) of the target endpoint for
|
|
838
838
|
* this DMS serverless replication configuration.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
TargetEndpointArn?: string;
|
|
841
|
+
TargetEndpointArn?: string | undefined;
|
|
842
842
|
}
|
|
843
843
|
/**
|
|
844
844
|
* @public
|
|
@@ -848,7 +848,7 @@ export interface ModifyReplicationConfigResponse {
|
|
|
848
848
|
* <p>Information about the serverless replication config that was modified.</p>
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
ReplicationConfig?: ReplicationConfig;
|
|
851
|
+
ReplicationConfig?: ReplicationConfig | undefined;
|
|
852
852
|
}
|
|
853
853
|
/**
|
|
854
854
|
* <p></p>
|
|
@@ -865,13 +865,13 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
865
865
|
* instance.</p>
|
|
866
866
|
* @public
|
|
867
867
|
*/
|
|
868
|
-
AllocatedStorage?: number;
|
|
868
|
+
AllocatedStorage?: number | undefined;
|
|
869
869
|
/**
|
|
870
870
|
* <p>Indicates whether the changes should be applied immediately or during the next
|
|
871
871
|
* maintenance window.</p>
|
|
872
872
|
* @public
|
|
873
873
|
*/
|
|
874
|
-
ApplyImmediately?: boolean;
|
|
874
|
+
ApplyImmediately?: boolean | undefined;
|
|
875
875
|
/**
|
|
876
876
|
* <p>The compute and memory capacity of the replication instance as defined for the specified
|
|
877
877
|
* replication instance class. For example to specify the instance class dms.c4.large, set this parameter to <code>"dms.c4.large"</code>.</p>
|
|
@@ -881,13 +881,13 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
881
881
|
* </p>
|
|
882
882
|
* @public
|
|
883
883
|
*/
|
|
884
|
-
ReplicationInstanceClass?: string;
|
|
884
|
+
ReplicationInstanceClass?: string | undefined;
|
|
885
885
|
/**
|
|
886
886
|
* <p> Specifies the VPC security group to be used with the replication instance. The VPC
|
|
887
887
|
* security group must work with the VPC containing the replication instance. </p>
|
|
888
888
|
* @public
|
|
889
889
|
*/
|
|
890
|
-
VpcSecurityGroupIds?: string[];
|
|
890
|
+
VpcSecurityGroupIds?: string[] | undefined;
|
|
891
891
|
/**
|
|
892
892
|
* <p>The weekly time range (in UTC) during which system maintenance can occur, which might
|
|
893
893
|
* result in an outage. Changing this parameter does not result in an outage, except in the
|
|
@@ -900,21 +900,21 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
900
900
|
* <p>Constraints: Must be at least 30 minutes</p>
|
|
901
901
|
* @public
|
|
902
902
|
*/
|
|
903
|
-
PreferredMaintenanceWindow?: string;
|
|
903
|
+
PreferredMaintenanceWindow?: string | undefined;
|
|
904
904
|
/**
|
|
905
905
|
* <p> Specifies whether the replication instance is a Multi-AZ deployment. You can't set the
|
|
906
906
|
* <code>AvailabilityZone</code> parameter if the Multi-AZ parameter is set to
|
|
907
907
|
* <code>true</code>. </p>
|
|
908
908
|
* @public
|
|
909
909
|
*/
|
|
910
|
-
MultiAZ?: boolean;
|
|
910
|
+
MultiAZ?: boolean | undefined;
|
|
911
911
|
/**
|
|
912
912
|
* <p>The engine version number of the replication instance.</p>
|
|
913
913
|
* <p>When modifying a major engine version of an instance, also set
|
|
914
914
|
* <code>AllowMajorVersionUpgrade</code> to <code>true</code>.</p>
|
|
915
915
|
* @public
|
|
916
916
|
*/
|
|
917
|
-
EngineVersion?: string;
|
|
917
|
+
EngineVersion?: string | undefined;
|
|
918
918
|
/**
|
|
919
919
|
* <p>Indicates that major version upgrades are allowed. Changing this parameter does not
|
|
920
920
|
* result in an outage, and the change is asynchronously applied as soon as possible.</p>
|
|
@@ -923,7 +923,7 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
923
923
|
* replication instance's current version.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
AllowMajorVersionUpgrade?: boolean;
|
|
926
|
+
AllowMajorVersionUpgrade?: boolean | undefined;
|
|
927
927
|
/**
|
|
928
928
|
* <p>A value that indicates that minor version upgrades are applied automatically to the
|
|
929
929
|
* replication instance during the maintenance window. Changing this parameter doesn't result
|
|
@@ -943,20 +943,20 @@ export interface ModifyReplicationInstanceMessage {
|
|
|
943
943
|
* </ul>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
AutoMinorVersionUpgrade?: boolean;
|
|
946
|
+
AutoMinorVersionUpgrade?: boolean | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>The replication instance identifier. This parameter is stored as a lowercase
|
|
949
949
|
* string.</p>
|
|
950
950
|
* @public
|
|
951
951
|
*/
|
|
952
|
-
ReplicationInstanceIdentifier?: string;
|
|
952
|
+
ReplicationInstanceIdentifier?: string | undefined;
|
|
953
953
|
/**
|
|
954
954
|
* <p>The type of IP address protocol used by a replication instance,
|
|
955
955
|
* such as IPv4 only or Dual-stack that supports both IPv4 and IPv6 addressing.
|
|
956
956
|
* IPv6 only is not yet supported.</p>
|
|
957
957
|
* @public
|
|
958
958
|
*/
|
|
959
|
-
NetworkType?: string;
|
|
959
|
+
NetworkType?: string | undefined;
|
|
960
960
|
}
|
|
961
961
|
/**
|
|
962
962
|
* <p></p>
|
|
@@ -967,7 +967,7 @@ export interface ModifyReplicationInstanceResponse {
|
|
|
967
967
|
* <p>The modified replication instance.</p>
|
|
968
968
|
* @public
|
|
969
969
|
*/
|
|
970
|
-
ReplicationInstance?: ReplicationInstance;
|
|
970
|
+
ReplicationInstance?: ReplicationInstance | undefined;
|
|
971
971
|
}
|
|
972
972
|
/**
|
|
973
973
|
* <p>An upgrade dependency is preventing the database migration.</p>
|
|
@@ -995,7 +995,7 @@ export interface ModifyReplicationSubnetGroupMessage {
|
|
|
995
995
|
* <p>A description for the replication instance subnet group.</p>
|
|
996
996
|
* @public
|
|
997
997
|
*/
|
|
998
|
-
ReplicationSubnetGroupDescription?: string;
|
|
998
|
+
ReplicationSubnetGroupDescription?: string | undefined;
|
|
999
999
|
/**
|
|
1000
1000
|
* <p>A list of subnet IDs.</p>
|
|
1001
1001
|
* @public
|
|
@@ -1011,7 +1011,7 @@ export interface ModifyReplicationSubnetGroupResponse {
|
|
|
1011
1011
|
* <p>The modified replication subnet group.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
ReplicationSubnetGroup?: ReplicationSubnetGroup;
|
|
1014
|
+
ReplicationSubnetGroup?: ReplicationSubnetGroup | undefined;
|
|
1015
1015
|
}
|
|
1016
1016
|
/**
|
|
1017
1017
|
* <p>The specified subnet is already in use.</p>
|
|
@@ -1051,13 +1051,13 @@ export interface ModifyReplicationTaskMessage {
|
|
|
1051
1051
|
* </ul>
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
ReplicationTaskIdentifier?: string;
|
|
1054
|
+
ReplicationTaskIdentifier?: string | undefined;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* <p>The migration type. Valid values: <code>full-load</code> | <code>cdc</code> | <code>full-load-and-cdc</code>
|
|
1057
1057
|
* </p>
|
|
1058
1058
|
* @public
|
|
1059
1059
|
*/
|
|
1060
|
-
MigrationType?: MigrationTypeValue;
|
|
1060
|
+
MigrationType?: MigrationTypeValue | undefined;
|
|
1061
1061
|
/**
|
|
1062
1062
|
* <p>When using the CLI or boto3, provide the path of the JSON file that contains the
|
|
1063
1063
|
* table mappings. Precede the path with <code>file://</code>. For example,
|
|
@@ -1066,12 +1066,12 @@ export interface ModifyReplicationTaskMessage {
|
|
|
1066
1066
|
* </p>
|
|
1067
1067
|
* @public
|
|
1068
1068
|
*/
|
|
1069
|
-
TableMappings?: string;
|
|
1069
|
+
TableMappings?: string | undefined;
|
|
1070
1070
|
/**
|
|
1071
1071
|
* <p>JSON file that contains settings for the task, such as task metadata settings.</p>
|
|
1072
1072
|
* @public
|
|
1073
1073
|
*/
|
|
1074
|
-
ReplicationTaskSettings?: string;
|
|
1074
|
+
ReplicationTaskSettings?: string | undefined;
|
|
1075
1075
|
/**
|
|
1076
1076
|
* <p>Indicates the start time for a change data capture (CDC) operation. Use either
|
|
1077
1077
|
* CdcStartTime or CdcStartPosition to specify when you want a CDC operation to start.
|
|
@@ -1079,7 +1079,7 @@ export interface ModifyReplicationTaskMessage {
|
|
|
1079
1079
|
* <p>Timestamp Example: --cdc-start-time “2018-03-08T12:12:12”</p>
|
|
1080
1080
|
* @public
|
|
1081
1081
|
*/
|
|
1082
|
-
CdcStartTime?: Date;
|
|
1082
|
+
CdcStartTime?: Date | undefined;
|
|
1083
1083
|
/**
|
|
1084
1084
|
* <p>Indicates when you want a change data capture (CDC) operation to start. Use either
|
|
1085
1085
|
* CdcStartPosition or CdcStartTime to specify when you want a CDC operation to start.
|
|
@@ -1098,7 +1098,7 @@ export interface ModifyReplicationTaskMessage {
|
|
|
1098
1098
|
* </note>
|
|
1099
1099
|
* @public
|
|
1100
1100
|
*/
|
|
1101
|
-
CdcStartPosition?: string;
|
|
1101
|
+
CdcStartPosition?: string | undefined;
|
|
1102
1102
|
/**
|
|
1103
1103
|
* <p>Indicates when you want a change data capture (CDC) operation to stop. The value can be
|
|
1104
1104
|
* either server time or commit time.</p>
|
|
@@ -1106,7 +1106,7 @@ export interface ModifyReplicationTaskMessage {
|
|
|
1106
1106
|
* <p>Commit time example: --cdc-stop-position “commit_time:2018-02-09T12:12:12“</p>
|
|
1107
1107
|
* @public
|
|
1108
1108
|
*/
|
|
1109
|
-
CdcStopPosition?: string;
|
|
1109
|
+
CdcStopPosition?: string | undefined;
|
|
1110
1110
|
/**
|
|
1111
1111
|
* <p>Supplemental information that the task requires to migrate the data for certain source and target endpoints.
|
|
1112
1112
|
* For more information, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.TaskData.html">Specifying Supplemental Data for Task Settings</a> in the
|
|
@@ -1114,7 +1114,7 @@ export interface ModifyReplicationTaskMessage {
|
|
|
1114
1114
|
* </p>
|
|
1115
1115
|
* @public
|
|
1116
1116
|
*/
|
|
1117
|
-
TaskData?: string;
|
|
1117
|
+
TaskData?: string | undefined;
|
|
1118
1118
|
}
|
|
1119
1119
|
/**
|
|
1120
1120
|
* <p></p>
|
|
@@ -1125,7 +1125,7 @@ export interface ModifyReplicationTaskResponse {
|
|
|
1125
1125
|
* <p>The replication task that was modified.</p>
|
|
1126
1126
|
* @public
|
|
1127
1127
|
*/
|
|
1128
|
-
ReplicationTask?: ReplicationTask;
|
|
1128
|
+
ReplicationTask?: ReplicationTask | undefined;
|
|
1129
1129
|
}
|
|
1130
1130
|
/**
|
|
1131
1131
|
* <p></p>
|
|
@@ -1152,7 +1152,7 @@ export interface MoveReplicationTaskResponse {
|
|
|
1152
1152
|
* <p>The replication task that was moved.</p>
|
|
1153
1153
|
* @public
|
|
1154
1154
|
*/
|
|
1155
|
-
ReplicationTask?: ReplicationTask;
|
|
1155
|
+
ReplicationTask?: ReplicationTask | undefined;
|
|
1156
1156
|
}
|
|
1157
1157
|
/**
|
|
1158
1158
|
* @public
|
|
@@ -1169,7 +1169,7 @@ export interface RebootReplicationInstanceMessage {
|
|
|
1169
1169
|
* <code>true</code>. ( <code>--force-planned-failover</code> and <code>--force-failover</code> can't both be set to <code>true</code>.)</p>
|
|
1170
1170
|
* @public
|
|
1171
1171
|
*/
|
|
1172
|
-
ForceFailover?: boolean;
|
|
1172
|
+
ForceFailover?: boolean | undefined;
|
|
1173
1173
|
/**
|
|
1174
1174
|
* <p>If this parameter is <code>true</code>, the reboot is conducted through a planned Multi-AZ failover
|
|
1175
1175
|
* where resources are released and cleaned up prior to conducting the failover.
|
|
@@ -1177,7 +1177,7 @@ export interface RebootReplicationInstanceMessage {
|
|
|
1177
1177
|
* ( <code>--force-planned-failover</code> and <code>--force-failover</code> can't both be set to <code>true</code>.)</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
ForcePlannedFailover?: boolean;
|
|
1180
|
+
ForcePlannedFailover?: boolean | undefined;
|
|
1181
1181
|
}
|
|
1182
1182
|
/**
|
|
1183
1183
|
* @public
|
|
@@ -1187,7 +1187,7 @@ export interface RebootReplicationInstanceResponse {
|
|
|
1187
1187
|
* <p>The replication instance that is being rebooted. </p>
|
|
1188
1188
|
* @public
|
|
1189
1189
|
*/
|
|
1190
|
-
ReplicationInstance?: ReplicationInstance;
|
|
1190
|
+
ReplicationInstance?: ReplicationInstance | undefined;
|
|
1191
1191
|
}
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <p></p>
|
|
@@ -1214,7 +1214,7 @@ export interface RefreshSchemasResponse {
|
|
|
1214
1214
|
* <p>The status of the refreshed schema.</p>
|
|
1215
1215
|
* @public
|
|
1216
1216
|
*/
|
|
1217
|
-
RefreshSchemasStatus?: RefreshSchemasStatus;
|
|
1217
|
+
RefreshSchemasStatus?: RefreshSchemasStatus | undefined;
|
|
1218
1218
|
}
|
|
1219
1219
|
/**
|
|
1220
1220
|
* @public
|
|
@@ -1265,7 +1265,7 @@ export interface ReloadReplicationTablesMessage {
|
|
|
1265
1265
|
* This option applies only when validation is enabled for the replication. </p>
|
|
1266
1266
|
* @public
|
|
1267
1267
|
*/
|
|
1268
|
-
ReloadOption?: ReloadOptionValue;
|
|
1268
|
+
ReloadOption?: ReloadOptionValue | undefined;
|
|
1269
1269
|
}
|
|
1270
1270
|
/**
|
|
1271
1271
|
* <p></p>
|
|
@@ -1276,7 +1276,7 @@ export interface ReloadReplicationTablesResponse {
|
|
|
1276
1276
|
* <p>The Amazon Resource Name of the replication config for which to reload tables.</p>
|
|
1277
1277
|
* @public
|
|
1278
1278
|
*/
|
|
1279
|
-
ReplicationConfigArn?: string;
|
|
1279
|
+
ReplicationConfigArn?: string | undefined;
|
|
1280
1280
|
}
|
|
1281
1281
|
/**
|
|
1282
1282
|
* @public
|
|
@@ -1300,7 +1300,7 @@ export interface ReloadTablesMessage {
|
|
|
1300
1300
|
* <p>Default value is data-reload.</p>
|
|
1301
1301
|
* @public
|
|
1302
1302
|
*/
|
|
1303
|
-
ReloadOption?: ReloadOptionValue;
|
|
1303
|
+
ReloadOption?: ReloadOptionValue | undefined;
|
|
1304
1304
|
}
|
|
1305
1305
|
/**
|
|
1306
1306
|
* @public
|
|
@@ -1310,7 +1310,7 @@ export interface ReloadTablesResponse {
|
|
|
1310
1310
|
* <p>The Amazon Resource Name (ARN) of the replication task. </p>
|
|
1311
1311
|
* @public
|
|
1312
1312
|
*/
|
|
1313
|
-
ReplicationTaskArn?: string;
|
|
1313
|
+
ReplicationTaskArn?: string | undefined;
|
|
1314
1314
|
}
|
|
1315
1315
|
/**
|
|
1316
1316
|
* <p>Removes one or more tags from an DMS resource.</p>
|
|
@@ -1342,12 +1342,12 @@ export interface RunFleetAdvisorLsaAnalysisResponse {
|
|
|
1342
1342
|
* <p>The ID of the LSA analysis run.</p>
|
|
1343
1343
|
* @public
|
|
1344
1344
|
*/
|
|
1345
|
-
LsaAnalysisId?: string;
|
|
1345
|
+
LsaAnalysisId?: string | undefined;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* <p>The status of the LSA analysis, for example <code>COMPLETED</code>.</p>
|
|
1348
1348
|
* @public
|
|
1349
1349
|
*/
|
|
1350
|
-
Status?: string;
|
|
1350
|
+
Status?: string | undefined;
|
|
1351
1351
|
}
|
|
1352
1352
|
/**
|
|
1353
1353
|
* @public
|
|
@@ -1386,7 +1386,7 @@ export interface StartDataMigrationResponse {
|
|
|
1386
1386
|
* <p>The data migration that DMS started.</p>
|
|
1387
1387
|
* @public
|
|
1388
1388
|
*/
|
|
1389
|
-
DataMigration?: DataMigration;
|
|
1389
|
+
DataMigration?: DataMigration | undefined;
|
|
1390
1390
|
}
|
|
1391
1391
|
/**
|
|
1392
1392
|
* @public
|
|
@@ -1406,7 +1406,7 @@ export interface StartExtensionPackAssociationResponse {
|
|
|
1406
1406
|
* <p>The identifier for the request operation.</p>
|
|
1407
1407
|
* @public
|
|
1408
1408
|
*/
|
|
1409
|
-
RequestIdentifier?: string;
|
|
1409
|
+
RequestIdentifier?: string | undefined;
|
|
1410
1410
|
}
|
|
1411
1411
|
/**
|
|
1412
1412
|
* @public
|
|
@@ -1431,7 +1431,7 @@ export interface StartMetadataModelAssessmentResponse {
|
|
|
1431
1431
|
* <p>The identifier for the assessment operation.</p>
|
|
1432
1432
|
* @public
|
|
1433
1433
|
*/
|
|
1434
|
-
RequestIdentifier?: string;
|
|
1434
|
+
RequestIdentifier?: string | undefined;
|
|
1435
1435
|
}
|
|
1436
1436
|
/**
|
|
1437
1437
|
* @public
|
|
@@ -1456,7 +1456,7 @@ export interface StartMetadataModelConversionResponse {
|
|
|
1456
1456
|
* <p>The identifier for the conversion operation.</p>
|
|
1457
1457
|
* @public
|
|
1458
1458
|
*/
|
|
1459
|
-
RequestIdentifier?: string;
|
|
1459
|
+
RequestIdentifier?: string | undefined;
|
|
1460
1460
|
}
|
|
1461
1461
|
/**
|
|
1462
1462
|
* @public
|
|
@@ -1493,7 +1493,7 @@ export interface StartMetadataModelExportAsScriptMessage {
|
|
|
1493
1493
|
* <p>The name of the model file to create in the Amazon S3 bucket.</p>
|
|
1494
1494
|
* @public
|
|
1495
1495
|
*/
|
|
1496
|
-
FileName?: string;
|
|
1496
|
+
FileName?: string | undefined;
|
|
1497
1497
|
}
|
|
1498
1498
|
/**
|
|
1499
1499
|
* @public
|
|
@@ -1503,7 +1503,7 @@ export interface StartMetadataModelExportAsScriptResponse {
|
|
|
1503
1503
|
* <p>The identifier for the export operation.</p>
|
|
1504
1504
|
* @public
|
|
1505
1505
|
*/
|
|
1506
|
-
RequestIdentifier?: string;
|
|
1506
|
+
RequestIdentifier?: string | undefined;
|
|
1507
1507
|
}
|
|
1508
1508
|
/**
|
|
1509
1509
|
* @public
|
|
@@ -1525,7 +1525,7 @@ export interface StartMetadataModelExportToTargetMessage {
|
|
|
1525
1525
|
* to the target database.</p>
|
|
1526
1526
|
* @public
|
|
1527
1527
|
*/
|
|
1528
|
-
OverwriteExtensionPack?: boolean;
|
|
1528
|
+
OverwriteExtensionPack?: boolean | undefined;
|
|
1529
1529
|
}
|
|
1530
1530
|
/**
|
|
1531
1531
|
* @public
|
|
@@ -1535,7 +1535,7 @@ export interface StartMetadataModelExportToTargetResponse {
|
|
|
1535
1535
|
* <p>The identifier for the export operation.</p>
|
|
1536
1536
|
* @public
|
|
1537
1537
|
*/
|
|
1538
|
-
RequestIdentifier?: string;
|
|
1538
|
+
RequestIdentifier?: string | undefined;
|
|
1539
1539
|
}
|
|
1540
1540
|
/**
|
|
1541
1541
|
* @public
|
|
@@ -1560,7 +1560,7 @@ export interface StartMetadataModelImportMessage {
|
|
|
1560
1560
|
* <p>If <code>true</code>, DMS loads metadata for the specified objects from the source database.</p>
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
Refresh?: boolean;
|
|
1563
|
+
Refresh?: boolean | undefined;
|
|
1564
1564
|
}
|
|
1565
1565
|
/**
|
|
1566
1566
|
* @public
|
|
@@ -1570,7 +1570,7 @@ export interface StartMetadataModelImportResponse {
|
|
|
1570
1570
|
* <p>The identifier for the import operation.</p>
|
|
1571
1571
|
* @public
|
|
1572
1572
|
*/
|
|
1573
|
-
RequestIdentifier?: string;
|
|
1573
|
+
RequestIdentifier?: string | undefined;
|
|
1574
1574
|
}
|
|
1575
1575
|
/**
|
|
1576
1576
|
* @public
|
|
@@ -1613,7 +1613,7 @@ export interface StartReplicationMessage {
|
|
|
1613
1613
|
* or <code>CdcStartPosition</code> to specify when you want a CDC operation to start. Specifying both values results in an error.</p>
|
|
1614
1614
|
* @public
|
|
1615
1615
|
*/
|
|
1616
|
-
CdcStartTime?: Date;
|
|
1616
|
+
CdcStartTime?: Date | undefined;
|
|
1617
1617
|
/**
|
|
1618
1618
|
* <p>Indicates when you want a change data capture (CDC) operation to start. Use either
|
|
1619
1619
|
* <code>CdcStartPosition</code> or <code>CdcStartTime</code> to specify when you want a
|
|
@@ -1621,13 +1621,13 @@ export interface StartReplicationMessage {
|
|
|
1621
1621
|
* <p>The value can be in date, checkpoint, or LSN/SCN format.</p>
|
|
1622
1622
|
* @public
|
|
1623
1623
|
*/
|
|
1624
|
-
CdcStartPosition?: string;
|
|
1624
|
+
CdcStartPosition?: string | undefined;
|
|
1625
1625
|
/**
|
|
1626
1626
|
* <p>Indicates when you want a change data capture (CDC) operation to stop. The value can be
|
|
1627
1627
|
* either server time or commit time.</p>
|
|
1628
1628
|
* @public
|
|
1629
1629
|
*/
|
|
1630
|
-
CdcStopPosition?: string;
|
|
1630
|
+
CdcStopPosition?: string | undefined;
|
|
1631
1631
|
}
|
|
1632
1632
|
/**
|
|
1633
1633
|
* <p></p>
|
|
@@ -1638,7 +1638,7 @@ export interface StartReplicationResponse {
|
|
|
1638
1638
|
* <p>The replication that DMS started.</p>
|
|
1639
1639
|
* @public
|
|
1640
1640
|
*/
|
|
1641
|
-
Replication?: Replication;
|
|
1641
|
+
Replication?: Replication | undefined;
|
|
1642
1642
|
}
|
|
1643
1643
|
/**
|
|
1644
1644
|
* @public
|
|
@@ -1685,7 +1685,7 @@ export interface StartReplicationTaskMessage {
|
|
|
1685
1685
|
* <p>Timestamp Example: --cdc-start-time “2018-03-08T12:12:12”</p>
|
|
1686
1686
|
* @public
|
|
1687
1687
|
*/
|
|
1688
|
-
CdcStartTime?: Date;
|
|
1688
|
+
CdcStartTime?: Date | undefined;
|
|
1689
1689
|
/**
|
|
1690
1690
|
* <p>Indicates when you want a change data capture (CDC) operation to start. Use either
|
|
1691
1691
|
* CdcStartPosition or CdcStartTime to specify when you want a CDC operation to start.
|
|
@@ -1704,7 +1704,7 @@ export interface StartReplicationTaskMessage {
|
|
|
1704
1704
|
* </note>
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
CdcStartPosition?: string;
|
|
1707
|
+
CdcStartPosition?: string | undefined;
|
|
1708
1708
|
/**
|
|
1709
1709
|
* <p>Indicates when you want a change data capture (CDC) operation to stop. The value can be
|
|
1710
1710
|
* either server time or commit time.</p>
|
|
@@ -1712,7 +1712,7 @@ export interface StartReplicationTaskMessage {
|
|
|
1712
1712
|
* <p>Commit time example: --cdc-stop-position “commit_time:2018-02-09T12:12:12“</p>
|
|
1713
1713
|
* @public
|
|
1714
1714
|
*/
|
|
1715
|
-
CdcStopPosition?: string;
|
|
1715
|
+
CdcStopPosition?: string | undefined;
|
|
1716
1716
|
}
|
|
1717
1717
|
/**
|
|
1718
1718
|
* <p></p>
|
|
@@ -1723,7 +1723,7 @@ export interface StartReplicationTaskResponse {
|
|
|
1723
1723
|
* <p>The replication task started.</p>
|
|
1724
1724
|
* @public
|
|
1725
1725
|
*/
|
|
1726
|
-
ReplicationTask?: ReplicationTask;
|
|
1726
|
+
ReplicationTask?: ReplicationTask | undefined;
|
|
1727
1727
|
}
|
|
1728
1728
|
/**
|
|
1729
1729
|
* <p></p>
|
|
@@ -1745,7 +1745,7 @@ export interface StartReplicationTaskAssessmentResponse {
|
|
|
1745
1745
|
* <p> The assessed replication task. </p>
|
|
1746
1746
|
* @public
|
|
1747
1747
|
*/
|
|
1748
|
-
ReplicationTask?: ReplicationTask;
|
|
1748
|
+
ReplicationTask?: ReplicationTask | undefined;
|
|
1749
1749
|
}
|
|
1750
1750
|
/**
|
|
1751
1751
|
* <p>An Key Management Service (KMS) error is preventing access to KMS.</p>
|
|
@@ -1786,7 +1786,7 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
1786
1786
|
* run.</p>
|
|
1787
1787
|
* @public
|
|
1788
1788
|
*/
|
|
1789
|
-
ResultLocationFolder?: string;
|
|
1789
|
+
ResultLocationFolder?: string | undefined;
|
|
1790
1790
|
/**
|
|
1791
1791
|
* <p>Encryption mode that you can specify to encrypt the results of this assessment run. If
|
|
1792
1792
|
* you don't specify this request parameter, DMS stores the assessment run results
|
|
@@ -1806,13 +1806,13 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
1806
1806
|
* </ul>
|
|
1807
1807
|
* @public
|
|
1808
1808
|
*/
|
|
1809
|
-
ResultEncryptionMode?: string;
|
|
1809
|
+
ResultEncryptionMode?: string | undefined;
|
|
1810
1810
|
/**
|
|
1811
1811
|
* <p>ARN of a custom KMS encryption key that you specify when you set
|
|
1812
1812
|
* <code>ResultEncryptionMode</code> to <code>"SSE_KMS</code>".</p>
|
|
1813
1813
|
* @public
|
|
1814
1814
|
*/
|
|
1815
|
-
ResultKmsKeyArn?: string;
|
|
1815
|
+
ResultKmsKeyArn?: string | undefined;
|
|
1816
1816
|
/**
|
|
1817
1817
|
* <p>Unique name to identify the assessment run.</p>
|
|
1818
1818
|
* @public
|
|
@@ -1833,7 +1833,7 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
1833
1833
|
* </note>
|
|
1834
1834
|
* @public
|
|
1835
1835
|
*/
|
|
1836
|
-
IncludeOnly?: string[];
|
|
1836
|
+
IncludeOnly?: string[] | undefined;
|
|
1837
1837
|
/**
|
|
1838
1838
|
* <p>Space-separated list of names for specific individual assessments that you want to
|
|
1839
1839
|
* exclude. These names come from the default list of individual assessments that DMS
|
|
@@ -1849,12 +1849,12 @@ export interface StartReplicationTaskAssessmentRunMessage {
|
|
|
1849
1849
|
* </note>
|
|
1850
1850
|
* @public
|
|
1851
1851
|
*/
|
|
1852
|
-
Exclude?: string[];
|
|
1852
|
+
Exclude?: string[] | undefined;
|
|
1853
1853
|
/**
|
|
1854
1854
|
* <p>One or more tags to be assigned to the premigration assessment run that you want to start.</p>
|
|
1855
1855
|
* @public
|
|
1856
1856
|
*/
|
|
1857
|
-
Tags?: Tag[];
|
|
1857
|
+
Tags?: Tag[] | undefined;
|
|
1858
1858
|
}
|
|
1859
1859
|
/**
|
|
1860
1860
|
* <p></p>
|
|
@@ -1865,7 +1865,7 @@ export interface StartReplicationTaskAssessmentRunResponse {
|
|
|
1865
1865
|
* <p>The premigration assessment run that was started.</p>
|
|
1866
1866
|
* @public
|
|
1867
1867
|
*/
|
|
1868
|
-
ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun;
|
|
1868
|
+
ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun | undefined;
|
|
1869
1869
|
}
|
|
1870
1870
|
/**
|
|
1871
1871
|
* @public
|
|
@@ -1885,7 +1885,7 @@ export interface StopDataMigrationResponse {
|
|
|
1885
1885
|
* <p>The data migration that DMS stopped.</p>
|
|
1886
1886
|
* @public
|
|
1887
1887
|
*/
|
|
1888
|
-
DataMigration?: DataMigration;
|
|
1888
|
+
DataMigration?: DataMigration | undefined;
|
|
1889
1889
|
}
|
|
1890
1890
|
/**
|
|
1891
1891
|
* <p></p>
|
|
@@ -1906,7 +1906,7 @@ export interface StopReplicationResponse {
|
|
|
1906
1906
|
* <p>The replication that DMS stopped.</p>
|
|
1907
1907
|
* @public
|
|
1908
1908
|
*/
|
|
1909
|
-
Replication?: Replication;
|
|
1909
|
+
Replication?: Replication | undefined;
|
|
1910
1910
|
}
|
|
1911
1911
|
/**
|
|
1912
1912
|
* <p></p>
|
|
@@ -1928,7 +1928,7 @@ export interface StopReplicationTaskResponse {
|
|
|
1928
1928
|
* <p>The replication task stopped.</p>
|
|
1929
1929
|
* @public
|
|
1930
1930
|
*/
|
|
1931
|
-
ReplicationTask?: ReplicationTask;
|
|
1931
|
+
ReplicationTask?: ReplicationTask | undefined;
|
|
1932
1932
|
}
|
|
1933
1933
|
/**
|
|
1934
1934
|
* <p></p>
|
|
@@ -1955,7 +1955,7 @@ export interface TestConnectionResponse {
|
|
|
1955
1955
|
* <p>The connection tested.</p>
|
|
1956
1956
|
* @public
|
|
1957
1957
|
*/
|
|
1958
|
-
Connection?: Connection;
|
|
1958
|
+
Connection?: Connection | undefined;
|
|
1959
1959
|
}
|
|
1960
1960
|
/**
|
|
1961
1961
|
* <p></p>
|
|
@@ -1970,7 +1970,7 @@ export interface UpdateSubscriptionsToEventBridgeMessage {
|
|
|
1970
1970
|
* </p>
|
|
1971
1971
|
* @public
|
|
1972
1972
|
*/
|
|
1973
|
-
ForceMove?: boolean;
|
|
1973
|
+
ForceMove?: boolean | undefined;
|
|
1974
1974
|
}
|
|
1975
1975
|
/**
|
|
1976
1976
|
* <p></p>
|
|
@@ -1981,7 +1981,7 @@ export interface UpdateSubscriptionsToEventBridgeResponse {
|
|
|
1981
1981
|
* <p>A string that indicates how many event subscriptions were migrated and how many remain to be migrated.</p>
|
|
1982
1982
|
* @public
|
|
1983
1983
|
*/
|
|
1984
|
-
Result?: string;
|
|
1984
|
+
Result?: string | undefined;
|
|
1985
1985
|
}
|
|
1986
1986
|
/**
|
|
1987
1987
|
* @internal
|