@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.
@@ -48,9 +48,9 @@ import {
48
48
  TimestreamSettings,
49
49
  } from "./models_0";
50
50
  export interface DescribeTableStatisticsResponse {
51
- ReplicationTaskArn?: string;
52
- TableStatistics?: TableStatistics[];
53
- Marker?: string;
51
+ ReplicationTaskArn?: string | undefined;
52
+ TableStatistics?: TableStatistics[] | undefined;
53
+ Marker?: string | undefined;
54
54
  }
55
55
  export declare const AssessmentReportType: {
56
56
  readonly CSV: "csv";
@@ -61,25 +61,25 @@ export type AssessmentReportType =
61
61
  export interface ExportMetadataModelAssessmentMessage {
62
62
  MigrationProjectIdentifier: string | undefined;
63
63
  SelectionRules: string | undefined;
64
- FileName?: string;
65
- AssessmentReportTypes?: AssessmentReportType[];
64
+ FileName?: string | undefined;
65
+ AssessmentReportTypes?: AssessmentReportType[] | undefined;
66
66
  }
67
67
  export interface ExportMetadataModelAssessmentResultEntry {
68
- S3ObjectKey?: string;
69
- ObjectURL?: string;
68
+ S3ObjectKey?: string | undefined;
69
+ ObjectURL?: string | undefined;
70
70
  }
71
71
  export interface ExportMetadataModelAssessmentResponse {
72
- PdfReport?: ExportMetadataModelAssessmentResultEntry;
73
- CsvReport?: ExportMetadataModelAssessmentResultEntry;
72
+ PdfReport?: ExportMetadataModelAssessmentResultEntry | undefined;
73
+ CsvReport?: ExportMetadataModelAssessmentResultEntry | undefined;
74
74
  }
75
75
  export interface ImportCertificateMessage {
76
76
  CertificateIdentifier: string | undefined;
77
- CertificatePem?: string;
78
- CertificateWallet?: Uint8Array;
79
- Tags?: Tag[];
77
+ CertificatePem?: string | undefined;
78
+ CertificateWallet?: Uint8Array | undefined;
79
+ Tags?: Tag[] | undefined;
80
80
  }
81
81
  export interface ImportCertificateResponse {
82
- Certificate?: Certificate;
82
+ Certificate?: Certificate | undefined;
83
83
  }
84
84
  export declare class InvalidCertificateFault extends __BaseException {
85
85
  readonly name: "InvalidCertificateFault";
@@ -89,149 +89,153 @@ export declare class InvalidCertificateFault extends __BaseException {
89
89
  );
90
90
  }
91
91
  export interface ListTagsForResourceMessage {
92
- ResourceArn?: string;
93
- ResourceArnList?: string[];
92
+ ResourceArn?: string | undefined;
93
+ ResourceArnList?: string[] | undefined;
94
94
  }
95
95
  export interface ListTagsForResourceResponse {
96
- TagList?: Tag[];
96
+ TagList?: Tag[] | undefined;
97
97
  }
98
98
  export interface ModifyConversionConfigurationMessage {
99
99
  MigrationProjectIdentifier: string | undefined;
100
100
  ConversionConfiguration: string | undefined;
101
101
  }
102
102
  export interface ModifyConversionConfigurationResponse {
103
- MigrationProjectIdentifier?: string;
103
+ MigrationProjectIdentifier?: string | undefined;
104
104
  }
105
105
  export interface ModifyDataMigrationMessage {
106
106
  DataMigrationIdentifier: string | undefined;
107
- DataMigrationName?: string;
108
- EnableCloudwatchLogs?: boolean;
109
- ServiceAccessRoleArn?: string;
110
- DataMigrationType?: MigrationTypeValue;
111
- SourceDataSettings?: SourceDataSetting[];
112
- NumberOfJobs?: number;
113
- SelectionRules?: string;
107
+ DataMigrationName?: string | undefined;
108
+ EnableCloudwatchLogs?: boolean | undefined;
109
+ ServiceAccessRoleArn?: string | undefined;
110
+ DataMigrationType?: MigrationTypeValue | undefined;
111
+ SourceDataSettings?: SourceDataSetting[] | undefined;
112
+ NumberOfJobs?: number | undefined;
113
+ SelectionRules?: string | undefined;
114
114
  }
115
115
  export interface ModifyDataMigrationResponse {
116
- DataMigration?: DataMigration;
116
+ DataMigration?: DataMigration | undefined;
117
117
  }
118
118
  export interface ModifyDataProviderMessage {
119
119
  DataProviderIdentifier: string | undefined;
120
- DataProviderName?: string;
121
- Description?: string;
122
- Engine?: string;
123
- ExactSettings?: boolean;
124
- Settings?: DataProviderSettings;
120
+ DataProviderName?: string | undefined;
121
+ Description?: string | undefined;
122
+ Engine?: string | undefined;
123
+ ExactSettings?: boolean | undefined;
124
+ Settings?: DataProviderSettings | undefined;
125
125
  }
126
126
  export interface ModifyDataProviderResponse {
127
- DataProvider?: DataProvider;
127
+ DataProvider?: DataProvider | undefined;
128
128
  }
129
129
  export interface ModifyEndpointMessage {
130
130
  EndpointArn: string | undefined;
131
- EndpointIdentifier?: string;
132
- EndpointType?: ReplicationEndpointTypeValue;
133
- EngineName?: string;
134
- Username?: string;
135
- Password?: string;
136
- ServerName?: string;
137
- Port?: number;
138
- DatabaseName?: string;
139
- ExtraConnectionAttributes?: string;
140
- CertificateArn?: string;
141
- SslMode?: DmsSslModeValue;
142
- ServiceAccessRoleArn?: string;
143
- ExternalTableDefinition?: string;
144
- DynamoDbSettings?: DynamoDbSettings;
145
- S3Settings?: S3Settings;
146
- DmsTransferSettings?: DmsTransferSettings;
147
- MongoDbSettings?: MongoDbSettings;
148
- KinesisSettings?: KinesisSettings;
149
- KafkaSettings?: KafkaSettings;
150
- ElasticsearchSettings?: ElasticsearchSettings;
151
- NeptuneSettings?: NeptuneSettings;
152
- RedshiftSettings?: RedshiftSettings;
153
- PostgreSQLSettings?: PostgreSQLSettings;
154
- MySQLSettings?: MySQLSettings;
155
- OracleSettings?: OracleSettings;
156
- SybaseSettings?: SybaseSettings;
157
- MicrosoftSQLServerSettings?: MicrosoftSQLServerSettings;
158
- IBMDb2Settings?: IBMDb2Settings;
159
- DocDbSettings?: DocDbSettings;
160
- RedisSettings?: RedisSettings;
161
- ExactSettings?: boolean;
162
- GcpMySQLSettings?: GcpMySQLSettings;
163
- TimestreamSettings?: TimestreamSettings;
131
+ EndpointIdentifier?: string | undefined;
132
+ EndpointType?: ReplicationEndpointTypeValue | undefined;
133
+ EngineName?: string | undefined;
134
+ Username?: string | undefined;
135
+ Password?: string | undefined;
136
+ ServerName?: string | undefined;
137
+ Port?: number | undefined;
138
+ DatabaseName?: string | undefined;
139
+ ExtraConnectionAttributes?: string | undefined;
140
+ CertificateArn?: string | undefined;
141
+ SslMode?: DmsSslModeValue | undefined;
142
+ ServiceAccessRoleArn?: string | undefined;
143
+ ExternalTableDefinition?: string | undefined;
144
+ DynamoDbSettings?: DynamoDbSettings | undefined;
145
+ S3Settings?: S3Settings | undefined;
146
+ DmsTransferSettings?: DmsTransferSettings | undefined;
147
+ MongoDbSettings?: MongoDbSettings | undefined;
148
+ KinesisSettings?: KinesisSettings | undefined;
149
+ KafkaSettings?: KafkaSettings | undefined;
150
+ ElasticsearchSettings?: ElasticsearchSettings | undefined;
151
+ NeptuneSettings?: NeptuneSettings | undefined;
152
+ RedshiftSettings?: RedshiftSettings | undefined;
153
+ PostgreSQLSettings?: PostgreSQLSettings | undefined;
154
+ MySQLSettings?: MySQLSettings | undefined;
155
+ OracleSettings?: OracleSettings | undefined;
156
+ SybaseSettings?: SybaseSettings | undefined;
157
+ MicrosoftSQLServerSettings?: MicrosoftSQLServerSettings | undefined;
158
+ IBMDb2Settings?: IBMDb2Settings | undefined;
159
+ DocDbSettings?: DocDbSettings | undefined;
160
+ RedisSettings?: RedisSettings | undefined;
161
+ ExactSettings?: boolean | undefined;
162
+ GcpMySQLSettings?: GcpMySQLSettings | undefined;
163
+ TimestreamSettings?: TimestreamSettings | undefined;
164
164
  }
165
165
  export interface ModifyEndpointResponse {
166
- Endpoint?: Endpoint;
166
+ Endpoint?: Endpoint | undefined;
167
167
  }
168
168
  export interface ModifyEventSubscriptionMessage {
169
169
  SubscriptionName: string | undefined;
170
- SnsTopicArn?: string;
171
- SourceType?: string;
172
- EventCategories?: string[];
173
- Enabled?: boolean;
170
+ SnsTopicArn?: string | undefined;
171
+ SourceType?: string | undefined;
172
+ EventCategories?: string[] | undefined;
173
+ Enabled?: boolean | undefined;
174
174
  }
175
175
  export interface ModifyEventSubscriptionResponse {
176
- EventSubscription?: EventSubscription;
176
+ EventSubscription?: EventSubscription | undefined;
177
177
  }
178
178
  export interface ModifyInstanceProfileMessage {
179
179
  InstanceProfileIdentifier: string | undefined;
180
- AvailabilityZone?: string;
181
- KmsKeyArn?: string;
182
- PubliclyAccessible?: boolean;
183
- NetworkType?: string;
184
- InstanceProfileName?: string;
185
- Description?: string;
186
- SubnetGroupIdentifier?: string;
187
- VpcSecurityGroups?: string[];
180
+ AvailabilityZone?: string | undefined;
181
+ KmsKeyArn?: string | undefined;
182
+ PubliclyAccessible?: boolean | undefined;
183
+ NetworkType?: string | undefined;
184
+ InstanceProfileName?: string | undefined;
185
+ Description?: string | undefined;
186
+ SubnetGroupIdentifier?: string | undefined;
187
+ VpcSecurityGroups?: string[] | undefined;
188
188
  }
189
189
  export interface ModifyInstanceProfileResponse {
190
- InstanceProfile?: InstanceProfile;
190
+ InstanceProfile?: InstanceProfile | undefined;
191
191
  }
192
192
  export interface ModifyMigrationProjectMessage {
193
193
  MigrationProjectIdentifier: string | undefined;
194
- MigrationProjectName?: string;
195
- SourceDataProviderDescriptors?: DataProviderDescriptorDefinition[];
196
- TargetDataProviderDescriptors?: DataProviderDescriptorDefinition[];
197
- InstanceProfileIdentifier?: string;
198
- TransformationRules?: string;
199
- Description?: string;
200
- SchemaConversionApplicationAttributes?: SCApplicationAttributes;
194
+ MigrationProjectName?: string | undefined;
195
+ SourceDataProviderDescriptors?:
196
+ | DataProviderDescriptorDefinition[]
197
+ | undefined;
198
+ TargetDataProviderDescriptors?:
199
+ | DataProviderDescriptorDefinition[]
200
+ | undefined;
201
+ InstanceProfileIdentifier?: string | undefined;
202
+ TransformationRules?: string | undefined;
203
+ Description?: string | undefined;
204
+ SchemaConversionApplicationAttributes?: SCApplicationAttributes | undefined;
201
205
  }
202
206
  export interface ModifyMigrationProjectResponse {
203
- MigrationProject?: MigrationProject;
207
+ MigrationProject?: MigrationProject | undefined;
204
208
  }
205
209
  export interface ModifyReplicationConfigMessage {
206
210
  ReplicationConfigArn: string | undefined;
207
- ReplicationConfigIdentifier?: string;
208
- ReplicationType?: MigrationTypeValue;
209
- TableMappings?: string;
210
- ReplicationSettings?: string;
211
- SupplementalSettings?: string;
212
- ComputeConfig?: ComputeConfig;
213
- SourceEndpointArn?: string;
214
- TargetEndpointArn?: string;
211
+ ReplicationConfigIdentifier?: string | undefined;
212
+ ReplicationType?: MigrationTypeValue | undefined;
213
+ TableMappings?: string | undefined;
214
+ ReplicationSettings?: string | undefined;
215
+ SupplementalSettings?: string | undefined;
216
+ ComputeConfig?: ComputeConfig | undefined;
217
+ SourceEndpointArn?: string | undefined;
218
+ TargetEndpointArn?: string | undefined;
215
219
  }
216
220
  export interface ModifyReplicationConfigResponse {
217
- ReplicationConfig?: ReplicationConfig;
221
+ ReplicationConfig?: ReplicationConfig | undefined;
218
222
  }
219
223
  export interface ModifyReplicationInstanceMessage {
220
224
  ReplicationInstanceArn: string | undefined;
221
- AllocatedStorage?: number;
222
- ApplyImmediately?: boolean;
223
- ReplicationInstanceClass?: string;
224
- VpcSecurityGroupIds?: string[];
225
- PreferredMaintenanceWindow?: string;
226
- MultiAZ?: boolean;
227
- EngineVersion?: string;
228
- AllowMajorVersionUpgrade?: boolean;
229
- AutoMinorVersionUpgrade?: boolean;
230
- ReplicationInstanceIdentifier?: string;
231
- NetworkType?: string;
225
+ AllocatedStorage?: number | undefined;
226
+ ApplyImmediately?: boolean | undefined;
227
+ ReplicationInstanceClass?: string | undefined;
228
+ VpcSecurityGroupIds?: string[] | undefined;
229
+ PreferredMaintenanceWindow?: string | undefined;
230
+ MultiAZ?: boolean | undefined;
231
+ EngineVersion?: string | undefined;
232
+ AllowMajorVersionUpgrade?: boolean | undefined;
233
+ AutoMinorVersionUpgrade?: boolean | undefined;
234
+ ReplicationInstanceIdentifier?: string | undefined;
235
+ NetworkType?: string | undefined;
232
236
  }
233
237
  export interface ModifyReplicationInstanceResponse {
234
- ReplicationInstance?: ReplicationInstance;
238
+ ReplicationInstance?: ReplicationInstance | undefined;
235
239
  }
236
240
  export declare class UpgradeDependencyFailureFault extends __BaseException {
237
241
  readonly name: "UpgradeDependencyFailureFault";
@@ -242,11 +246,11 @@ export declare class UpgradeDependencyFailureFault extends __BaseException {
242
246
  }
243
247
  export interface ModifyReplicationSubnetGroupMessage {
244
248
  ReplicationSubnetGroupIdentifier: string | undefined;
245
- ReplicationSubnetGroupDescription?: string;
249
+ ReplicationSubnetGroupDescription?: string | undefined;
246
250
  SubnetIds: string[] | undefined;
247
251
  }
248
252
  export interface ModifyReplicationSubnetGroupResponse {
249
- ReplicationSubnetGroup?: ReplicationSubnetGroup;
253
+ ReplicationSubnetGroup?: ReplicationSubnetGroup | undefined;
250
254
  }
251
255
  export declare class SubnetAlreadyInUse extends __BaseException {
252
256
  readonly name: "SubnetAlreadyInUse";
@@ -255,39 +259,39 @@ export declare class SubnetAlreadyInUse extends __BaseException {
255
259
  }
256
260
  export interface ModifyReplicationTaskMessage {
257
261
  ReplicationTaskArn: string | undefined;
258
- ReplicationTaskIdentifier?: string;
259
- MigrationType?: MigrationTypeValue;
260
- TableMappings?: string;
261
- ReplicationTaskSettings?: string;
262
- CdcStartTime?: Date;
263
- CdcStartPosition?: string;
264
- CdcStopPosition?: string;
265
- TaskData?: string;
262
+ ReplicationTaskIdentifier?: string | undefined;
263
+ MigrationType?: MigrationTypeValue | undefined;
264
+ TableMappings?: string | undefined;
265
+ ReplicationTaskSettings?: string | undefined;
266
+ CdcStartTime?: Date | undefined;
267
+ CdcStartPosition?: string | undefined;
268
+ CdcStopPosition?: string | undefined;
269
+ TaskData?: string | undefined;
266
270
  }
267
271
  export interface ModifyReplicationTaskResponse {
268
- ReplicationTask?: ReplicationTask;
272
+ ReplicationTask?: ReplicationTask | undefined;
269
273
  }
270
274
  export interface MoveReplicationTaskMessage {
271
275
  ReplicationTaskArn: string | undefined;
272
276
  TargetReplicationInstanceArn: string | undefined;
273
277
  }
274
278
  export interface MoveReplicationTaskResponse {
275
- ReplicationTask?: ReplicationTask;
279
+ ReplicationTask?: ReplicationTask | undefined;
276
280
  }
277
281
  export interface RebootReplicationInstanceMessage {
278
282
  ReplicationInstanceArn: string | undefined;
279
- ForceFailover?: boolean;
280
- ForcePlannedFailover?: boolean;
283
+ ForceFailover?: boolean | undefined;
284
+ ForcePlannedFailover?: boolean | undefined;
281
285
  }
282
286
  export interface RebootReplicationInstanceResponse {
283
- ReplicationInstance?: ReplicationInstance;
287
+ ReplicationInstance?: ReplicationInstance | undefined;
284
288
  }
285
289
  export interface RefreshSchemasMessage {
286
290
  EndpointArn: string | undefined;
287
291
  ReplicationInstanceArn: string | undefined;
288
292
  }
289
293
  export interface RefreshSchemasResponse {
290
- RefreshSchemasStatus?: RefreshSchemasStatus;
294
+ RefreshSchemasStatus?: RefreshSchemasStatus | undefined;
291
295
  }
292
296
  export declare const ReloadOptionValue: {
293
297
  readonly DATA_RELOAD: "data-reload";
@@ -302,18 +306,18 @@ export interface TableToReload {
302
306
  export interface ReloadReplicationTablesMessage {
303
307
  ReplicationConfigArn: string | undefined;
304
308
  TablesToReload: TableToReload[] | undefined;
305
- ReloadOption?: ReloadOptionValue;
309
+ ReloadOption?: ReloadOptionValue | undefined;
306
310
  }
307
311
  export interface ReloadReplicationTablesResponse {
308
- ReplicationConfigArn?: string;
312
+ ReplicationConfigArn?: string | undefined;
309
313
  }
310
314
  export interface ReloadTablesMessage {
311
315
  ReplicationTaskArn: string | undefined;
312
316
  TablesToReload: TableToReload[] | undefined;
313
- ReloadOption?: ReloadOptionValue;
317
+ ReloadOption?: ReloadOptionValue | undefined;
314
318
  }
315
319
  export interface ReloadTablesResponse {
316
- ReplicationTaskArn?: string;
320
+ ReplicationTaskArn?: string | undefined;
317
321
  }
318
322
  export interface RemoveTagsFromResourceMessage {
319
323
  ResourceArn: string | undefined;
@@ -321,8 +325,8 @@ export interface RemoveTagsFromResourceMessage {
321
325
  }
322
326
  export interface RemoveTagsFromResourceResponse {}
323
327
  export interface RunFleetAdvisorLsaAnalysisResponse {
324
- LsaAnalysisId?: string;
325
- Status?: string;
328
+ LsaAnalysisId?: string | undefined;
329
+ Status?: string | undefined;
326
330
  }
327
331
  export declare const StartReplicationMigrationTypeValue: {
328
332
  readonly RELOAD_TARGET: "reload-target";
@@ -336,27 +340,27 @@ export interface StartDataMigrationMessage {
336
340
  StartType: StartReplicationMigrationTypeValue | undefined;
337
341
  }
338
342
  export interface StartDataMigrationResponse {
339
- DataMigration?: DataMigration;
343
+ DataMigration?: DataMigration | undefined;
340
344
  }
341
345
  export interface StartExtensionPackAssociationMessage {
342
346
  MigrationProjectIdentifier: string | undefined;
343
347
  }
344
348
  export interface StartExtensionPackAssociationResponse {
345
- RequestIdentifier?: string;
349
+ RequestIdentifier?: string | undefined;
346
350
  }
347
351
  export interface StartMetadataModelAssessmentMessage {
348
352
  MigrationProjectIdentifier: string | undefined;
349
353
  SelectionRules: string | undefined;
350
354
  }
351
355
  export interface StartMetadataModelAssessmentResponse {
352
- RequestIdentifier?: string;
356
+ RequestIdentifier?: string | undefined;
353
357
  }
354
358
  export interface StartMetadataModelConversionMessage {
355
359
  MigrationProjectIdentifier: string | undefined;
356
360
  SelectionRules: string | undefined;
357
361
  }
358
362
  export interface StartMetadataModelConversionResponse {
359
- RequestIdentifier?: string;
363
+ RequestIdentifier?: string | undefined;
360
364
  }
361
365
  export declare const OriginTypeValue: {
362
366
  readonly SOURCE: "SOURCE";
@@ -368,27 +372,27 @@ export interface StartMetadataModelExportAsScriptMessage {
368
372
  MigrationProjectIdentifier: string | undefined;
369
373
  SelectionRules: string | undefined;
370
374
  Origin: OriginTypeValue | undefined;
371
- FileName?: string;
375
+ FileName?: string | undefined;
372
376
  }
373
377
  export interface StartMetadataModelExportAsScriptResponse {
374
- RequestIdentifier?: string;
378
+ RequestIdentifier?: string | undefined;
375
379
  }
376
380
  export interface StartMetadataModelExportToTargetMessage {
377
381
  MigrationProjectIdentifier: string | undefined;
378
382
  SelectionRules: string | undefined;
379
- OverwriteExtensionPack?: boolean;
383
+ OverwriteExtensionPack?: boolean | undefined;
380
384
  }
381
385
  export interface StartMetadataModelExportToTargetResponse {
382
- RequestIdentifier?: string;
386
+ RequestIdentifier?: string | undefined;
383
387
  }
384
388
  export interface StartMetadataModelImportMessage {
385
389
  MigrationProjectIdentifier: string | undefined;
386
390
  SelectionRules: string | undefined;
387
391
  Origin: OriginTypeValue | undefined;
388
- Refresh?: boolean;
392
+ Refresh?: boolean | undefined;
389
393
  }
390
394
  export interface StartMetadataModelImportResponse {
391
- RequestIdentifier?: string;
395
+ RequestIdentifier?: string | undefined;
392
396
  }
393
397
  export interface StartRecommendationsRequest {
394
398
  DatabaseId: string | undefined;
@@ -397,12 +401,12 @@ export interface StartRecommendationsRequest {
397
401
  export interface StartReplicationMessage {
398
402
  ReplicationConfigArn: string | undefined;
399
403
  StartReplicationType: string | undefined;
400
- CdcStartTime?: Date;
401
- CdcStartPosition?: string;
402
- CdcStopPosition?: string;
404
+ CdcStartTime?: Date | undefined;
405
+ CdcStartPosition?: string | undefined;
406
+ CdcStopPosition?: string | undefined;
403
407
  }
404
408
  export interface StartReplicationResponse {
405
- Replication?: Replication;
409
+ Replication?: Replication | undefined;
406
410
  }
407
411
  export declare const StartReplicationTaskTypeValue: {
408
412
  readonly RELOAD_TARGET: "reload-target";
@@ -414,18 +418,18 @@ export type StartReplicationTaskTypeValue =
414
418
  export interface StartReplicationTaskMessage {
415
419
  ReplicationTaskArn: string | undefined;
416
420
  StartReplicationTaskType: StartReplicationTaskTypeValue | undefined;
417
- CdcStartTime?: Date;
418
- CdcStartPosition?: string;
419
- CdcStopPosition?: string;
421
+ CdcStartTime?: Date | undefined;
422
+ CdcStartPosition?: string | undefined;
423
+ CdcStopPosition?: string | undefined;
420
424
  }
421
425
  export interface StartReplicationTaskResponse {
422
- ReplicationTask?: ReplicationTask;
426
+ ReplicationTask?: ReplicationTask | undefined;
423
427
  }
424
428
  export interface StartReplicationTaskAssessmentMessage {
425
429
  ReplicationTaskArn: string | undefined;
426
430
  }
427
431
  export interface StartReplicationTaskAssessmentResponse {
428
- ReplicationTask?: ReplicationTask;
432
+ ReplicationTask?: ReplicationTask | undefined;
429
433
  }
430
434
  export declare class KMSFault extends __BaseException {
431
435
  readonly name: "KMSFault";
@@ -436,47 +440,47 @@ export interface StartReplicationTaskAssessmentRunMessage {
436
440
  ReplicationTaskArn: string | undefined;
437
441
  ServiceAccessRoleArn: string | undefined;
438
442
  ResultLocationBucket: string | undefined;
439
- ResultLocationFolder?: string;
440
- ResultEncryptionMode?: string;
441
- ResultKmsKeyArn?: string;
443
+ ResultLocationFolder?: string | undefined;
444
+ ResultEncryptionMode?: string | undefined;
445
+ ResultKmsKeyArn?: string | undefined;
442
446
  AssessmentRunName: string | undefined;
443
- IncludeOnly?: string[];
444
- Exclude?: string[];
445
- Tags?: Tag[];
447
+ IncludeOnly?: string[] | undefined;
448
+ Exclude?: string[] | undefined;
449
+ Tags?: Tag[] | undefined;
446
450
  }
447
451
  export interface StartReplicationTaskAssessmentRunResponse {
448
- ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun;
452
+ ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun | undefined;
449
453
  }
450
454
  export interface StopDataMigrationMessage {
451
455
  DataMigrationIdentifier: string | undefined;
452
456
  }
453
457
  export interface StopDataMigrationResponse {
454
- DataMigration?: DataMigration;
458
+ DataMigration?: DataMigration | undefined;
455
459
  }
456
460
  export interface StopReplicationMessage {
457
461
  ReplicationConfigArn: string | undefined;
458
462
  }
459
463
  export interface StopReplicationResponse {
460
- Replication?: Replication;
464
+ Replication?: Replication | undefined;
461
465
  }
462
466
  export interface StopReplicationTaskMessage {
463
467
  ReplicationTaskArn: string | undefined;
464
468
  }
465
469
  export interface StopReplicationTaskResponse {
466
- ReplicationTask?: ReplicationTask;
470
+ ReplicationTask?: ReplicationTask | undefined;
467
471
  }
468
472
  export interface TestConnectionMessage {
469
473
  ReplicationInstanceArn: string | undefined;
470
474
  EndpointArn: string | undefined;
471
475
  }
472
476
  export interface TestConnectionResponse {
473
- Connection?: Connection;
477
+ Connection?: Connection | undefined;
474
478
  }
475
479
  export interface UpdateSubscriptionsToEventBridgeMessage {
476
- ForceMove?: boolean;
480
+ ForceMove?: boolean | undefined;
477
481
  }
478
482
  export interface UpdateSubscriptionsToEventBridgeResponse {
479
- Result?: string;
483
+ Result?: string | undefined;
480
484
  }
481
485
  export declare const ImportCertificateMessageFilterSensitiveLog: (
482
486
  obj: ImportCertificateMessage
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-database-migration-service",
3
3
  "description": "AWS SDK for JavaScript Database Migration Service Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-database-migration-service",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",