@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.
@@ -6,14 +6,14 @@ export declare class AccessDeniedFault extends __BaseException {
6
6
  constructor(opts: __ExceptionOptionType<AccessDeniedFault, __BaseException>);
7
7
  }
8
8
  export interface AccountQuota {
9
- AccountQuotaName?: string;
10
- Used?: number;
11
- Max?: number;
9
+ AccountQuotaName?: string | undefined;
10
+ Used?: number | undefined;
11
+ Max?: number | undefined;
12
12
  }
13
13
  export interface Tag {
14
- Key?: string;
15
- Value?: string;
16
- ResourceArn?: string;
14
+ Key?: string | undefined;
15
+ Value?: string | undefined;
16
+ ResourceArn?: string | undefined;
17
17
  }
18
18
  export interface AddTagsToResourceMessage {
19
19
  ResourceArn: string | undefined;
@@ -40,19 +40,21 @@ export interface ApplyPendingMaintenanceActionMessage {
40
40
  OptInType: string | undefined;
41
41
  }
42
42
  export interface PendingMaintenanceAction {
43
- Action?: string;
44
- AutoAppliedAfterDate?: Date;
45
- ForcedApplyDate?: Date;
46
- OptInStatus?: string;
47
- CurrentApplyDate?: Date;
48
- Description?: string;
43
+ Action?: string | undefined;
44
+ AutoAppliedAfterDate?: Date | undefined;
45
+ ForcedApplyDate?: Date | undefined;
46
+ OptInStatus?: string | undefined;
47
+ CurrentApplyDate?: Date | undefined;
48
+ Description?: string | undefined;
49
49
  }
50
50
  export interface ResourcePendingMaintenanceActions {
51
- ResourceIdentifier?: string;
52
- PendingMaintenanceActionDetails?: PendingMaintenanceAction[];
51
+ ResourceIdentifier?: string | undefined;
52
+ PendingMaintenanceActionDetails?: PendingMaintenanceAction[] | undefined;
53
53
  }
54
54
  export interface ApplyPendingMaintenanceActionResponse {
55
- ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
55
+ ResourcePendingMaintenanceActions?:
56
+ | ResourcePendingMaintenanceActions
57
+ | undefined;
56
58
  }
57
59
  export interface RecommendationSettings {
58
60
  InstanceSizingType: string | undefined;
@@ -63,48 +65,48 @@ export interface StartRecommendationsRequestEntry {
63
65
  Settings: RecommendationSettings | undefined;
64
66
  }
65
67
  export interface BatchStartRecommendationsRequest {
66
- Data?: StartRecommendationsRequestEntry[];
68
+ Data?: StartRecommendationsRequestEntry[] | undefined;
67
69
  }
68
70
  export interface BatchStartRecommendationsErrorEntry {
69
- DatabaseId?: string;
70
- Message?: string;
71
- Code?: string;
71
+ DatabaseId?: string | undefined;
72
+ Message?: string | undefined;
73
+ Code?: string | undefined;
72
74
  }
73
75
  export interface BatchStartRecommendationsResponse {
74
- ErrorEntries?: BatchStartRecommendationsErrorEntry[];
76
+ ErrorEntries?: BatchStartRecommendationsErrorEntry[] | undefined;
75
77
  }
76
78
  export interface CancelReplicationTaskAssessmentRunMessage {
77
79
  ReplicationTaskAssessmentRunArn: string | undefined;
78
80
  }
79
81
  export interface ReplicationTaskAssessmentRunProgress {
80
- IndividualAssessmentCount?: number;
81
- IndividualAssessmentCompletedCount?: number;
82
+ IndividualAssessmentCount?: number | undefined;
83
+ IndividualAssessmentCompletedCount?: number | undefined;
82
84
  }
83
85
  export interface ReplicationTaskAssessmentRunResultStatistic {
84
- Passed?: number;
85
- Failed?: number;
86
- Error?: number;
87
- Warning?: number;
88
- Cancelled?: number;
86
+ Passed?: number | undefined;
87
+ Failed?: number | undefined;
88
+ Error?: number | undefined;
89
+ Warning?: number | undefined;
90
+ Cancelled?: number | undefined;
89
91
  }
90
92
  export interface ReplicationTaskAssessmentRun {
91
- ReplicationTaskAssessmentRunArn?: string;
92
- ReplicationTaskArn?: string;
93
- Status?: string;
94
- ReplicationTaskAssessmentRunCreationDate?: Date;
95
- AssessmentProgress?: ReplicationTaskAssessmentRunProgress;
96
- LastFailureMessage?: string;
97
- ServiceAccessRoleArn?: string;
98
- ResultLocationBucket?: string;
99
- ResultLocationFolder?: string;
100
- ResultEncryptionMode?: string;
101
- ResultKmsKeyArn?: string;
102
- AssessmentRunName?: string;
103
- IsLatestTaskAssessmentRun?: boolean;
104
- ResultStatistic?: ReplicationTaskAssessmentRunResultStatistic;
93
+ ReplicationTaskAssessmentRunArn?: string | undefined;
94
+ ReplicationTaskArn?: string | undefined;
95
+ Status?: string | undefined;
96
+ ReplicationTaskAssessmentRunCreationDate?: Date | undefined;
97
+ AssessmentProgress?: ReplicationTaskAssessmentRunProgress | undefined;
98
+ LastFailureMessage?: string | undefined;
99
+ ServiceAccessRoleArn?: string | undefined;
100
+ ResultLocationBucket?: string | undefined;
101
+ ResultLocationFolder?: string | undefined;
102
+ ResultEncryptionMode?: string | undefined;
103
+ ResultKmsKeyArn?: string | undefined;
104
+ AssessmentRunName?: string | undefined;
105
+ IsLatestTaskAssessmentRun?: boolean | undefined;
106
+ ResultStatistic?: ReplicationTaskAssessmentRunResultStatistic | undefined;
105
107
  }
106
108
  export interface CancelReplicationTaskAssessmentRunResponse {
107
- ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun;
109
+ ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun | undefined;
108
110
  }
109
111
  export declare const MigrationTypeValue: {
110
112
  readonly CDC: "cdc";
@@ -114,58 +116,58 @@ export declare const MigrationTypeValue: {
114
116
  export type MigrationTypeValue =
115
117
  (typeof MigrationTypeValue)[keyof typeof MigrationTypeValue];
116
118
  export interface SourceDataSetting {
117
- CDCStartPosition?: string;
118
- CDCStartTime?: Date;
119
- CDCStopTime?: Date;
120
- SlotName?: string;
119
+ CDCStartPosition?: string | undefined;
120
+ CDCStartTime?: Date | undefined;
121
+ CDCStopTime?: Date | undefined;
122
+ SlotName?: string | undefined;
121
123
  }
122
124
  export interface CreateDataMigrationMessage {
123
- DataMigrationName?: string;
125
+ DataMigrationName?: string | undefined;
124
126
  MigrationProjectIdentifier: string | undefined;
125
127
  DataMigrationType: MigrationTypeValue | undefined;
126
128
  ServiceAccessRoleArn: string | undefined;
127
- EnableCloudwatchLogs?: boolean;
128
- SourceDataSettings?: SourceDataSetting[];
129
- NumberOfJobs?: number;
130
- Tags?: Tag[];
131
- SelectionRules?: string;
129
+ EnableCloudwatchLogs?: boolean | undefined;
130
+ SourceDataSettings?: SourceDataSetting[] | undefined;
131
+ NumberOfJobs?: number | undefined;
132
+ Tags?: Tag[] | undefined;
133
+ SelectionRules?: string | undefined;
132
134
  }
133
135
  export interface DataMigrationSettings {
134
- NumberOfJobs?: number;
135
- CloudwatchLogsEnabled?: boolean;
136
- SelectionRules?: string;
136
+ NumberOfJobs?: number | undefined;
137
+ CloudwatchLogsEnabled?: boolean | undefined;
138
+ SelectionRules?: string | undefined;
137
139
  }
138
140
  export interface DataMigrationStatistics {
139
- TablesLoaded?: number;
140
- ElapsedTimeMillis?: number;
141
- TablesLoading?: number;
142
- FullLoadPercentage?: number;
143
- CDCLatency?: number;
144
- TablesQueued?: number;
145
- TablesErrored?: number;
146
- StartTime?: Date;
147
- StopTime?: Date;
141
+ TablesLoaded?: number | undefined;
142
+ ElapsedTimeMillis?: number | undefined;
143
+ TablesLoading?: number | undefined;
144
+ FullLoadPercentage?: number | undefined;
145
+ CDCLatency?: number | undefined;
146
+ TablesQueued?: number | undefined;
147
+ TablesErrored?: number | undefined;
148
+ StartTime?: Date | undefined;
149
+ StopTime?: Date | undefined;
148
150
  }
149
151
  export interface DataMigration {
150
- DataMigrationName?: string;
151
- DataMigrationArn?: string;
152
- DataMigrationCreateTime?: Date;
153
- DataMigrationStartTime?: Date;
154
- DataMigrationEndTime?: Date;
155
- ServiceAccessRoleArn?: string;
156
- MigrationProjectArn?: string;
157
- DataMigrationType?: MigrationTypeValue;
158
- DataMigrationSettings?: DataMigrationSettings;
159
- SourceDataSettings?: SourceDataSetting[];
160
- DataMigrationStatistics?: DataMigrationStatistics;
161
- DataMigrationStatus?: string;
162
- PublicIpAddresses?: string[];
163
- DataMigrationCidrBlocks?: string[];
164
- LastFailureMessage?: string;
165
- StopReason?: string;
152
+ DataMigrationName?: string | undefined;
153
+ DataMigrationArn?: string | undefined;
154
+ DataMigrationCreateTime?: Date | undefined;
155
+ DataMigrationStartTime?: Date | undefined;
156
+ DataMigrationEndTime?: Date | undefined;
157
+ ServiceAccessRoleArn?: string | undefined;
158
+ MigrationProjectArn?: string | undefined;
159
+ DataMigrationType?: MigrationTypeValue | undefined;
160
+ DataMigrationSettings?: DataMigrationSettings | undefined;
161
+ SourceDataSettings?: SourceDataSetting[] | undefined;
162
+ DataMigrationStatistics?: DataMigrationStatistics | undefined;
163
+ DataMigrationStatus?: string | undefined;
164
+ PublicIpAddresses?: string[] | undefined;
165
+ DataMigrationCidrBlocks?: string[] | undefined;
166
+ LastFailureMessage?: string | undefined;
167
+ StopReason?: string | undefined;
166
168
  }
167
169
  export interface CreateDataMigrationResponse {
168
- DataMigration?: DataMigration;
170
+ DataMigration?: DataMigration | undefined;
169
171
  }
170
172
  export declare class FailedDependencyFault extends __BaseException {
171
173
  readonly name: "FailedDependencyFault";
@@ -184,7 +186,7 @@ export declare class InvalidOperationFault extends __BaseException {
184
186
  export declare class ResourceAlreadyExistsFault extends __BaseException {
185
187
  readonly name: "ResourceAlreadyExistsFault";
186
188
  readonly $fault: "client";
187
- resourceArn?: string;
189
+ resourceArn?: string | undefined;
188
190
  constructor(
189
191
  opts: __ExceptionOptionType<ResourceAlreadyExistsFault, __BaseException>
190
192
  );
@@ -205,24 +207,24 @@ export declare const DmsSslModeValue: {
205
207
  export type DmsSslModeValue =
206
208
  (typeof DmsSslModeValue)[keyof typeof DmsSslModeValue];
207
209
  export interface DocDbDataProviderSettings {
208
- ServerName?: string;
209
- Port?: number;
210
- DatabaseName?: string;
211
- SslMode?: DmsSslModeValue;
212
- CertificateArn?: string;
210
+ ServerName?: string | undefined;
211
+ Port?: number | undefined;
212
+ DatabaseName?: string | undefined;
213
+ SslMode?: DmsSslModeValue | undefined;
214
+ CertificateArn?: string | undefined;
213
215
  }
214
216
  export interface MariaDbDataProviderSettings {
215
- ServerName?: string;
216
- Port?: number;
217
- SslMode?: DmsSslModeValue;
218
- CertificateArn?: string;
217
+ ServerName?: string | undefined;
218
+ Port?: number | undefined;
219
+ SslMode?: DmsSslModeValue | undefined;
220
+ CertificateArn?: string | undefined;
219
221
  }
220
222
  export interface MicrosoftSqlServerDataProviderSettings {
221
- ServerName?: string;
222
- Port?: number;
223
- DatabaseName?: string;
224
- SslMode?: DmsSslModeValue;
225
- CertificateArn?: string;
223
+ ServerName?: string | undefined;
224
+ Port?: number | undefined;
225
+ DatabaseName?: string | undefined;
226
+ SslMode?: DmsSslModeValue | undefined;
227
+ CertificateArn?: string | undefined;
226
228
  }
227
229
  export declare const AuthMechanismValue: {
228
230
  readonly DEFAULT: "default";
@@ -237,44 +239,44 @@ export declare const AuthTypeValue: {
237
239
  };
238
240
  export type AuthTypeValue = (typeof AuthTypeValue)[keyof typeof AuthTypeValue];
239
241
  export interface MongoDbDataProviderSettings {
240
- ServerName?: string;
241
- Port?: number;
242
- DatabaseName?: string;
243
- SslMode?: DmsSslModeValue;
244
- CertificateArn?: string;
245
- AuthType?: AuthTypeValue;
246
- AuthSource?: string;
247
- AuthMechanism?: AuthMechanismValue;
242
+ ServerName?: string | undefined;
243
+ Port?: number | undefined;
244
+ DatabaseName?: string | undefined;
245
+ SslMode?: DmsSslModeValue | undefined;
246
+ CertificateArn?: string | undefined;
247
+ AuthType?: AuthTypeValue | undefined;
248
+ AuthSource?: string | undefined;
249
+ AuthMechanism?: AuthMechanismValue | undefined;
248
250
  }
249
251
  export interface MySqlDataProviderSettings {
250
- ServerName?: string;
251
- Port?: number;
252
- SslMode?: DmsSslModeValue;
253
- CertificateArn?: string;
252
+ ServerName?: string | undefined;
253
+ Port?: number | undefined;
254
+ SslMode?: DmsSslModeValue | undefined;
255
+ CertificateArn?: string | undefined;
254
256
  }
255
257
  export interface OracleDataProviderSettings {
256
- ServerName?: string;
257
- Port?: number;
258
- DatabaseName?: string;
259
- SslMode?: DmsSslModeValue;
260
- CertificateArn?: string;
261
- AsmServer?: string;
262
- SecretsManagerOracleAsmSecretId?: string;
263
- SecretsManagerOracleAsmAccessRoleArn?: string;
264
- SecretsManagerSecurityDbEncryptionSecretId?: string;
265
- SecretsManagerSecurityDbEncryptionAccessRoleArn?: string;
258
+ ServerName?: string | undefined;
259
+ Port?: number | undefined;
260
+ DatabaseName?: string | undefined;
261
+ SslMode?: DmsSslModeValue | undefined;
262
+ CertificateArn?: string | undefined;
263
+ AsmServer?: string | undefined;
264
+ SecretsManagerOracleAsmSecretId?: string | undefined;
265
+ SecretsManagerOracleAsmAccessRoleArn?: string | undefined;
266
+ SecretsManagerSecurityDbEncryptionSecretId?: string | undefined;
267
+ SecretsManagerSecurityDbEncryptionAccessRoleArn?: string | undefined;
266
268
  }
267
269
  export interface PostgreSqlDataProviderSettings {
268
- ServerName?: string;
269
- Port?: number;
270
- DatabaseName?: string;
271
- SslMode?: DmsSslModeValue;
272
- CertificateArn?: string;
270
+ ServerName?: string | undefined;
271
+ Port?: number | undefined;
272
+ DatabaseName?: string | undefined;
273
+ SslMode?: DmsSslModeValue | undefined;
274
+ CertificateArn?: string | undefined;
273
275
  }
274
276
  export interface RedshiftDataProviderSettings {
275
- ServerName?: string;
276
- Port?: number;
277
- DatabaseName?: string;
277
+ ServerName?: string | undefined;
278
+ Port?: number | undefined;
279
+ DatabaseName?: string | undefined;
278
280
  }
279
281
  export type DataProviderSettings =
280
282
  | DataProviderSettings.DocDbSettingsMember
@@ -402,26 +404,26 @@ export declare namespace DataProviderSettings {
402
404
  const visit: <T>(value: DataProviderSettings, visitor: Visitor<T>) => T;
403
405
  }
404
406
  export interface CreateDataProviderMessage {
405
- DataProviderName?: string;
406
- Description?: string;
407
+ DataProviderName?: string | undefined;
408
+ Description?: string | undefined;
407
409
  Engine: string | undefined;
408
410
  Settings: DataProviderSettings | undefined;
409
- Tags?: Tag[];
411
+ Tags?: Tag[] | undefined;
410
412
  }
411
413
  export interface DataProvider {
412
- DataProviderName?: string;
413
- DataProviderArn?: string;
414
- DataProviderCreationTime?: Date;
415
- Description?: string;
416
- Engine?: string;
417
- Settings?: DataProviderSettings;
414
+ DataProviderName?: string | undefined;
415
+ DataProviderArn?: string | undefined;
416
+ DataProviderCreationTime?: Date | undefined;
417
+ Description?: string | undefined;
418
+ Engine?: string | undefined;
419
+ Settings?: DataProviderSettings | undefined;
418
420
  }
419
421
  export interface CreateDataProviderResponse {
420
- DataProvider?: DataProvider;
422
+ DataProvider?: DataProvider | undefined;
421
423
  }
422
424
  export interface DmsTransferSettings {
423
- ServiceAccessRoleArn?: string;
424
- BucketName?: string;
425
+ ServiceAccessRoleArn?: string | undefined;
426
+ BucketName?: string | undefined;
425
427
  }
426
428
  export declare const NestingLevelValue: {
427
429
  readonly NONE: "none";
@@ -430,19 +432,19 @@ export declare const NestingLevelValue: {
430
432
  export type NestingLevelValue =
431
433
  (typeof NestingLevelValue)[keyof typeof NestingLevelValue];
432
434
  export interface DocDbSettings {
433
- Username?: string;
434
- Password?: string;
435
- ServerName?: string;
436
- Port?: number;
437
- DatabaseName?: string;
438
- NestingLevel?: NestingLevelValue;
439
- ExtractDocId?: boolean;
440
- DocsToInvestigate?: number;
441
- KmsKeyId?: string;
442
- SecretsManagerAccessRoleArn?: string;
443
- SecretsManagerSecretId?: string;
444
- UseUpdateLookUp?: boolean;
445
- ReplicateShardCollections?: boolean;
435
+ Username?: string | undefined;
436
+ Password?: string | undefined;
437
+ ServerName?: string | undefined;
438
+ Port?: number | undefined;
439
+ DatabaseName?: string | undefined;
440
+ NestingLevel?: NestingLevelValue | undefined;
441
+ ExtractDocId?: boolean | undefined;
442
+ DocsToInvestigate?: number | undefined;
443
+ KmsKeyId?: string | undefined;
444
+ SecretsManagerAccessRoleArn?: string | undefined;
445
+ SecretsManagerSecretId?: string | undefined;
446
+ UseUpdateLookUp?: boolean | undefined;
447
+ ReplicateShardCollections?: boolean | undefined;
446
448
  }
447
449
  export interface DynamoDbSettings {
448
450
  ServiceAccessRoleArn: string | undefined;
@@ -450,9 +452,9 @@ export interface DynamoDbSettings {
450
452
  export interface ElasticsearchSettings {
451
453
  ServiceAccessRoleArn: string | undefined;
452
454
  EndpointUri: string | undefined;
453
- FullLoadErrorPercentage?: number;
454
- ErrorRetryDuration?: number;
455
- UseNewMappingType?: boolean;
455
+ FullLoadErrorPercentage?: number | undefined;
456
+ ErrorRetryDuration?: number | undefined;
457
+ UseNewMappingType?: boolean | undefined;
456
458
  }
457
459
  export declare const ReplicationEndpointTypeValue: {
458
460
  readonly SOURCE: "source";
@@ -466,36 +468,36 @@ export declare const TargetDbType: {
466
468
  };
467
469
  export type TargetDbType = (typeof TargetDbType)[keyof typeof TargetDbType];
468
470
  export interface GcpMySQLSettings {
469
- AfterConnectScript?: string;
470
- CleanSourceMetadataOnMismatch?: boolean;
471
- DatabaseName?: string;
472
- EventsPollInterval?: number;
473
- TargetDbType?: TargetDbType;
474
- MaxFileSize?: number;
475
- ParallelLoadThreads?: number;
476
- Password?: string;
477
- Port?: number;
478
- ServerName?: string;
479
- ServerTimezone?: string;
480
- Username?: string;
481
- SecretsManagerAccessRoleArn?: string;
482
- SecretsManagerSecretId?: string;
471
+ AfterConnectScript?: string | undefined;
472
+ CleanSourceMetadataOnMismatch?: boolean | undefined;
473
+ DatabaseName?: string | undefined;
474
+ EventsPollInterval?: number | undefined;
475
+ TargetDbType?: TargetDbType | undefined;
476
+ MaxFileSize?: number | undefined;
477
+ ParallelLoadThreads?: number | undefined;
478
+ Password?: string | undefined;
479
+ Port?: number | undefined;
480
+ ServerName?: string | undefined;
481
+ ServerTimezone?: string | undefined;
482
+ Username?: string | undefined;
483
+ SecretsManagerAccessRoleArn?: string | undefined;
484
+ SecretsManagerSecretId?: string | undefined;
483
485
  }
484
486
  export interface IBMDb2Settings {
485
- DatabaseName?: string;
486
- Password?: string;
487
- Port?: number;
488
- ServerName?: string;
489
- SetDataCaptureChanges?: boolean;
490
- CurrentLsn?: string;
491
- MaxKBytesPerRead?: number;
492
- Username?: string;
493
- SecretsManagerAccessRoleArn?: string;
494
- SecretsManagerSecretId?: string;
495
- LoadTimeout?: number;
496
- WriteBufferSize?: number;
497
- MaxFileSize?: number;
498
- KeepCsvFiles?: boolean;
487
+ DatabaseName?: string | undefined;
488
+ Password?: string | undefined;
489
+ Port?: number | undefined;
490
+ ServerName?: string | undefined;
491
+ SetDataCaptureChanges?: boolean | undefined;
492
+ CurrentLsn?: string | undefined;
493
+ MaxKBytesPerRead?: number | undefined;
494
+ Username?: string | undefined;
495
+ SecretsManagerAccessRoleArn?: string | undefined;
496
+ SecretsManagerSecretId?: string | undefined;
497
+ LoadTimeout?: number | undefined;
498
+ WriteBufferSize?: number | undefined;
499
+ MaxFileSize?: number | undefined;
500
+ KeepCsvFiles?: boolean | undefined;
499
501
  }
500
502
  export declare const MessageFormatValue: {
501
503
  readonly JSON: "json";
@@ -524,38 +526,40 @@ export declare const KafkaSslEndpointIdentificationAlgorithm: {
524
526
  export type KafkaSslEndpointIdentificationAlgorithm =
525
527
  (typeof KafkaSslEndpointIdentificationAlgorithm)[keyof typeof KafkaSslEndpointIdentificationAlgorithm];
526
528
  export interface KafkaSettings {
527
- Broker?: string;
528
- Topic?: string;
529
- MessageFormat?: MessageFormatValue;
530
- IncludeTransactionDetails?: boolean;
531
- IncludePartitionValue?: boolean;
532
- PartitionIncludeSchemaTable?: boolean;
533
- IncludeTableAlterOperations?: boolean;
534
- IncludeControlDetails?: boolean;
535
- MessageMaxBytes?: number;
536
- IncludeNullAndEmpty?: boolean;
537
- SecurityProtocol?: KafkaSecurityProtocol;
538
- SslClientCertificateArn?: string;
539
- SslClientKeyArn?: string;
540
- SslClientKeyPassword?: string;
541
- SslCaCertificateArn?: string;
542
- SaslUsername?: string;
543
- SaslPassword?: string;
544
- NoHexPrefix?: boolean;
545
- SaslMechanism?: KafkaSaslMechanism;
546
- SslEndpointIdentificationAlgorithm?: KafkaSslEndpointIdentificationAlgorithm;
529
+ Broker?: string | undefined;
530
+ Topic?: string | undefined;
531
+ MessageFormat?: MessageFormatValue | undefined;
532
+ IncludeTransactionDetails?: boolean | undefined;
533
+ IncludePartitionValue?: boolean | undefined;
534
+ PartitionIncludeSchemaTable?: boolean | undefined;
535
+ IncludeTableAlterOperations?: boolean | undefined;
536
+ IncludeControlDetails?: boolean | undefined;
537
+ MessageMaxBytes?: number | undefined;
538
+ IncludeNullAndEmpty?: boolean | undefined;
539
+ SecurityProtocol?: KafkaSecurityProtocol | undefined;
540
+ SslClientCertificateArn?: string | undefined;
541
+ SslClientKeyArn?: string | undefined;
542
+ SslClientKeyPassword?: string | undefined;
543
+ SslCaCertificateArn?: string | undefined;
544
+ SaslUsername?: string | undefined;
545
+ SaslPassword?: string | undefined;
546
+ NoHexPrefix?: boolean | undefined;
547
+ SaslMechanism?: KafkaSaslMechanism | undefined;
548
+ SslEndpointIdentificationAlgorithm?:
549
+ | KafkaSslEndpointIdentificationAlgorithm
550
+ | undefined;
547
551
  }
548
552
  export interface KinesisSettings {
549
- StreamArn?: string;
550
- MessageFormat?: MessageFormatValue;
551
- ServiceAccessRoleArn?: string;
552
- IncludeTransactionDetails?: boolean;
553
- IncludePartitionValue?: boolean;
554
- PartitionIncludeSchemaTable?: boolean;
555
- IncludeTableAlterOperations?: boolean;
556
- IncludeControlDetails?: boolean;
557
- IncludeNullAndEmpty?: boolean;
558
- NoHexPrefix?: boolean;
553
+ StreamArn?: string | undefined;
554
+ MessageFormat?: MessageFormatValue | undefined;
555
+ ServiceAccessRoleArn?: string | undefined;
556
+ IncludeTransactionDetails?: boolean | undefined;
557
+ IncludePartitionValue?: boolean | undefined;
558
+ PartitionIncludeSchemaTable?: boolean | undefined;
559
+ IncludeTableAlterOperations?: boolean | undefined;
560
+ IncludeControlDetails?: boolean | undefined;
561
+ IncludeNullAndEmpty?: boolean | undefined;
562
+ NoHexPrefix?: boolean | undefined;
559
563
  }
560
564
  export declare const SafeguardPolicy: {
561
565
  readonly EXCLUSIVE_AUTOMATIC_TRUNCATION: "exclusive-automatic-truncation";
@@ -573,67 +577,67 @@ export declare const TlogAccessMode: {
573
577
  export type TlogAccessMode =
574
578
  (typeof TlogAccessMode)[keyof typeof TlogAccessMode];
575
579
  export interface MicrosoftSQLServerSettings {
576
- Port?: number;
577
- BcpPacketSize?: number;
578
- DatabaseName?: string;
579
- ControlTablesFileGroup?: string;
580
- Password?: string;
581
- QuerySingleAlwaysOnNode?: boolean;
582
- ReadBackupOnly?: boolean;
583
- SafeguardPolicy?: SafeguardPolicy;
584
- ServerName?: string;
585
- Username?: string;
586
- UseBcpFullLoad?: boolean;
587
- UseThirdPartyBackupDevice?: boolean;
588
- SecretsManagerAccessRoleArn?: string;
589
- SecretsManagerSecretId?: string;
590
- TrimSpaceInChar?: boolean;
591
- TlogAccessMode?: TlogAccessMode;
592
- ForceLobLookup?: boolean;
580
+ Port?: number | undefined;
581
+ BcpPacketSize?: number | undefined;
582
+ DatabaseName?: string | undefined;
583
+ ControlTablesFileGroup?: string | undefined;
584
+ Password?: string | undefined;
585
+ QuerySingleAlwaysOnNode?: boolean | undefined;
586
+ ReadBackupOnly?: boolean | undefined;
587
+ SafeguardPolicy?: SafeguardPolicy | undefined;
588
+ ServerName?: string | undefined;
589
+ Username?: string | undefined;
590
+ UseBcpFullLoad?: boolean | undefined;
591
+ UseThirdPartyBackupDevice?: boolean | undefined;
592
+ SecretsManagerAccessRoleArn?: string | undefined;
593
+ SecretsManagerSecretId?: string | undefined;
594
+ TrimSpaceInChar?: boolean | undefined;
595
+ TlogAccessMode?: TlogAccessMode | undefined;
596
+ ForceLobLookup?: boolean | undefined;
593
597
  }
594
598
  export interface MongoDbSettings {
595
- Username?: string;
596
- Password?: string;
597
- ServerName?: string;
598
- Port?: number;
599
- DatabaseName?: string;
600
- AuthType?: AuthTypeValue;
601
- AuthMechanism?: AuthMechanismValue;
602
- NestingLevel?: NestingLevelValue;
603
- ExtractDocId?: string;
604
- DocsToInvestigate?: string;
605
- AuthSource?: string;
606
- KmsKeyId?: string;
607
- SecretsManagerAccessRoleArn?: string;
608
- SecretsManagerSecretId?: string;
609
- UseUpdateLookUp?: boolean;
610
- ReplicateShardCollections?: boolean;
599
+ Username?: string | undefined;
600
+ Password?: string | undefined;
601
+ ServerName?: string | undefined;
602
+ Port?: number | undefined;
603
+ DatabaseName?: string | undefined;
604
+ AuthType?: AuthTypeValue | undefined;
605
+ AuthMechanism?: AuthMechanismValue | undefined;
606
+ NestingLevel?: NestingLevelValue | undefined;
607
+ ExtractDocId?: string | undefined;
608
+ DocsToInvestigate?: string | undefined;
609
+ AuthSource?: string | undefined;
610
+ KmsKeyId?: string | undefined;
611
+ SecretsManagerAccessRoleArn?: string | undefined;
612
+ SecretsManagerSecretId?: string | undefined;
613
+ UseUpdateLookUp?: boolean | undefined;
614
+ ReplicateShardCollections?: boolean | undefined;
611
615
  }
612
616
  export interface MySQLSettings {
613
- AfterConnectScript?: string;
614
- CleanSourceMetadataOnMismatch?: boolean;
615
- DatabaseName?: string;
616
- EventsPollInterval?: number;
617
- TargetDbType?: TargetDbType;
618
- MaxFileSize?: number;
619
- ParallelLoadThreads?: number;
620
- Password?: string;
621
- Port?: number;
622
- ServerName?: string;
623
- ServerTimezone?: string;
624
- Username?: string;
625
- SecretsManagerAccessRoleArn?: string;
626
- SecretsManagerSecretId?: string;
627
- ExecuteTimeout?: number;
617
+ AfterConnectScript?: string | undefined;
618
+ CleanSourceMetadataOnMismatch?: boolean | undefined;
619
+ DatabaseName?: string | undefined;
620
+ EventsPollInterval?: number | undefined;
621
+ TargetDbType?: TargetDbType | undefined;
622
+ MaxFileSize?: number | undefined;
623
+ ParallelLoadThreads?: number | undefined;
624
+ Password?: string | undefined;
625
+ Port?: number | undefined;
626
+ ServerName?: string | undefined;
627
+ ServerTimezone?: string | undefined;
628
+ Username?: string | undefined;
629
+ SecretsManagerAccessRoleArn?: string | undefined;
630
+ SecretsManagerSecretId?: string | undefined;
631
+ ExecuteTimeout?: number | undefined;
628
632
  }
629
633
  export interface NeptuneSettings {
630
- ServiceAccessRoleArn?: string;
634
+ ServiceAccessRoleArn?: string | undefined;
631
635
  S3BucketName: string | undefined;
632
636
  S3BucketFolder: string | undefined;
633
- ErrorRetryDuration?: number;
634
- MaxFileSize?: number;
635
- MaxRetryCount?: number;
636
- IamAuthEnabled?: boolean;
637
+ ErrorRetryDuration?: number | undefined;
638
+ MaxFileSize?: number | undefined;
639
+ MaxRetryCount?: number | undefined;
640
+ IamAuthEnabled?: boolean | undefined;
637
641
  }
638
642
  export declare const CharLengthSemantics: {
639
643
  readonly BYTE: "byte";
@@ -643,49 +647,49 @@ export declare const CharLengthSemantics: {
643
647
  export type CharLengthSemantics =
644
648
  (typeof CharLengthSemantics)[keyof typeof CharLengthSemantics];
645
649
  export interface OracleSettings {
646
- AddSupplementalLogging?: boolean;
647
- ArchivedLogDestId?: number;
648
- AdditionalArchivedLogDestId?: number;
649
- ExtraArchivedLogDestIds?: number[];
650
- AllowSelectNestedTables?: boolean;
651
- ParallelAsmReadThreads?: number;
652
- ReadAheadBlocks?: number;
653
- AccessAlternateDirectly?: boolean;
654
- UseAlternateFolderForOnline?: boolean;
655
- OraclePathPrefix?: string;
656
- UsePathPrefix?: string;
657
- ReplacePathPrefix?: boolean;
658
- EnableHomogenousTablespace?: boolean;
659
- DirectPathNoLog?: boolean;
660
- ArchivedLogsOnly?: boolean;
661
- AsmPassword?: string;
662
- AsmServer?: string;
663
- AsmUser?: string;
664
- CharLengthSemantics?: CharLengthSemantics;
665
- DatabaseName?: string;
666
- DirectPathParallelLoad?: boolean;
667
- FailTasksOnLobTruncation?: boolean;
668
- NumberDatatypeScale?: number;
669
- Password?: string;
670
- Port?: number;
671
- ReadTableSpaceName?: boolean;
672
- RetryInterval?: number;
673
- SecurityDbEncryption?: string;
674
- SecurityDbEncryptionName?: string;
675
- ServerName?: string;
676
- SpatialDataOptionToGeoJsonFunctionName?: string;
677
- StandbyDelayTime?: number;
678
- Username?: string;
679
- UseBFile?: boolean;
680
- UseDirectPathFullLoad?: boolean;
681
- UseLogminerReader?: boolean;
682
- SecretsManagerAccessRoleArn?: string;
683
- SecretsManagerSecretId?: string;
684
- SecretsManagerOracleAsmAccessRoleArn?: string;
685
- SecretsManagerOracleAsmSecretId?: string;
686
- TrimSpaceInChar?: boolean;
687
- ConvertTimestampWithZoneToUTC?: boolean;
688
- OpenTransactionWindow?: number;
650
+ AddSupplementalLogging?: boolean | undefined;
651
+ ArchivedLogDestId?: number | undefined;
652
+ AdditionalArchivedLogDestId?: number | undefined;
653
+ ExtraArchivedLogDestIds?: number[] | undefined;
654
+ AllowSelectNestedTables?: boolean | undefined;
655
+ ParallelAsmReadThreads?: number | undefined;
656
+ ReadAheadBlocks?: number | undefined;
657
+ AccessAlternateDirectly?: boolean | undefined;
658
+ UseAlternateFolderForOnline?: boolean | undefined;
659
+ OraclePathPrefix?: string | undefined;
660
+ UsePathPrefix?: string | undefined;
661
+ ReplacePathPrefix?: boolean | undefined;
662
+ EnableHomogenousTablespace?: boolean | undefined;
663
+ DirectPathNoLog?: boolean | undefined;
664
+ ArchivedLogsOnly?: boolean | undefined;
665
+ AsmPassword?: string | undefined;
666
+ AsmServer?: string | undefined;
667
+ AsmUser?: string | undefined;
668
+ CharLengthSemantics?: CharLengthSemantics | undefined;
669
+ DatabaseName?: string | undefined;
670
+ DirectPathParallelLoad?: boolean | undefined;
671
+ FailTasksOnLobTruncation?: boolean | undefined;
672
+ NumberDatatypeScale?: number | undefined;
673
+ Password?: string | undefined;
674
+ Port?: number | undefined;
675
+ ReadTableSpaceName?: boolean | undefined;
676
+ RetryInterval?: number | undefined;
677
+ SecurityDbEncryption?: string | undefined;
678
+ SecurityDbEncryptionName?: string | undefined;
679
+ ServerName?: string | undefined;
680
+ SpatialDataOptionToGeoJsonFunctionName?: string | undefined;
681
+ StandbyDelayTime?: number | undefined;
682
+ Username?: string | undefined;
683
+ UseBFile?: boolean | undefined;
684
+ UseDirectPathFullLoad?: boolean | undefined;
685
+ UseLogminerReader?: boolean | undefined;
686
+ SecretsManagerAccessRoleArn?: string | undefined;
687
+ SecretsManagerSecretId?: string | undefined;
688
+ SecretsManagerOracleAsmAccessRoleArn?: string | undefined;
689
+ SecretsManagerOracleAsmSecretId?: string | undefined;
690
+ TrimSpaceInChar?: boolean | undefined;
691
+ ConvertTimestampWithZoneToUTC?: boolean | undefined;
692
+ OpenTransactionWindow?: number | undefined;
689
693
  }
690
694
  export declare const DatabaseMode: {
691
695
  readonly BABELFISH: "babelfish";
@@ -707,30 +711,30 @@ export declare const PluginNameValue: {
707
711
  export type PluginNameValue =
708
712
  (typeof PluginNameValue)[keyof typeof PluginNameValue];
709
713
  export interface PostgreSQLSettings {
710
- AfterConnectScript?: string;
711
- CaptureDdls?: boolean;
712
- MaxFileSize?: number;
713
- DatabaseName?: string;
714
- DdlArtifactsSchema?: string;
715
- ExecuteTimeout?: number;
716
- FailTasksOnLobTruncation?: boolean;
717
- HeartbeatEnable?: boolean;
718
- HeartbeatSchema?: string;
719
- HeartbeatFrequency?: number;
720
- Password?: string;
721
- Port?: number;
722
- ServerName?: string;
723
- Username?: string;
724
- SlotName?: string;
725
- PluginName?: PluginNameValue;
726
- SecretsManagerAccessRoleArn?: string;
727
- SecretsManagerSecretId?: string;
728
- TrimSpaceInChar?: boolean;
729
- MapBooleanAsBoolean?: boolean;
730
- MapJsonbAsClob?: boolean;
731
- MapLongVarcharAs?: LongVarcharMappingType;
732
- DatabaseMode?: DatabaseMode;
733
- BabelfishDatabaseName?: string;
714
+ AfterConnectScript?: string | undefined;
715
+ CaptureDdls?: boolean | undefined;
716
+ MaxFileSize?: number | undefined;
717
+ DatabaseName?: string | undefined;
718
+ DdlArtifactsSchema?: string | undefined;
719
+ ExecuteTimeout?: number | undefined;
720
+ FailTasksOnLobTruncation?: boolean | undefined;
721
+ HeartbeatEnable?: boolean | undefined;
722
+ HeartbeatSchema?: string | undefined;
723
+ HeartbeatFrequency?: number | undefined;
724
+ Password?: string | undefined;
725
+ Port?: number | undefined;
726
+ ServerName?: string | undefined;
727
+ Username?: string | undefined;
728
+ SlotName?: string | undefined;
729
+ PluginName?: PluginNameValue | undefined;
730
+ SecretsManagerAccessRoleArn?: string | undefined;
731
+ SecretsManagerSecretId?: string | undefined;
732
+ TrimSpaceInChar?: boolean | undefined;
733
+ MapBooleanAsBoolean?: boolean | undefined;
734
+ MapJsonbAsClob?: boolean | undefined;
735
+ MapLongVarcharAs?: LongVarcharMappingType | undefined;
736
+ DatabaseMode?: DatabaseMode | undefined;
737
+ BabelfishDatabaseName?: string | undefined;
734
738
  }
735
739
  export declare const RedisAuthTypeValue: {
736
740
  readonly AUTH_ROLE: "auth-role";
@@ -748,11 +752,11 @@ export type SslSecurityProtocolValue =
748
752
  export interface RedisSettings {
749
753
  ServerName: string | undefined;
750
754
  Port: number | undefined;
751
- SslSecurityProtocol?: SslSecurityProtocolValue;
752
- AuthType?: RedisAuthTypeValue;
753
- AuthUserName?: string;
754
- AuthPassword?: string;
755
- SslCaCertificateArn?: string;
755
+ SslSecurityProtocol?: SslSecurityProtocolValue | undefined;
756
+ AuthType?: RedisAuthTypeValue | undefined;
757
+ AuthUserName?: string | undefined;
758
+ AuthPassword?: string | undefined;
759
+ SslCaCertificateArn?: string | undefined;
756
760
  }
757
761
  export declare const EncryptionModeValue: {
758
762
  readonly SSE_KMS: "sse-kms";
@@ -761,37 +765,37 @@ export declare const EncryptionModeValue: {
761
765
  export type EncryptionModeValue =
762
766
  (typeof EncryptionModeValue)[keyof typeof EncryptionModeValue];
763
767
  export interface RedshiftSettings {
764
- AcceptAnyDate?: boolean;
765
- AfterConnectScript?: string;
766
- BucketFolder?: string;
767
- BucketName?: string;
768
- CaseSensitiveNames?: boolean;
769
- CompUpdate?: boolean;
770
- ConnectionTimeout?: number;
771
- DatabaseName?: string;
772
- DateFormat?: string;
773
- EmptyAsNull?: boolean;
774
- EncryptionMode?: EncryptionModeValue;
775
- ExplicitIds?: boolean;
776
- FileTransferUploadStreams?: number;
777
- LoadTimeout?: number;
778
- MaxFileSize?: number;
779
- Password?: string;
780
- Port?: number;
781
- RemoveQuotes?: boolean;
782
- ReplaceInvalidChars?: string;
783
- ReplaceChars?: string;
784
- ServerName?: string;
785
- ServiceAccessRoleArn?: string;
786
- ServerSideEncryptionKmsKeyId?: string;
787
- TimeFormat?: string;
788
- TrimBlanks?: boolean;
789
- TruncateColumns?: boolean;
790
- Username?: string;
791
- WriteBufferSize?: number;
792
- SecretsManagerAccessRoleArn?: string;
793
- SecretsManagerSecretId?: string;
794
- MapBooleanAsBoolean?: boolean;
768
+ AcceptAnyDate?: boolean | undefined;
769
+ AfterConnectScript?: string | undefined;
770
+ BucketFolder?: string | undefined;
771
+ BucketName?: string | undefined;
772
+ CaseSensitiveNames?: boolean | undefined;
773
+ CompUpdate?: boolean | undefined;
774
+ ConnectionTimeout?: number | undefined;
775
+ DatabaseName?: string | undefined;
776
+ DateFormat?: string | undefined;
777
+ EmptyAsNull?: boolean | undefined;
778
+ EncryptionMode?: EncryptionModeValue | undefined;
779
+ ExplicitIds?: boolean | undefined;
780
+ FileTransferUploadStreams?: number | undefined;
781
+ LoadTimeout?: number | undefined;
782
+ MaxFileSize?: number | undefined;
783
+ Password?: string | undefined;
784
+ Port?: number | undefined;
785
+ RemoveQuotes?: boolean | undefined;
786
+ ReplaceInvalidChars?: string | undefined;
787
+ ReplaceChars?: string | undefined;
788
+ ServerName?: string | undefined;
789
+ ServiceAccessRoleArn?: string | undefined;
790
+ ServerSideEncryptionKmsKeyId?: string | undefined;
791
+ TimeFormat?: string | undefined;
792
+ TrimBlanks?: boolean | undefined;
793
+ TruncateColumns?: boolean | undefined;
794
+ Username?: string | undefined;
795
+ WriteBufferSize?: number | undefined;
796
+ SecretsManagerAccessRoleArn?: string | undefined;
797
+ SecretsManagerSecretId?: string | undefined;
798
+ MapBooleanAsBoolean?: boolean | undefined;
795
799
  }
796
800
  export declare const CannedAclForObjectsValue: {
797
801
  readonly AUTHENTICATED_READ: "authenticated-read";
@@ -848,141 +852,141 @@ export declare const ParquetVersionValue: {
848
852
  export type ParquetVersionValue =
849
853
  (typeof ParquetVersionValue)[keyof typeof ParquetVersionValue];
850
854
  export interface S3Settings {
851
- ServiceAccessRoleArn?: string;
852
- ExternalTableDefinition?: string;
853
- CsvRowDelimiter?: string;
854
- CsvDelimiter?: string;
855
- BucketFolder?: string;
856
- BucketName?: string;
857
- CompressionType?: CompressionTypeValue;
858
- EncryptionMode?: EncryptionModeValue;
859
- ServerSideEncryptionKmsKeyId?: string;
860
- DataFormat?: DataFormatValue;
861
- EncodingType?: EncodingTypeValue;
862
- DictPageSizeLimit?: number;
863
- RowGroupLength?: number;
864
- DataPageSize?: number;
865
- ParquetVersion?: ParquetVersionValue;
866
- EnableStatistics?: boolean;
867
- IncludeOpForFullLoad?: boolean;
868
- CdcInsertsOnly?: boolean;
869
- TimestampColumnName?: string;
870
- ParquetTimestampInMillisecond?: boolean;
871
- CdcInsertsAndUpdates?: boolean;
872
- DatePartitionEnabled?: boolean;
873
- DatePartitionSequence?: DatePartitionSequenceValue;
874
- DatePartitionDelimiter?: DatePartitionDelimiterValue;
875
- UseCsvNoSupValue?: boolean;
876
- CsvNoSupValue?: string;
877
- PreserveTransactions?: boolean;
878
- CdcPath?: string;
879
- UseTaskStartTimeForFullLoadTimestamp?: boolean;
880
- CannedAclForObjects?: CannedAclForObjectsValue;
881
- AddColumnName?: boolean;
882
- CdcMaxBatchInterval?: number;
883
- CdcMinFileSize?: number;
884
- CsvNullValue?: string;
885
- IgnoreHeaderRows?: number;
886
- MaxFileSize?: number;
887
- Rfc4180?: boolean;
888
- DatePartitionTimezone?: string;
889
- AddTrailingPaddingCharacter?: boolean;
890
- ExpectedBucketOwner?: string;
891
- GlueCatalogGeneration?: boolean;
855
+ ServiceAccessRoleArn?: string | undefined;
856
+ ExternalTableDefinition?: string | undefined;
857
+ CsvRowDelimiter?: string | undefined;
858
+ CsvDelimiter?: string | undefined;
859
+ BucketFolder?: string | undefined;
860
+ BucketName?: string | undefined;
861
+ CompressionType?: CompressionTypeValue | undefined;
862
+ EncryptionMode?: EncryptionModeValue | undefined;
863
+ ServerSideEncryptionKmsKeyId?: string | undefined;
864
+ DataFormat?: DataFormatValue | undefined;
865
+ EncodingType?: EncodingTypeValue | undefined;
866
+ DictPageSizeLimit?: number | undefined;
867
+ RowGroupLength?: number | undefined;
868
+ DataPageSize?: number | undefined;
869
+ ParquetVersion?: ParquetVersionValue | undefined;
870
+ EnableStatistics?: boolean | undefined;
871
+ IncludeOpForFullLoad?: boolean | undefined;
872
+ CdcInsertsOnly?: boolean | undefined;
873
+ TimestampColumnName?: string | undefined;
874
+ ParquetTimestampInMillisecond?: boolean | undefined;
875
+ CdcInsertsAndUpdates?: boolean | undefined;
876
+ DatePartitionEnabled?: boolean | undefined;
877
+ DatePartitionSequence?: DatePartitionSequenceValue | undefined;
878
+ DatePartitionDelimiter?: DatePartitionDelimiterValue | undefined;
879
+ UseCsvNoSupValue?: boolean | undefined;
880
+ CsvNoSupValue?: string | undefined;
881
+ PreserveTransactions?: boolean | undefined;
882
+ CdcPath?: string | undefined;
883
+ UseTaskStartTimeForFullLoadTimestamp?: boolean | undefined;
884
+ CannedAclForObjects?: CannedAclForObjectsValue | undefined;
885
+ AddColumnName?: boolean | undefined;
886
+ CdcMaxBatchInterval?: number | undefined;
887
+ CdcMinFileSize?: number | undefined;
888
+ CsvNullValue?: string | undefined;
889
+ IgnoreHeaderRows?: number | undefined;
890
+ MaxFileSize?: number | undefined;
891
+ Rfc4180?: boolean | undefined;
892
+ DatePartitionTimezone?: string | undefined;
893
+ AddTrailingPaddingCharacter?: boolean | undefined;
894
+ ExpectedBucketOwner?: string | undefined;
895
+ GlueCatalogGeneration?: boolean | undefined;
892
896
  }
893
897
  export interface SybaseSettings {
894
- DatabaseName?: string;
895
- Password?: string;
896
- Port?: number;
897
- ServerName?: string;
898
- Username?: string;
899
- SecretsManagerAccessRoleArn?: string;
900
- SecretsManagerSecretId?: string;
898
+ DatabaseName?: string | undefined;
899
+ Password?: string | undefined;
900
+ Port?: number | undefined;
901
+ ServerName?: string | undefined;
902
+ Username?: string | undefined;
903
+ SecretsManagerAccessRoleArn?: string | undefined;
904
+ SecretsManagerSecretId?: string | undefined;
901
905
  }
902
906
  export interface TimestreamSettings {
903
907
  DatabaseName: string | undefined;
904
908
  MemoryDuration: number | undefined;
905
909
  MagneticDuration: number | undefined;
906
- CdcInsertsAndUpdates?: boolean;
907
- EnableMagneticStoreWrites?: boolean;
910
+ CdcInsertsAndUpdates?: boolean | undefined;
911
+ EnableMagneticStoreWrites?: boolean | undefined;
908
912
  }
909
913
  export interface CreateEndpointMessage {
910
914
  EndpointIdentifier: string | undefined;
911
915
  EndpointType: ReplicationEndpointTypeValue | undefined;
912
916
  EngineName: string | undefined;
913
- Username?: string;
914
- Password?: string;
915
- ServerName?: string;
916
- Port?: number;
917
- DatabaseName?: string;
918
- ExtraConnectionAttributes?: string;
919
- KmsKeyId?: string;
920
- Tags?: Tag[];
921
- CertificateArn?: string;
922
- SslMode?: DmsSslModeValue;
923
- ServiceAccessRoleArn?: string;
924
- ExternalTableDefinition?: string;
925
- DynamoDbSettings?: DynamoDbSettings;
926
- S3Settings?: S3Settings;
927
- DmsTransferSettings?: DmsTransferSettings;
928
- MongoDbSettings?: MongoDbSettings;
929
- KinesisSettings?: KinesisSettings;
930
- KafkaSettings?: KafkaSettings;
931
- ElasticsearchSettings?: ElasticsearchSettings;
932
- NeptuneSettings?: NeptuneSettings;
933
- RedshiftSettings?: RedshiftSettings;
934
- PostgreSQLSettings?: PostgreSQLSettings;
935
- MySQLSettings?: MySQLSettings;
936
- OracleSettings?: OracleSettings;
937
- SybaseSettings?: SybaseSettings;
938
- MicrosoftSQLServerSettings?: MicrosoftSQLServerSettings;
939
- IBMDb2Settings?: IBMDb2Settings;
940
- ResourceIdentifier?: string;
941
- DocDbSettings?: DocDbSettings;
942
- RedisSettings?: RedisSettings;
943
- GcpMySQLSettings?: GcpMySQLSettings;
944
- TimestreamSettings?: TimestreamSettings;
917
+ Username?: string | undefined;
918
+ Password?: string | undefined;
919
+ ServerName?: string | undefined;
920
+ Port?: number | undefined;
921
+ DatabaseName?: string | undefined;
922
+ ExtraConnectionAttributes?: string | undefined;
923
+ KmsKeyId?: string | undefined;
924
+ Tags?: Tag[] | undefined;
925
+ CertificateArn?: string | undefined;
926
+ SslMode?: DmsSslModeValue | undefined;
927
+ ServiceAccessRoleArn?: string | undefined;
928
+ ExternalTableDefinition?: string | undefined;
929
+ DynamoDbSettings?: DynamoDbSettings | undefined;
930
+ S3Settings?: S3Settings | undefined;
931
+ DmsTransferSettings?: DmsTransferSettings | undefined;
932
+ MongoDbSettings?: MongoDbSettings | undefined;
933
+ KinesisSettings?: KinesisSettings | undefined;
934
+ KafkaSettings?: KafkaSettings | undefined;
935
+ ElasticsearchSettings?: ElasticsearchSettings | undefined;
936
+ NeptuneSettings?: NeptuneSettings | undefined;
937
+ RedshiftSettings?: RedshiftSettings | undefined;
938
+ PostgreSQLSettings?: PostgreSQLSettings | undefined;
939
+ MySQLSettings?: MySQLSettings | undefined;
940
+ OracleSettings?: OracleSettings | undefined;
941
+ SybaseSettings?: SybaseSettings | undefined;
942
+ MicrosoftSQLServerSettings?: MicrosoftSQLServerSettings | undefined;
943
+ IBMDb2Settings?: IBMDb2Settings | undefined;
944
+ ResourceIdentifier?: string | undefined;
945
+ DocDbSettings?: DocDbSettings | undefined;
946
+ RedisSettings?: RedisSettings | undefined;
947
+ GcpMySQLSettings?: GcpMySQLSettings | undefined;
948
+ TimestreamSettings?: TimestreamSettings | undefined;
945
949
  }
946
950
  export interface Endpoint {
947
- EndpointIdentifier?: string;
948
- EndpointType?: ReplicationEndpointTypeValue;
949
- EngineName?: string;
950
- EngineDisplayName?: string;
951
- Username?: string;
952
- ServerName?: string;
953
- Port?: number;
954
- DatabaseName?: string;
955
- ExtraConnectionAttributes?: string;
956
- Status?: string;
957
- KmsKeyId?: string;
958
- EndpointArn?: string;
959
- CertificateArn?: string;
960
- SslMode?: DmsSslModeValue;
961
- ServiceAccessRoleArn?: string;
962
- ExternalTableDefinition?: string;
963
- ExternalId?: string;
964
- DynamoDbSettings?: DynamoDbSettings;
965
- S3Settings?: S3Settings;
966
- DmsTransferSettings?: DmsTransferSettings;
967
- MongoDbSettings?: MongoDbSettings;
968
- KinesisSettings?: KinesisSettings;
969
- KafkaSettings?: KafkaSettings;
970
- ElasticsearchSettings?: ElasticsearchSettings;
971
- NeptuneSettings?: NeptuneSettings;
972
- RedshiftSettings?: RedshiftSettings;
973
- PostgreSQLSettings?: PostgreSQLSettings;
974
- MySQLSettings?: MySQLSettings;
975
- OracleSettings?: OracleSettings;
976
- SybaseSettings?: SybaseSettings;
977
- MicrosoftSQLServerSettings?: MicrosoftSQLServerSettings;
978
- IBMDb2Settings?: IBMDb2Settings;
979
- DocDbSettings?: DocDbSettings;
980
- RedisSettings?: RedisSettings;
981
- GcpMySQLSettings?: GcpMySQLSettings;
982
- TimestreamSettings?: TimestreamSettings;
951
+ EndpointIdentifier?: string | undefined;
952
+ EndpointType?: ReplicationEndpointTypeValue | undefined;
953
+ EngineName?: string | undefined;
954
+ EngineDisplayName?: string | undefined;
955
+ Username?: string | undefined;
956
+ ServerName?: string | undefined;
957
+ Port?: number | undefined;
958
+ DatabaseName?: string | undefined;
959
+ ExtraConnectionAttributes?: string | undefined;
960
+ Status?: string | undefined;
961
+ KmsKeyId?: string | undefined;
962
+ EndpointArn?: string | undefined;
963
+ CertificateArn?: string | undefined;
964
+ SslMode?: DmsSslModeValue | undefined;
965
+ ServiceAccessRoleArn?: string | undefined;
966
+ ExternalTableDefinition?: string | undefined;
967
+ ExternalId?: string | undefined;
968
+ DynamoDbSettings?: DynamoDbSettings | undefined;
969
+ S3Settings?: S3Settings | undefined;
970
+ DmsTransferSettings?: DmsTransferSettings | undefined;
971
+ MongoDbSettings?: MongoDbSettings | undefined;
972
+ KinesisSettings?: KinesisSettings | undefined;
973
+ KafkaSettings?: KafkaSettings | undefined;
974
+ ElasticsearchSettings?: ElasticsearchSettings | undefined;
975
+ NeptuneSettings?: NeptuneSettings | undefined;
976
+ RedshiftSettings?: RedshiftSettings | undefined;
977
+ PostgreSQLSettings?: PostgreSQLSettings | undefined;
978
+ MySQLSettings?: MySQLSettings | undefined;
979
+ OracleSettings?: OracleSettings | undefined;
980
+ SybaseSettings?: SybaseSettings | undefined;
981
+ MicrosoftSQLServerSettings?: MicrosoftSQLServerSettings | undefined;
982
+ IBMDb2Settings?: IBMDb2Settings | undefined;
983
+ DocDbSettings?: DocDbSettings | undefined;
984
+ RedisSettings?: RedisSettings | undefined;
985
+ GcpMySQLSettings?: GcpMySQLSettings | undefined;
986
+ TimestreamSettings?: TimestreamSettings | undefined;
983
987
  }
984
988
  export interface CreateEndpointResponse {
985
- Endpoint?: Endpoint;
989
+ Endpoint?: Endpoint | undefined;
986
990
  }
987
991
  export declare class KMSKeyNotAccessibleFault extends __BaseException {
988
992
  readonly name: "KMSKeyNotAccessibleFault";
@@ -1001,25 +1005,25 @@ export declare class S3AccessDeniedFault extends __BaseException {
1001
1005
  export interface CreateEventSubscriptionMessage {
1002
1006
  SubscriptionName: string | undefined;
1003
1007
  SnsTopicArn: string | undefined;
1004
- SourceType?: string;
1005
- EventCategories?: string[];
1006
- SourceIds?: string[];
1007
- Enabled?: boolean;
1008
- Tags?: Tag[];
1008
+ SourceType?: string | undefined;
1009
+ EventCategories?: string[] | undefined;
1010
+ SourceIds?: string[] | undefined;
1011
+ Enabled?: boolean | undefined;
1012
+ Tags?: Tag[] | undefined;
1009
1013
  }
1010
1014
  export interface EventSubscription {
1011
- CustomerAwsId?: string;
1012
- CustSubscriptionId?: string;
1013
- SnsTopicArn?: string;
1014
- Status?: string;
1015
- SubscriptionCreationTime?: string;
1016
- SourceType?: string;
1017
- SourceIdsList?: string[];
1018
- EventCategoriesList?: string[];
1019
- Enabled?: boolean;
1015
+ CustomerAwsId?: string | undefined;
1016
+ CustSubscriptionId?: string | undefined;
1017
+ SnsTopicArn?: string | undefined;
1018
+ Status?: string | undefined;
1019
+ SubscriptionCreationTime?: string | undefined;
1020
+ SourceType?: string | undefined;
1021
+ SourceIdsList?: string[] | undefined;
1022
+ EventCategoriesList?: string[] | undefined;
1023
+ Enabled?: boolean | undefined;
1020
1024
  }
1021
1025
  export interface CreateEventSubscriptionResponse {
1022
- EventSubscription?: EventSubscription;
1026
+ EventSubscription?: EventSubscription | undefined;
1023
1027
  }
1024
1028
  export declare class KMSAccessDeniedFault extends __BaseException {
1025
1029
  readonly name: "KMSAccessDeniedFault";
@@ -1066,16 +1070,16 @@ export declare class SNSNoAuthorizationFault extends __BaseException {
1066
1070
  }
1067
1071
  export interface CreateFleetAdvisorCollectorRequest {
1068
1072
  CollectorName: string | undefined;
1069
- Description?: string;
1073
+ Description?: string | undefined;
1070
1074
  ServiceAccessRoleArn: string | undefined;
1071
1075
  S3BucketName: string | undefined;
1072
1076
  }
1073
1077
  export interface CreateFleetAdvisorCollectorResponse {
1074
- CollectorReferencedId?: string;
1075
- CollectorName?: string;
1076
- Description?: string;
1077
- ServiceAccessRoleArn?: string;
1078
- S3BucketName?: string;
1078
+ CollectorReferencedId?: string | undefined;
1079
+ CollectorName?: string | undefined;
1080
+ Description?: string | undefined;
1081
+ ServiceAccessRoleArn?: string | undefined;
1082
+ S3BucketName?: string | undefined;
1079
1083
  }
1080
1084
  export declare class S3ResourceNotFoundFault extends __BaseException {
1081
1085
  readonly name: "S3ResourceNotFoundFault";
@@ -1085,81 +1089,81 @@ export declare class S3ResourceNotFoundFault extends __BaseException {
1085
1089
  );
1086
1090
  }
1087
1091
  export interface CreateInstanceProfileMessage {
1088
- AvailabilityZone?: string;
1089
- KmsKeyArn?: string;
1090
- PubliclyAccessible?: boolean;
1091
- Tags?: Tag[];
1092
- NetworkType?: string;
1093
- InstanceProfileName?: string;
1094
- Description?: string;
1095
- SubnetGroupIdentifier?: string;
1096
- VpcSecurityGroups?: string[];
1092
+ AvailabilityZone?: string | undefined;
1093
+ KmsKeyArn?: string | undefined;
1094
+ PubliclyAccessible?: boolean | undefined;
1095
+ Tags?: Tag[] | undefined;
1096
+ NetworkType?: string | undefined;
1097
+ InstanceProfileName?: string | undefined;
1098
+ Description?: string | undefined;
1099
+ SubnetGroupIdentifier?: string | undefined;
1100
+ VpcSecurityGroups?: string[] | undefined;
1097
1101
  }
1098
1102
  export interface InstanceProfile {
1099
- InstanceProfileArn?: string;
1100
- AvailabilityZone?: string;
1101
- KmsKeyArn?: string;
1102
- PubliclyAccessible?: boolean;
1103
- NetworkType?: string;
1104
- InstanceProfileName?: string;
1105
- Description?: string;
1106
- InstanceProfileCreationTime?: Date;
1107
- SubnetGroupIdentifier?: string;
1108
- VpcSecurityGroups?: string[];
1103
+ InstanceProfileArn?: string | undefined;
1104
+ AvailabilityZone?: string | undefined;
1105
+ KmsKeyArn?: string | undefined;
1106
+ PubliclyAccessible?: boolean | undefined;
1107
+ NetworkType?: string | undefined;
1108
+ InstanceProfileName?: string | undefined;
1109
+ Description?: string | undefined;
1110
+ InstanceProfileCreationTime?: Date | undefined;
1111
+ SubnetGroupIdentifier?: string | undefined;
1112
+ VpcSecurityGroups?: string[] | undefined;
1109
1113
  }
1110
1114
  export interface CreateInstanceProfileResponse {
1111
- InstanceProfile?: InstanceProfile;
1115
+ InstanceProfile?: InstanceProfile | undefined;
1112
1116
  }
1113
1117
  export interface SCApplicationAttributes {
1114
- S3BucketPath?: string;
1115
- S3BucketRoleArn?: string;
1118
+ S3BucketPath?: string | undefined;
1119
+ S3BucketRoleArn?: string | undefined;
1116
1120
  }
1117
1121
  export interface DataProviderDescriptorDefinition {
1118
1122
  DataProviderIdentifier: string | undefined;
1119
- SecretsManagerSecretId?: string;
1120
- SecretsManagerAccessRoleArn?: string;
1123
+ SecretsManagerSecretId?: string | undefined;
1124
+ SecretsManagerAccessRoleArn?: string | undefined;
1121
1125
  }
1122
1126
  export interface CreateMigrationProjectMessage {
1123
- MigrationProjectName?: string;
1127
+ MigrationProjectName?: string | undefined;
1124
1128
  SourceDataProviderDescriptors: DataProviderDescriptorDefinition[] | undefined;
1125
1129
  TargetDataProviderDescriptors: DataProviderDescriptorDefinition[] | undefined;
1126
1130
  InstanceProfileIdentifier: string | undefined;
1127
- TransformationRules?: string;
1128
- Description?: string;
1129
- Tags?: Tag[];
1130
- SchemaConversionApplicationAttributes?: SCApplicationAttributes;
1131
+ TransformationRules?: string | undefined;
1132
+ Description?: string | undefined;
1133
+ Tags?: Tag[] | undefined;
1134
+ SchemaConversionApplicationAttributes?: SCApplicationAttributes | undefined;
1131
1135
  }
1132
1136
  export interface DataProviderDescriptor {
1133
- SecretsManagerSecretId?: string;
1134
- SecretsManagerAccessRoleArn?: string;
1135
- DataProviderName?: string;
1136
- DataProviderArn?: string;
1137
+ SecretsManagerSecretId?: string | undefined;
1138
+ SecretsManagerAccessRoleArn?: string | undefined;
1139
+ DataProviderName?: string | undefined;
1140
+ DataProviderArn?: string | undefined;
1137
1141
  }
1138
1142
  export interface MigrationProject {
1139
- MigrationProjectName?: string;
1140
- MigrationProjectArn?: string;
1141
- MigrationProjectCreationTime?: Date;
1142
- SourceDataProviderDescriptors?: DataProviderDescriptor[];
1143
- TargetDataProviderDescriptors?: DataProviderDescriptor[];
1144
- InstanceProfileArn?: string;
1145
- InstanceProfileName?: string;
1146
- TransformationRules?: string;
1147
- Description?: string;
1148
- SchemaConversionApplicationAttributes?: SCApplicationAttributes;
1143
+ MigrationProjectName?: string | undefined;
1144
+ MigrationProjectArn?: string | undefined;
1145
+ MigrationProjectCreationTime?: Date | undefined;
1146
+ SourceDataProviderDescriptors?: DataProviderDescriptor[] | undefined;
1147
+ TargetDataProviderDescriptors?: DataProviderDescriptor[] | undefined;
1148
+ InstanceProfileArn?: string | undefined;
1149
+ InstanceProfileName?: string | undefined;
1150
+ TransformationRules?: string | undefined;
1151
+ Description?: string | undefined;
1152
+ SchemaConversionApplicationAttributes?: SCApplicationAttributes | undefined;
1149
1153
  }
1150
1154
  export interface CreateMigrationProjectResponse {
1151
- MigrationProject?: MigrationProject;
1155
+ MigrationProject?: MigrationProject | undefined;
1152
1156
  }
1153
1157
  export interface ComputeConfig {
1154
- AvailabilityZone?: string;
1155
- DnsNameServers?: string;
1156
- KmsKeyId?: string;
1157
- MaxCapacityUnits?: number;
1158
- MinCapacityUnits?: number;
1159
- MultiAZ?: boolean;
1160
- PreferredMaintenanceWindow?: string;
1161
- ReplicationSubnetGroupId?: string;
1162
- VpcSecurityGroupIds?: string[];
1158
+ AvailabilityZone?: string | undefined;
1159
+ DnsNameServers?: string | undefined;
1160
+ KmsKeyId?: string | undefined;
1161
+ MaxCapacityUnits?: number | undefined;
1162
+ MinCapacityUnits?: number | undefined;
1163
+ MultiAZ?: boolean | undefined;
1164
+ PreferredMaintenanceWindow?: string | undefined;
1165
+ ReplicationSubnetGroupId?: string | undefined;
1166
+ VpcSecurityGroupIds?: string[] | undefined;
1163
1167
  }
1164
1168
  export interface CreateReplicationConfigMessage {
1165
1169
  ReplicationConfigIdentifier: string | undefined;
@@ -1168,26 +1172,26 @@ export interface CreateReplicationConfigMessage {
1168
1172
  ComputeConfig: ComputeConfig | undefined;
1169
1173
  ReplicationType: MigrationTypeValue | undefined;
1170
1174
  TableMappings: string | undefined;
1171
- ReplicationSettings?: string;
1172
- SupplementalSettings?: string;
1173
- ResourceIdentifier?: string;
1174
- Tags?: Tag[];
1175
+ ReplicationSettings?: string | undefined;
1176
+ SupplementalSettings?: string | undefined;
1177
+ ResourceIdentifier?: string | undefined;
1178
+ Tags?: Tag[] | undefined;
1175
1179
  }
1176
1180
  export interface ReplicationConfig {
1177
- ReplicationConfigIdentifier?: string;
1178
- ReplicationConfigArn?: string;
1179
- SourceEndpointArn?: string;
1180
- TargetEndpointArn?: string;
1181
- ReplicationType?: MigrationTypeValue;
1182
- ComputeConfig?: ComputeConfig;
1183
- ReplicationSettings?: string;
1184
- SupplementalSettings?: string;
1185
- TableMappings?: string;
1186
- ReplicationConfigCreateTime?: Date;
1187
- ReplicationConfigUpdateTime?: Date;
1181
+ ReplicationConfigIdentifier?: string | undefined;
1182
+ ReplicationConfigArn?: string | undefined;
1183
+ SourceEndpointArn?: string | undefined;
1184
+ TargetEndpointArn?: string | undefined;
1185
+ ReplicationType?: MigrationTypeValue | undefined;
1186
+ ComputeConfig?: ComputeConfig | undefined;
1187
+ ReplicationSettings?: string | undefined;
1188
+ SupplementalSettings?: string | undefined;
1189
+ TableMappings?: string | undefined;
1190
+ ReplicationConfigCreateTime?: Date | undefined;
1191
+ ReplicationConfigUpdateTime?: Date | undefined;
1188
1192
  }
1189
1193
  export interface CreateReplicationConfigResponse {
1190
- ReplicationConfig?: ReplicationConfig;
1194
+ ReplicationConfig?: ReplicationConfig | undefined;
1191
1195
  }
1192
1196
  export declare class InvalidSubnet extends __BaseException {
1193
1197
  readonly name: "InvalidSubnet";
@@ -1206,78 +1210,78 @@ export declare class ReplicationSubnetGroupDoesNotCoverEnoughAZs extends __BaseE
1206
1210
  }
1207
1211
  export interface CreateReplicationInstanceMessage {
1208
1212
  ReplicationInstanceIdentifier: string | undefined;
1209
- AllocatedStorage?: number;
1213
+ AllocatedStorage?: number | undefined;
1210
1214
  ReplicationInstanceClass: string | undefined;
1211
- VpcSecurityGroupIds?: string[];
1212
- AvailabilityZone?: string;
1213
- ReplicationSubnetGroupIdentifier?: string;
1214
- PreferredMaintenanceWindow?: string;
1215
- MultiAZ?: boolean;
1216
- EngineVersion?: string;
1217
- AutoMinorVersionUpgrade?: boolean;
1218
- Tags?: Tag[];
1219
- KmsKeyId?: string;
1220
- PubliclyAccessible?: boolean;
1221
- DnsNameServers?: string;
1222
- ResourceIdentifier?: string;
1223
- NetworkType?: string;
1215
+ VpcSecurityGroupIds?: string[] | undefined;
1216
+ AvailabilityZone?: string | undefined;
1217
+ ReplicationSubnetGroupIdentifier?: string | undefined;
1218
+ PreferredMaintenanceWindow?: string | undefined;
1219
+ MultiAZ?: boolean | undefined;
1220
+ EngineVersion?: string | undefined;
1221
+ AutoMinorVersionUpgrade?: boolean | undefined;
1222
+ Tags?: Tag[] | undefined;
1223
+ KmsKeyId?: string | undefined;
1224
+ PubliclyAccessible?: boolean | undefined;
1225
+ DnsNameServers?: string | undefined;
1226
+ ResourceIdentifier?: string | undefined;
1227
+ NetworkType?: string | undefined;
1224
1228
  }
1225
1229
  export interface ReplicationPendingModifiedValues {
1226
- ReplicationInstanceClass?: string;
1227
- AllocatedStorage?: number;
1228
- MultiAZ?: boolean;
1229
- EngineVersion?: string;
1230
- NetworkType?: string;
1230
+ ReplicationInstanceClass?: string | undefined;
1231
+ AllocatedStorage?: number | undefined;
1232
+ MultiAZ?: boolean | undefined;
1233
+ EngineVersion?: string | undefined;
1234
+ NetworkType?: string | undefined;
1231
1235
  }
1232
1236
  export interface AvailabilityZone {
1233
- Name?: string;
1237
+ Name?: string | undefined;
1234
1238
  }
1235
1239
  export interface Subnet {
1236
- SubnetIdentifier?: string;
1237
- SubnetAvailabilityZone?: AvailabilityZone;
1238
- SubnetStatus?: string;
1240
+ SubnetIdentifier?: string | undefined;
1241
+ SubnetAvailabilityZone?: AvailabilityZone | undefined;
1242
+ SubnetStatus?: string | undefined;
1239
1243
  }
1240
1244
  export interface ReplicationSubnetGroup {
1241
- ReplicationSubnetGroupIdentifier?: string;
1242
- ReplicationSubnetGroupDescription?: string;
1243
- VpcId?: string;
1244
- SubnetGroupStatus?: string;
1245
- Subnets?: Subnet[];
1246
- SupportedNetworkTypes?: string[];
1245
+ ReplicationSubnetGroupIdentifier?: string | undefined;
1246
+ ReplicationSubnetGroupDescription?: string | undefined;
1247
+ VpcId?: string | undefined;
1248
+ SubnetGroupStatus?: string | undefined;
1249
+ Subnets?: Subnet[] | undefined;
1250
+ SupportedNetworkTypes?: string[] | undefined;
1247
1251
  }
1248
1252
  export interface VpcSecurityGroupMembership {
1249
- VpcSecurityGroupId?: string;
1250
- Status?: string;
1253
+ VpcSecurityGroupId?: string | undefined;
1254
+ Status?: string | undefined;
1251
1255
  }
1252
1256
  export interface ReplicationInstance {
1253
- ReplicationInstanceIdentifier?: string;
1254
- ReplicationInstanceClass?: string;
1255
- ReplicationInstanceStatus?: string;
1256
- AllocatedStorage?: number;
1257
- InstanceCreateTime?: Date;
1258
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
1259
- AvailabilityZone?: string;
1260
- ReplicationSubnetGroup?: ReplicationSubnetGroup;
1261
- PreferredMaintenanceWindow?: string;
1262
- PendingModifiedValues?: ReplicationPendingModifiedValues;
1263
- MultiAZ?: boolean;
1264
- EngineVersion?: string;
1265
- AutoMinorVersionUpgrade?: boolean;
1266
- KmsKeyId?: string;
1267
- ReplicationInstanceArn?: string;
1268
- ReplicationInstancePublicIpAddress?: string;
1269
- ReplicationInstancePrivateIpAddress?: string;
1270
- ReplicationInstancePublicIpAddresses?: string[];
1271
- ReplicationInstancePrivateIpAddresses?: string[];
1272
- ReplicationInstanceIpv6Addresses?: string[];
1273
- PubliclyAccessible?: boolean;
1274
- SecondaryAvailabilityZone?: string;
1275
- FreeUntil?: Date;
1276
- DnsNameServers?: string;
1277
- NetworkType?: string;
1257
+ ReplicationInstanceIdentifier?: string | undefined;
1258
+ ReplicationInstanceClass?: string | undefined;
1259
+ ReplicationInstanceStatus?: string | undefined;
1260
+ AllocatedStorage?: number | undefined;
1261
+ InstanceCreateTime?: Date | undefined;
1262
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
1263
+ AvailabilityZone?: string | undefined;
1264
+ ReplicationSubnetGroup?: ReplicationSubnetGroup | undefined;
1265
+ PreferredMaintenanceWindow?: string | undefined;
1266
+ PendingModifiedValues?: ReplicationPendingModifiedValues | undefined;
1267
+ MultiAZ?: boolean | undefined;
1268
+ EngineVersion?: string | undefined;
1269
+ AutoMinorVersionUpgrade?: boolean | undefined;
1270
+ KmsKeyId?: string | undefined;
1271
+ ReplicationInstanceArn?: string | undefined;
1272
+ ReplicationInstancePublicIpAddress?: string | undefined;
1273
+ ReplicationInstancePrivateIpAddress?: string | undefined;
1274
+ ReplicationInstancePublicIpAddresses?: string[] | undefined;
1275
+ ReplicationInstancePrivateIpAddresses?: string[] | undefined;
1276
+ ReplicationInstanceIpv6Addresses?: string[] | undefined;
1277
+ PubliclyAccessible?: boolean | undefined;
1278
+ SecondaryAvailabilityZone?: string | undefined;
1279
+ FreeUntil?: Date | undefined;
1280
+ DnsNameServers?: string | undefined;
1281
+ NetworkType?: string | undefined;
1278
1282
  }
1279
1283
  export interface CreateReplicationInstanceResponse {
1280
- ReplicationInstance?: ReplicationInstance;
1284
+ ReplicationInstance?: ReplicationInstance | undefined;
1281
1285
  }
1282
1286
  export declare class InsufficientResourceCapacityFault extends __BaseException {
1283
1287
  readonly name: "InsufficientResourceCapacityFault";
@@ -1300,10 +1304,10 @@ export interface CreateReplicationSubnetGroupMessage {
1300
1304
  ReplicationSubnetGroupIdentifier: string | undefined;
1301
1305
  ReplicationSubnetGroupDescription: string | undefined;
1302
1306
  SubnetIds: string[] | undefined;
1303
- Tags?: Tag[];
1307
+ Tags?: Tag[] | undefined;
1304
1308
  }
1305
1309
  export interface CreateReplicationSubnetGroupResponse {
1306
- ReplicationSubnetGroup?: ReplicationSubnetGroup;
1310
+ ReplicationSubnetGroup?: ReplicationSubnetGroup | undefined;
1307
1311
  }
1308
1312
  export interface CreateReplicationTaskMessage {
1309
1313
  ReplicationTaskIdentifier: string | undefined;
@@ -1312,107 +1316,107 @@ export interface CreateReplicationTaskMessage {
1312
1316
  ReplicationInstanceArn: string | undefined;
1313
1317
  MigrationType: MigrationTypeValue | undefined;
1314
1318
  TableMappings: string | undefined;
1315
- ReplicationTaskSettings?: string;
1316
- CdcStartTime?: Date;
1317
- CdcStartPosition?: string;
1318
- CdcStopPosition?: string;
1319
- Tags?: Tag[];
1320
- TaskData?: string;
1321
- ResourceIdentifier?: string;
1319
+ ReplicationTaskSettings?: string | undefined;
1320
+ CdcStartTime?: Date | undefined;
1321
+ CdcStartPosition?: string | undefined;
1322
+ CdcStopPosition?: string | undefined;
1323
+ Tags?: Tag[] | undefined;
1324
+ TaskData?: string | undefined;
1325
+ ResourceIdentifier?: string | undefined;
1322
1326
  }
1323
1327
  export interface ReplicationTaskStats {
1324
- FullLoadProgressPercent?: number;
1325
- ElapsedTimeMillis?: number;
1326
- TablesLoaded?: number;
1327
- TablesLoading?: number;
1328
- TablesQueued?: number;
1329
- TablesErrored?: number;
1330
- FreshStartDate?: Date;
1331
- StartDate?: Date;
1332
- StopDate?: Date;
1333
- FullLoadStartDate?: Date;
1334
- FullLoadFinishDate?: Date;
1328
+ FullLoadProgressPercent?: number | undefined;
1329
+ ElapsedTimeMillis?: number | undefined;
1330
+ TablesLoaded?: number | undefined;
1331
+ TablesLoading?: number | undefined;
1332
+ TablesQueued?: number | undefined;
1333
+ TablesErrored?: number | undefined;
1334
+ FreshStartDate?: Date | undefined;
1335
+ StartDate?: Date | undefined;
1336
+ StopDate?: Date | undefined;
1337
+ FullLoadStartDate?: Date | undefined;
1338
+ FullLoadFinishDate?: Date | undefined;
1335
1339
  }
1336
1340
  export interface ReplicationTask {
1337
- ReplicationTaskIdentifier?: string;
1338
- SourceEndpointArn?: string;
1339
- TargetEndpointArn?: string;
1340
- ReplicationInstanceArn?: string;
1341
- MigrationType?: MigrationTypeValue;
1342
- TableMappings?: string;
1343
- ReplicationTaskSettings?: string;
1344
- Status?: string;
1345
- LastFailureMessage?: string;
1346
- StopReason?: string;
1347
- ReplicationTaskCreationDate?: Date;
1348
- ReplicationTaskStartDate?: Date;
1349
- CdcStartPosition?: string;
1350
- CdcStopPosition?: string;
1351
- RecoveryCheckpoint?: string;
1352
- ReplicationTaskArn?: string;
1353
- ReplicationTaskStats?: ReplicationTaskStats;
1354
- TaskData?: string;
1355
- TargetReplicationInstanceArn?: string;
1341
+ ReplicationTaskIdentifier?: string | undefined;
1342
+ SourceEndpointArn?: string | undefined;
1343
+ TargetEndpointArn?: string | undefined;
1344
+ ReplicationInstanceArn?: string | undefined;
1345
+ MigrationType?: MigrationTypeValue | undefined;
1346
+ TableMappings?: string | undefined;
1347
+ ReplicationTaskSettings?: string | undefined;
1348
+ Status?: string | undefined;
1349
+ LastFailureMessage?: string | undefined;
1350
+ StopReason?: string | undefined;
1351
+ ReplicationTaskCreationDate?: Date | undefined;
1352
+ ReplicationTaskStartDate?: Date | undefined;
1353
+ CdcStartPosition?: string | undefined;
1354
+ CdcStopPosition?: string | undefined;
1355
+ RecoveryCheckpoint?: string | undefined;
1356
+ ReplicationTaskArn?: string | undefined;
1357
+ ReplicationTaskStats?: ReplicationTaskStats | undefined;
1358
+ TaskData?: string | undefined;
1359
+ TargetReplicationInstanceArn?: string | undefined;
1356
1360
  }
1357
1361
  export interface CreateReplicationTaskResponse {
1358
- ReplicationTask?: ReplicationTask;
1362
+ ReplicationTask?: ReplicationTask | undefined;
1359
1363
  }
1360
1364
  export interface DeleteCertificateMessage {
1361
1365
  CertificateArn: string | undefined;
1362
1366
  }
1363
1367
  export interface Certificate {
1364
- CertificateIdentifier?: string;
1365
- CertificateCreationDate?: Date;
1366
- CertificatePem?: string;
1367
- CertificateWallet?: Uint8Array;
1368
- CertificateArn?: string;
1369
- CertificateOwner?: string;
1370
- ValidFromDate?: Date;
1371
- ValidToDate?: Date;
1372
- SigningAlgorithm?: string;
1373
- KeyLength?: number;
1368
+ CertificateIdentifier?: string | undefined;
1369
+ CertificateCreationDate?: Date | undefined;
1370
+ CertificatePem?: string | undefined;
1371
+ CertificateWallet?: Uint8Array | undefined;
1372
+ CertificateArn?: string | undefined;
1373
+ CertificateOwner?: string | undefined;
1374
+ ValidFromDate?: Date | undefined;
1375
+ ValidToDate?: Date | undefined;
1376
+ SigningAlgorithm?: string | undefined;
1377
+ KeyLength?: number | undefined;
1374
1378
  }
1375
1379
  export interface DeleteCertificateResponse {
1376
- Certificate?: Certificate;
1380
+ Certificate?: Certificate | undefined;
1377
1381
  }
1378
1382
  export interface DeleteConnectionMessage {
1379
1383
  EndpointArn: string | undefined;
1380
1384
  ReplicationInstanceArn: string | undefined;
1381
1385
  }
1382
1386
  export interface Connection {
1383
- ReplicationInstanceArn?: string;
1384
- EndpointArn?: string;
1385
- Status?: string;
1386
- LastFailureMessage?: string;
1387
- EndpointIdentifier?: string;
1388
- ReplicationInstanceIdentifier?: string;
1387
+ ReplicationInstanceArn?: string | undefined;
1388
+ EndpointArn?: string | undefined;
1389
+ Status?: string | undefined;
1390
+ LastFailureMessage?: string | undefined;
1391
+ EndpointIdentifier?: string | undefined;
1392
+ ReplicationInstanceIdentifier?: string | undefined;
1389
1393
  }
1390
1394
  export interface DeleteConnectionResponse {
1391
- Connection?: Connection;
1395
+ Connection?: Connection | undefined;
1392
1396
  }
1393
1397
  export interface DeleteDataMigrationMessage {
1394
1398
  DataMigrationIdentifier: string | undefined;
1395
1399
  }
1396
1400
  export interface DeleteDataMigrationResponse {
1397
- DataMigration?: DataMigration;
1401
+ DataMigration?: DataMigration | undefined;
1398
1402
  }
1399
1403
  export interface DeleteDataProviderMessage {
1400
1404
  DataProviderIdentifier: string | undefined;
1401
1405
  }
1402
1406
  export interface DeleteDataProviderResponse {
1403
- DataProvider?: DataProvider;
1407
+ DataProvider?: DataProvider | undefined;
1404
1408
  }
1405
1409
  export interface DeleteEndpointMessage {
1406
1410
  EndpointArn: string | undefined;
1407
1411
  }
1408
1412
  export interface DeleteEndpointResponse {
1409
- Endpoint?: Endpoint;
1413
+ Endpoint?: Endpoint | undefined;
1410
1414
  }
1411
1415
  export interface DeleteEventSubscriptionMessage {
1412
1416
  SubscriptionName: string | undefined;
1413
1417
  }
1414
1418
  export interface DeleteEventSubscriptionResponse {
1415
- EventSubscription?: EventSubscription;
1419
+ EventSubscription?: EventSubscription | undefined;
1416
1420
  }
1417
1421
  export declare class CollectorNotFoundFault extends __BaseException {
1418
1422
  readonly name: "CollectorNotFoundFault";
@@ -1428,31 +1432,31 @@ export interface DeleteFleetAdvisorDatabasesRequest {
1428
1432
  DatabaseIds: string[] | undefined;
1429
1433
  }
1430
1434
  export interface DeleteFleetAdvisorDatabasesResponse {
1431
- DatabaseIds?: string[];
1435
+ DatabaseIds?: string[] | undefined;
1432
1436
  }
1433
1437
  export interface DeleteInstanceProfileMessage {
1434
1438
  InstanceProfileIdentifier: string | undefined;
1435
1439
  }
1436
1440
  export interface DeleteInstanceProfileResponse {
1437
- InstanceProfile?: InstanceProfile;
1441
+ InstanceProfile?: InstanceProfile | undefined;
1438
1442
  }
1439
1443
  export interface DeleteMigrationProjectMessage {
1440
1444
  MigrationProjectIdentifier: string | undefined;
1441
1445
  }
1442
1446
  export interface DeleteMigrationProjectResponse {
1443
- MigrationProject?: MigrationProject;
1447
+ MigrationProject?: MigrationProject | undefined;
1444
1448
  }
1445
1449
  export interface DeleteReplicationConfigMessage {
1446
1450
  ReplicationConfigArn: string | undefined;
1447
1451
  }
1448
1452
  export interface DeleteReplicationConfigResponse {
1449
- ReplicationConfig?: ReplicationConfig;
1453
+ ReplicationConfig?: ReplicationConfig | undefined;
1450
1454
  }
1451
1455
  export interface DeleteReplicationInstanceMessage {
1452
1456
  ReplicationInstanceArn: string | undefined;
1453
1457
  }
1454
1458
  export interface DeleteReplicationInstanceResponse {
1455
- ReplicationInstance?: ReplicationInstance;
1459
+ ReplicationInstance?: ReplicationInstance | undefined;
1456
1460
  }
1457
1461
  export interface DeleteReplicationSubnetGroupMessage {
1458
1462
  ReplicationSubnetGroupIdentifier: string | undefined;
@@ -1462,94 +1466,94 @@ export interface DeleteReplicationTaskMessage {
1462
1466
  ReplicationTaskArn: string | undefined;
1463
1467
  }
1464
1468
  export interface DeleteReplicationTaskResponse {
1465
- ReplicationTask?: ReplicationTask;
1469
+ ReplicationTask?: ReplicationTask | undefined;
1466
1470
  }
1467
1471
  export interface DeleteReplicationTaskAssessmentRunMessage {
1468
1472
  ReplicationTaskAssessmentRunArn: string | undefined;
1469
1473
  }
1470
1474
  export interface DeleteReplicationTaskAssessmentRunResponse {
1471
- ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun;
1475
+ ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun | undefined;
1472
1476
  }
1473
1477
  export interface DescribeAccountAttributesMessage {}
1474
1478
  export interface DescribeAccountAttributesResponse {
1475
- AccountQuotas?: AccountQuota[];
1476
- UniqueAccountIdentifier?: string;
1479
+ AccountQuotas?: AccountQuota[] | undefined;
1480
+ UniqueAccountIdentifier?: string | undefined;
1477
1481
  }
1478
1482
  export interface DescribeApplicableIndividualAssessmentsMessage {
1479
- ReplicationTaskArn?: string;
1480
- ReplicationInstanceArn?: string;
1481
- SourceEngineName?: string;
1482
- TargetEngineName?: string;
1483
- MigrationType?: MigrationTypeValue;
1484
- MaxRecords?: number;
1485
- Marker?: string;
1483
+ ReplicationTaskArn?: string | undefined;
1484
+ ReplicationInstanceArn?: string | undefined;
1485
+ SourceEngineName?: string | undefined;
1486
+ TargetEngineName?: string | undefined;
1487
+ MigrationType?: MigrationTypeValue | undefined;
1488
+ MaxRecords?: number | undefined;
1489
+ Marker?: string | undefined;
1486
1490
  }
1487
1491
  export interface DescribeApplicableIndividualAssessmentsResponse {
1488
- IndividualAssessmentNames?: string[];
1489
- Marker?: string;
1492
+ IndividualAssessmentNames?: string[] | undefined;
1493
+ Marker?: string | undefined;
1490
1494
  }
1491
1495
  export interface Filter {
1492
1496
  Name: string | undefined;
1493
1497
  Values: string[] | undefined;
1494
1498
  }
1495
1499
  export interface DescribeCertificatesMessage {
1496
- Filters?: Filter[];
1497
- MaxRecords?: number;
1498
- Marker?: string;
1500
+ Filters?: Filter[] | undefined;
1501
+ MaxRecords?: number | undefined;
1502
+ Marker?: string | undefined;
1499
1503
  }
1500
1504
  export interface DescribeCertificatesResponse {
1501
- Marker?: string;
1502
- Certificates?: Certificate[];
1505
+ Marker?: string | undefined;
1506
+ Certificates?: Certificate[] | undefined;
1503
1507
  }
1504
1508
  export interface DescribeConnectionsMessage {
1505
- Filters?: Filter[];
1506
- MaxRecords?: number;
1507
- Marker?: string;
1509
+ Filters?: Filter[] | undefined;
1510
+ MaxRecords?: number | undefined;
1511
+ Marker?: string | undefined;
1508
1512
  }
1509
1513
  export interface DescribeConnectionsResponse {
1510
- Marker?: string;
1511
- Connections?: Connection[];
1514
+ Marker?: string | undefined;
1515
+ Connections?: Connection[] | undefined;
1512
1516
  }
1513
1517
  export interface DescribeConversionConfigurationMessage {
1514
1518
  MigrationProjectIdentifier: string | undefined;
1515
1519
  }
1516
1520
  export interface DescribeConversionConfigurationResponse {
1517
- MigrationProjectIdentifier?: string;
1518
- ConversionConfiguration?: string;
1521
+ MigrationProjectIdentifier?: string | undefined;
1522
+ ConversionConfiguration?: string | undefined;
1519
1523
  }
1520
1524
  export interface DescribeDataMigrationsMessage {
1521
- Filters?: Filter[];
1522
- MaxRecords?: number;
1523
- Marker?: string;
1524
- WithoutSettings?: boolean;
1525
- WithoutStatistics?: boolean;
1525
+ Filters?: Filter[] | undefined;
1526
+ MaxRecords?: number | undefined;
1527
+ Marker?: string | undefined;
1528
+ WithoutSettings?: boolean | undefined;
1529
+ WithoutStatistics?: boolean | undefined;
1526
1530
  }
1527
1531
  export interface DescribeDataMigrationsResponse {
1528
- DataMigrations?: DataMigration[];
1529
- Marker?: string;
1532
+ DataMigrations?: DataMigration[] | undefined;
1533
+ Marker?: string | undefined;
1530
1534
  }
1531
1535
  export interface DescribeDataProvidersMessage {
1532
- Filters?: Filter[];
1533
- MaxRecords?: number;
1534
- Marker?: string;
1536
+ Filters?: Filter[] | undefined;
1537
+ MaxRecords?: number | undefined;
1538
+ Marker?: string | undefined;
1535
1539
  }
1536
1540
  export interface DescribeDataProvidersResponse {
1537
- Marker?: string;
1538
- DataProviders?: DataProvider[];
1541
+ Marker?: string | undefined;
1542
+ DataProviders?: DataProvider[] | undefined;
1539
1543
  }
1540
1544
  export interface DescribeEndpointsMessage {
1541
- Filters?: Filter[];
1542
- MaxRecords?: number;
1543
- Marker?: string;
1545
+ Filters?: Filter[] | undefined;
1546
+ MaxRecords?: number | undefined;
1547
+ Marker?: string | undefined;
1544
1548
  }
1545
1549
  export interface DescribeEndpointsResponse {
1546
- Marker?: string;
1547
- Endpoints?: Endpoint[];
1550
+ Marker?: string | undefined;
1551
+ Endpoints?: Endpoint[] | undefined;
1548
1552
  }
1549
1553
  export interface DescribeEndpointSettingsMessage {
1550
1554
  EngineName: string | undefined;
1551
- MaxRecords?: number;
1552
- Marker?: string;
1555
+ MaxRecords?: number | undefined;
1556
+ Marker?: string | undefined;
1553
1557
  }
1554
1558
  export declare const EndpointSettingTypeValue: {
1555
1559
  readonly BOOLEAN: "boolean";
@@ -1560,39 +1564,39 @@ export declare const EndpointSettingTypeValue: {
1560
1564
  export type EndpointSettingTypeValue =
1561
1565
  (typeof EndpointSettingTypeValue)[keyof typeof EndpointSettingTypeValue];
1562
1566
  export interface EndpointSetting {
1563
- Name?: string;
1564
- Type?: EndpointSettingTypeValue;
1565
- EnumValues?: string[];
1566
- Sensitive?: boolean;
1567
- Units?: string;
1568
- Applicability?: string;
1569
- IntValueMin?: number;
1570
- IntValueMax?: number;
1571
- DefaultValue?: string;
1567
+ Name?: string | undefined;
1568
+ Type?: EndpointSettingTypeValue | undefined;
1569
+ EnumValues?: string[] | undefined;
1570
+ Sensitive?: boolean | undefined;
1571
+ Units?: string | undefined;
1572
+ Applicability?: string | undefined;
1573
+ IntValueMin?: number | undefined;
1574
+ IntValueMax?: number | undefined;
1575
+ DefaultValue?: string | undefined;
1572
1576
  }
1573
1577
  export interface DescribeEndpointSettingsResponse {
1574
- Marker?: string;
1575
- EndpointSettings?: EndpointSetting[];
1578
+ Marker?: string | undefined;
1579
+ EndpointSettings?: EndpointSetting[] | undefined;
1576
1580
  }
1577
1581
  export interface DescribeEndpointTypesMessage {
1578
- Filters?: Filter[];
1579
- MaxRecords?: number;
1580
- Marker?: string;
1582
+ Filters?: Filter[] | undefined;
1583
+ MaxRecords?: number | undefined;
1584
+ Marker?: string | undefined;
1581
1585
  }
1582
1586
  export interface SupportedEndpointType {
1583
- EngineName?: string;
1584
- SupportsCDC?: boolean;
1585
- EndpointType?: ReplicationEndpointTypeValue;
1586
- ReplicationInstanceEngineMinimumVersion?: string;
1587
- EngineDisplayName?: string;
1587
+ EngineName?: string | undefined;
1588
+ SupportsCDC?: boolean | undefined;
1589
+ EndpointType?: ReplicationEndpointTypeValue | undefined;
1590
+ ReplicationInstanceEngineMinimumVersion?: string | undefined;
1591
+ EngineDisplayName?: string | undefined;
1588
1592
  }
1589
1593
  export interface DescribeEndpointTypesResponse {
1590
- Marker?: string;
1591
- SupportedEndpointTypes?: SupportedEndpointType[];
1594
+ Marker?: string | undefined;
1595
+ SupportedEndpointTypes?: SupportedEndpointType[] | undefined;
1592
1596
  }
1593
1597
  export interface DescribeEngineVersionsMessage {
1594
- MaxRecords?: number;
1595
- Marker?: string;
1598
+ MaxRecords?: number | undefined;
1599
+ Marker?: string | undefined;
1596
1600
  }
1597
1601
  export declare const ReleaseStatusValues: {
1598
1602
  readonly BETA: "beta";
@@ -1601,74 +1605,74 @@ export declare const ReleaseStatusValues: {
1601
1605
  export type ReleaseStatusValues =
1602
1606
  (typeof ReleaseStatusValues)[keyof typeof ReleaseStatusValues];
1603
1607
  export interface EngineVersion {
1604
- Version?: string;
1605
- Lifecycle?: string;
1606
- ReleaseStatus?: ReleaseStatusValues;
1607
- LaunchDate?: Date;
1608
- AutoUpgradeDate?: Date;
1609
- DeprecationDate?: Date;
1610
- ForceUpgradeDate?: Date;
1611
- AvailableUpgrades?: string[];
1608
+ Version?: string | undefined;
1609
+ Lifecycle?: string | undefined;
1610
+ ReleaseStatus?: ReleaseStatusValues | undefined;
1611
+ LaunchDate?: Date | undefined;
1612
+ AutoUpgradeDate?: Date | undefined;
1613
+ DeprecationDate?: Date | undefined;
1614
+ ForceUpgradeDate?: Date | undefined;
1615
+ AvailableUpgrades?: string[] | undefined;
1612
1616
  }
1613
1617
  export interface DescribeEngineVersionsResponse {
1614
- EngineVersions?: EngineVersion[];
1615
- Marker?: string;
1618
+ EngineVersions?: EngineVersion[] | undefined;
1619
+ Marker?: string | undefined;
1616
1620
  }
1617
1621
  export interface DescribeEventCategoriesMessage {
1618
- SourceType?: string;
1619
- Filters?: Filter[];
1622
+ SourceType?: string | undefined;
1623
+ Filters?: Filter[] | undefined;
1620
1624
  }
1621
1625
  export interface EventCategoryGroup {
1622
- SourceType?: string;
1623
- EventCategories?: string[];
1626
+ SourceType?: string | undefined;
1627
+ EventCategories?: string[] | undefined;
1624
1628
  }
1625
1629
  export interface DescribeEventCategoriesResponse {
1626
- EventCategoryGroupList?: EventCategoryGroup[];
1630
+ EventCategoryGroupList?: EventCategoryGroup[] | undefined;
1627
1631
  }
1628
1632
  export declare const SourceType: {
1629
1633
  readonly replication_instance: "replication-instance";
1630
1634
  };
1631
1635
  export type SourceType = (typeof SourceType)[keyof typeof SourceType];
1632
1636
  export interface DescribeEventsMessage {
1633
- SourceIdentifier?: string;
1634
- SourceType?: SourceType;
1635
- StartTime?: Date;
1636
- EndTime?: Date;
1637
- Duration?: number;
1638
- EventCategories?: string[];
1639
- Filters?: Filter[];
1640
- MaxRecords?: number;
1641
- Marker?: string;
1637
+ SourceIdentifier?: string | undefined;
1638
+ SourceType?: SourceType | undefined;
1639
+ StartTime?: Date | undefined;
1640
+ EndTime?: Date | undefined;
1641
+ Duration?: number | undefined;
1642
+ EventCategories?: string[] | undefined;
1643
+ Filters?: Filter[] | undefined;
1644
+ MaxRecords?: number | undefined;
1645
+ Marker?: string | undefined;
1642
1646
  }
1643
1647
  export interface Event {
1644
- SourceIdentifier?: string;
1645
- SourceType?: SourceType;
1646
- Message?: string;
1647
- EventCategories?: string[];
1648
- Date?: Date;
1648
+ SourceIdentifier?: string | undefined;
1649
+ SourceType?: SourceType | undefined;
1650
+ Message?: string | undefined;
1651
+ EventCategories?: string[] | undefined;
1652
+ Date?: Date | undefined;
1649
1653
  }
1650
1654
  export interface DescribeEventsResponse {
1651
- Marker?: string;
1652
- Events?: Event[];
1655
+ Marker?: string | undefined;
1656
+ Events?: Event[] | undefined;
1653
1657
  }
1654
1658
  export interface DescribeEventSubscriptionsMessage {
1655
- SubscriptionName?: string;
1656
- Filters?: Filter[];
1657
- MaxRecords?: number;
1658
- Marker?: string;
1659
+ SubscriptionName?: string | undefined;
1660
+ Filters?: Filter[] | undefined;
1661
+ MaxRecords?: number | undefined;
1662
+ Marker?: string | undefined;
1659
1663
  }
1660
1664
  export interface DescribeEventSubscriptionsResponse {
1661
- Marker?: string;
1662
- EventSubscriptionsList?: EventSubscription[];
1665
+ Marker?: string | undefined;
1666
+ EventSubscriptionsList?: EventSubscription[] | undefined;
1663
1667
  }
1664
1668
  export interface DescribeExtensionPackAssociationsMessage {
1665
1669
  MigrationProjectIdentifier: string | undefined;
1666
- Filters?: Filter[];
1667
- Marker?: string;
1668
- MaxRecords?: number;
1670
+ Filters?: Filter[] | undefined;
1671
+ Marker?: string | undefined;
1672
+ MaxRecords?: number | undefined;
1669
1673
  }
1670
1674
  export interface DefaultErrorDetails {
1671
- Message?: string;
1675
+ Message?: string | undefined;
1672
1676
  }
1673
1677
  export type ErrorDetails =
1674
1678
  | ErrorDetails.DefaultErrorDetailsMember
@@ -1689,24 +1693,24 @@ export declare namespace ErrorDetails {
1689
1693
  const visit: <T>(value: ErrorDetails, visitor: Visitor<T>) => T;
1690
1694
  }
1691
1695
  export interface ExportSqlDetails {
1692
- S3ObjectKey?: string;
1693
- ObjectURL?: string;
1696
+ S3ObjectKey?: string | undefined;
1697
+ ObjectURL?: string | undefined;
1694
1698
  }
1695
1699
  export interface SchemaConversionRequest {
1696
- Status?: string;
1697
- RequestIdentifier?: string;
1698
- MigrationProjectArn?: string;
1699
- Error?: ErrorDetails;
1700
- ExportSqlDetails?: ExportSqlDetails;
1700
+ Status?: string | undefined;
1701
+ RequestIdentifier?: string | undefined;
1702
+ MigrationProjectArn?: string | undefined;
1703
+ Error?: ErrorDetails | undefined;
1704
+ ExportSqlDetails?: ExportSqlDetails | undefined;
1701
1705
  }
1702
1706
  export interface DescribeExtensionPackAssociationsResponse {
1703
- Marker?: string;
1704
- Requests?: SchemaConversionRequest[];
1707
+ Marker?: string | undefined;
1708
+ Requests?: SchemaConversionRequest[] | undefined;
1705
1709
  }
1706
1710
  export interface DescribeFleetAdvisorCollectorsRequest {
1707
- Filters?: Filter[];
1708
- MaxRecords?: number;
1709
- NextToken?: string;
1711
+ Filters?: Filter[] | undefined;
1712
+ MaxRecords?: number | undefined;
1713
+ NextToken?: string | undefined;
1710
1714
  }
1711
1715
  export declare const CollectorStatus: {
1712
1716
  readonly ACTIVE: "ACTIVE";
@@ -1715,14 +1719,14 @@ export declare const CollectorStatus: {
1715
1719
  export type CollectorStatus =
1716
1720
  (typeof CollectorStatus)[keyof typeof CollectorStatus];
1717
1721
  export interface CollectorHealthCheck {
1718
- CollectorStatus?: CollectorStatus;
1719
- LocalCollectorS3Access?: boolean;
1720
- WebCollectorS3Access?: boolean;
1721
- WebCollectorGrantedRoleBasedAccess?: boolean;
1722
+ CollectorStatus?: CollectorStatus | undefined;
1723
+ LocalCollectorS3Access?: boolean | undefined;
1724
+ WebCollectorS3Access?: boolean | undefined;
1725
+ WebCollectorGrantedRoleBasedAccess?: boolean | undefined;
1722
1726
  }
1723
1727
  export interface InventoryData {
1724
- NumberOfDatabases?: number;
1725
- NumberOfSchemas?: number;
1728
+ NumberOfDatabases?: number | undefined;
1729
+ NumberOfSchemas?: number | undefined;
1726
1730
  }
1727
1731
  export declare const VersionStatus: {
1728
1732
  readonly OUTDATED: "OUTDATED";
@@ -1731,279 +1735,279 @@ export declare const VersionStatus: {
1731
1735
  };
1732
1736
  export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
1733
1737
  export interface CollectorResponse {
1734
- CollectorReferencedId?: string;
1735
- CollectorName?: string;
1736
- CollectorVersion?: string;
1737
- VersionStatus?: VersionStatus;
1738
- Description?: string;
1739
- S3BucketName?: string;
1740
- ServiceAccessRoleArn?: string;
1741
- CollectorHealthCheck?: CollectorHealthCheck;
1742
- LastDataReceived?: string;
1743
- RegisteredDate?: string;
1744
- CreatedDate?: string;
1745
- ModifiedDate?: string;
1746
- InventoryData?: InventoryData;
1738
+ CollectorReferencedId?: string | undefined;
1739
+ CollectorName?: string | undefined;
1740
+ CollectorVersion?: string | undefined;
1741
+ VersionStatus?: VersionStatus | undefined;
1742
+ Description?: string | undefined;
1743
+ S3BucketName?: string | undefined;
1744
+ ServiceAccessRoleArn?: string | undefined;
1745
+ CollectorHealthCheck?: CollectorHealthCheck | undefined;
1746
+ LastDataReceived?: string | undefined;
1747
+ RegisteredDate?: string | undefined;
1748
+ CreatedDate?: string | undefined;
1749
+ ModifiedDate?: string | undefined;
1750
+ InventoryData?: InventoryData | undefined;
1747
1751
  }
1748
1752
  export interface DescribeFleetAdvisorCollectorsResponse {
1749
- Collectors?: CollectorResponse[];
1750
- NextToken?: string;
1753
+ Collectors?: CollectorResponse[] | undefined;
1754
+ NextToken?: string | undefined;
1751
1755
  }
1752
1756
  export interface DescribeFleetAdvisorDatabasesRequest {
1753
- Filters?: Filter[];
1754
- MaxRecords?: number;
1755
- NextToken?: string;
1757
+ Filters?: Filter[] | undefined;
1758
+ MaxRecords?: number | undefined;
1759
+ NextToken?: string | undefined;
1756
1760
  }
1757
1761
  export interface CollectorShortInfoResponse {
1758
- CollectorReferencedId?: string;
1759
- CollectorName?: string;
1762
+ CollectorReferencedId?: string | undefined;
1763
+ CollectorName?: string | undefined;
1760
1764
  }
1761
1765
  export interface ServerShortInfoResponse {
1762
- ServerId?: string;
1763
- IpAddress?: string;
1764
- ServerName?: string;
1766
+ ServerId?: string | undefined;
1767
+ IpAddress?: string | undefined;
1768
+ ServerName?: string | undefined;
1765
1769
  }
1766
1770
  export interface DatabaseInstanceSoftwareDetailsResponse {
1767
- Engine?: string;
1768
- EngineVersion?: string;
1769
- EngineEdition?: string;
1770
- ServicePack?: string;
1771
- SupportLevel?: string;
1772
- OsArchitecture?: number;
1773
- Tooltip?: string;
1771
+ Engine?: string | undefined;
1772
+ EngineVersion?: string | undefined;
1773
+ EngineEdition?: string | undefined;
1774
+ ServicePack?: string | undefined;
1775
+ SupportLevel?: string | undefined;
1776
+ OsArchitecture?: number | undefined;
1777
+ Tooltip?: string | undefined;
1774
1778
  }
1775
1779
  export interface DatabaseResponse {
1776
- DatabaseId?: string;
1777
- DatabaseName?: string;
1778
- IpAddress?: string;
1779
- NumberOfSchemas?: number;
1780
- Server?: ServerShortInfoResponse;
1781
- SoftwareDetails?: DatabaseInstanceSoftwareDetailsResponse;
1782
- Collectors?: CollectorShortInfoResponse[];
1780
+ DatabaseId?: string | undefined;
1781
+ DatabaseName?: string | undefined;
1782
+ IpAddress?: string | undefined;
1783
+ NumberOfSchemas?: number | undefined;
1784
+ Server?: ServerShortInfoResponse | undefined;
1785
+ SoftwareDetails?: DatabaseInstanceSoftwareDetailsResponse | undefined;
1786
+ Collectors?: CollectorShortInfoResponse[] | undefined;
1783
1787
  }
1784
1788
  export interface DescribeFleetAdvisorDatabasesResponse {
1785
- Databases?: DatabaseResponse[];
1786
- NextToken?: string;
1789
+ Databases?: DatabaseResponse[] | undefined;
1790
+ NextToken?: string | undefined;
1787
1791
  }
1788
1792
  export interface DescribeFleetAdvisorLsaAnalysisRequest {
1789
- MaxRecords?: number;
1790
- NextToken?: string;
1793
+ MaxRecords?: number | undefined;
1794
+ NextToken?: string | undefined;
1791
1795
  }
1792
1796
  export interface FleetAdvisorLsaAnalysisResponse {
1793
- LsaAnalysisId?: string;
1794
- Status?: string;
1797
+ LsaAnalysisId?: string | undefined;
1798
+ Status?: string | undefined;
1795
1799
  }
1796
1800
  export interface DescribeFleetAdvisorLsaAnalysisResponse {
1797
- Analysis?: FleetAdvisorLsaAnalysisResponse[];
1798
- NextToken?: string;
1801
+ Analysis?: FleetAdvisorLsaAnalysisResponse[] | undefined;
1802
+ NextToken?: string | undefined;
1799
1803
  }
1800
1804
  export interface DescribeFleetAdvisorSchemaObjectSummaryRequest {
1801
- Filters?: Filter[];
1802
- MaxRecords?: number;
1803
- NextToken?: string;
1805
+ Filters?: Filter[] | undefined;
1806
+ MaxRecords?: number | undefined;
1807
+ NextToken?: string | undefined;
1804
1808
  }
1805
1809
  export interface FleetAdvisorSchemaObjectResponse {
1806
- SchemaId?: string;
1807
- ObjectType?: string;
1808
- NumberOfObjects?: number;
1809
- CodeLineCount?: number;
1810
- CodeSize?: number;
1810
+ SchemaId?: string | undefined;
1811
+ ObjectType?: string | undefined;
1812
+ NumberOfObjects?: number | undefined;
1813
+ CodeLineCount?: number | undefined;
1814
+ CodeSize?: number | undefined;
1811
1815
  }
1812
1816
  export interface DescribeFleetAdvisorSchemaObjectSummaryResponse {
1813
- FleetAdvisorSchemaObjects?: FleetAdvisorSchemaObjectResponse[];
1814
- NextToken?: string;
1817
+ FleetAdvisorSchemaObjects?: FleetAdvisorSchemaObjectResponse[] | undefined;
1818
+ NextToken?: string | undefined;
1815
1819
  }
1816
1820
  export interface DescribeFleetAdvisorSchemasRequest {
1817
- Filters?: Filter[];
1818
- MaxRecords?: number;
1819
- NextToken?: string;
1821
+ Filters?: Filter[] | undefined;
1822
+ MaxRecords?: number | undefined;
1823
+ NextToken?: string | undefined;
1820
1824
  }
1821
1825
  export interface DatabaseShortInfoResponse {
1822
- DatabaseId?: string;
1823
- DatabaseName?: string;
1824
- DatabaseIpAddress?: string;
1825
- DatabaseEngine?: string;
1826
+ DatabaseId?: string | undefined;
1827
+ DatabaseName?: string | undefined;
1828
+ DatabaseIpAddress?: string | undefined;
1829
+ DatabaseEngine?: string | undefined;
1826
1830
  }
1827
1831
  export interface SchemaShortInfoResponse {
1828
- SchemaId?: string;
1829
- SchemaName?: string;
1830
- DatabaseId?: string;
1831
- DatabaseName?: string;
1832
- DatabaseIpAddress?: string;
1832
+ SchemaId?: string | undefined;
1833
+ SchemaName?: string | undefined;
1834
+ DatabaseId?: string | undefined;
1835
+ DatabaseName?: string | undefined;
1836
+ DatabaseIpAddress?: string | undefined;
1833
1837
  }
1834
1838
  export interface SchemaResponse {
1835
- CodeLineCount?: number;
1836
- CodeSize?: number;
1837
- Complexity?: string;
1838
- Server?: ServerShortInfoResponse;
1839
- DatabaseInstance?: DatabaseShortInfoResponse;
1840
- SchemaId?: string;
1841
- SchemaName?: string;
1842
- OriginalSchema?: SchemaShortInfoResponse;
1843
- Similarity?: number;
1839
+ CodeLineCount?: number | undefined;
1840
+ CodeSize?: number | undefined;
1841
+ Complexity?: string | undefined;
1842
+ Server?: ServerShortInfoResponse | undefined;
1843
+ DatabaseInstance?: DatabaseShortInfoResponse | undefined;
1844
+ SchemaId?: string | undefined;
1845
+ SchemaName?: string | undefined;
1846
+ OriginalSchema?: SchemaShortInfoResponse | undefined;
1847
+ Similarity?: number | undefined;
1844
1848
  }
1845
1849
  export interface DescribeFleetAdvisorSchemasResponse {
1846
- FleetAdvisorSchemas?: SchemaResponse[];
1847
- NextToken?: string;
1850
+ FleetAdvisorSchemas?: SchemaResponse[] | undefined;
1851
+ NextToken?: string | undefined;
1848
1852
  }
1849
1853
  export interface DescribeInstanceProfilesMessage {
1850
- Filters?: Filter[];
1851
- MaxRecords?: number;
1852
- Marker?: string;
1854
+ Filters?: Filter[] | undefined;
1855
+ MaxRecords?: number | undefined;
1856
+ Marker?: string | undefined;
1853
1857
  }
1854
1858
  export interface DescribeInstanceProfilesResponse {
1855
- Marker?: string;
1856
- InstanceProfiles?: InstanceProfile[];
1859
+ Marker?: string | undefined;
1860
+ InstanceProfiles?: InstanceProfile[] | undefined;
1857
1861
  }
1858
1862
  export interface DescribeMetadataModelAssessmentsMessage {
1859
1863
  MigrationProjectIdentifier: string | undefined;
1860
- Filters?: Filter[];
1861
- Marker?: string;
1862
- MaxRecords?: number;
1864
+ Filters?: Filter[] | undefined;
1865
+ Marker?: string | undefined;
1866
+ MaxRecords?: number | undefined;
1863
1867
  }
1864
1868
  export interface DescribeMetadataModelAssessmentsResponse {
1865
- Marker?: string;
1866
- Requests?: SchemaConversionRequest[];
1869
+ Marker?: string | undefined;
1870
+ Requests?: SchemaConversionRequest[] | undefined;
1867
1871
  }
1868
1872
  export interface DescribeMetadataModelConversionsMessage {
1869
1873
  MigrationProjectIdentifier: string | undefined;
1870
- Filters?: Filter[];
1871
- Marker?: string;
1872
- MaxRecords?: number;
1874
+ Filters?: Filter[] | undefined;
1875
+ Marker?: string | undefined;
1876
+ MaxRecords?: number | undefined;
1873
1877
  }
1874
1878
  export interface DescribeMetadataModelConversionsResponse {
1875
- Marker?: string;
1876
- Requests?: SchemaConversionRequest[];
1879
+ Marker?: string | undefined;
1880
+ Requests?: SchemaConversionRequest[] | undefined;
1877
1881
  }
1878
1882
  export interface DescribeMetadataModelExportsAsScriptMessage {
1879
1883
  MigrationProjectIdentifier: string | undefined;
1880
- Filters?: Filter[];
1881
- Marker?: string;
1882
- MaxRecords?: number;
1884
+ Filters?: Filter[] | undefined;
1885
+ Marker?: string | undefined;
1886
+ MaxRecords?: number | undefined;
1883
1887
  }
1884
1888
  export interface DescribeMetadataModelExportsAsScriptResponse {
1885
- Marker?: string;
1886
- Requests?: SchemaConversionRequest[];
1889
+ Marker?: string | undefined;
1890
+ Requests?: SchemaConversionRequest[] | undefined;
1887
1891
  }
1888
1892
  export interface DescribeMetadataModelExportsToTargetMessage {
1889
1893
  MigrationProjectIdentifier: string | undefined;
1890
- Filters?: Filter[];
1891
- Marker?: string;
1892
- MaxRecords?: number;
1894
+ Filters?: Filter[] | undefined;
1895
+ Marker?: string | undefined;
1896
+ MaxRecords?: number | undefined;
1893
1897
  }
1894
1898
  export interface DescribeMetadataModelExportsToTargetResponse {
1895
- Marker?: string;
1896
- Requests?: SchemaConversionRequest[];
1899
+ Marker?: string | undefined;
1900
+ Requests?: SchemaConversionRequest[] | undefined;
1897
1901
  }
1898
1902
  export interface DescribeMetadataModelImportsMessage {
1899
1903
  MigrationProjectIdentifier: string | undefined;
1900
- Filters?: Filter[];
1901
- Marker?: string;
1902
- MaxRecords?: number;
1904
+ Filters?: Filter[] | undefined;
1905
+ Marker?: string | undefined;
1906
+ MaxRecords?: number | undefined;
1903
1907
  }
1904
1908
  export interface DescribeMetadataModelImportsResponse {
1905
- Marker?: string;
1906
- Requests?: SchemaConversionRequest[];
1909
+ Marker?: string | undefined;
1910
+ Requests?: SchemaConversionRequest[] | undefined;
1907
1911
  }
1908
1912
  export interface DescribeMigrationProjectsMessage {
1909
- Filters?: Filter[];
1910
- MaxRecords?: number;
1911
- Marker?: string;
1913
+ Filters?: Filter[] | undefined;
1914
+ MaxRecords?: number | undefined;
1915
+ Marker?: string | undefined;
1912
1916
  }
1913
1917
  export interface DescribeMigrationProjectsResponse {
1914
- Marker?: string;
1915
- MigrationProjects?: MigrationProject[];
1918
+ Marker?: string | undefined;
1919
+ MigrationProjects?: MigrationProject[] | undefined;
1916
1920
  }
1917
1921
  export interface DescribeOrderableReplicationInstancesMessage {
1918
- MaxRecords?: number;
1919
- Marker?: string;
1922
+ MaxRecords?: number | undefined;
1923
+ Marker?: string | undefined;
1920
1924
  }
1921
1925
  export interface OrderableReplicationInstance {
1922
- EngineVersion?: string;
1923
- ReplicationInstanceClass?: string;
1924
- StorageType?: string;
1925
- MinAllocatedStorage?: number;
1926
- MaxAllocatedStorage?: number;
1927
- DefaultAllocatedStorage?: number;
1928
- IncludedAllocatedStorage?: number;
1929
- AvailabilityZones?: string[];
1930
- ReleaseStatus?: ReleaseStatusValues;
1926
+ EngineVersion?: string | undefined;
1927
+ ReplicationInstanceClass?: string | undefined;
1928
+ StorageType?: string | undefined;
1929
+ MinAllocatedStorage?: number | undefined;
1930
+ MaxAllocatedStorage?: number | undefined;
1931
+ DefaultAllocatedStorage?: number | undefined;
1932
+ IncludedAllocatedStorage?: number | undefined;
1933
+ AvailabilityZones?: string[] | undefined;
1934
+ ReleaseStatus?: ReleaseStatusValues | undefined;
1931
1935
  }
1932
1936
  export interface DescribeOrderableReplicationInstancesResponse {
1933
- OrderableReplicationInstances?: OrderableReplicationInstance[];
1934
- Marker?: string;
1937
+ OrderableReplicationInstances?: OrderableReplicationInstance[] | undefined;
1938
+ Marker?: string | undefined;
1935
1939
  }
1936
1940
  export interface DescribePendingMaintenanceActionsMessage {
1937
- ReplicationInstanceArn?: string;
1938
- Filters?: Filter[];
1939
- Marker?: string;
1940
- MaxRecords?: number;
1941
+ ReplicationInstanceArn?: string | undefined;
1942
+ Filters?: Filter[] | undefined;
1943
+ Marker?: string | undefined;
1944
+ MaxRecords?: number | undefined;
1941
1945
  }
1942
1946
  export interface DescribePendingMaintenanceActionsResponse {
1943
- PendingMaintenanceActions?: ResourcePendingMaintenanceActions[];
1944
- Marker?: string;
1947
+ PendingMaintenanceActions?: ResourcePendingMaintenanceActions[] | undefined;
1948
+ Marker?: string | undefined;
1945
1949
  }
1946
1950
  export interface DescribeRecommendationLimitationsRequest {
1947
- Filters?: Filter[];
1948
- MaxRecords?: number;
1949
- NextToken?: string;
1951
+ Filters?: Filter[] | undefined;
1952
+ MaxRecords?: number | undefined;
1953
+ NextToken?: string | undefined;
1950
1954
  }
1951
1955
  export interface Limitation {
1952
- DatabaseId?: string;
1953
- EngineName?: string;
1954
- Name?: string;
1955
- Description?: string;
1956
- Impact?: string;
1957
- Type?: string;
1956
+ DatabaseId?: string | undefined;
1957
+ EngineName?: string | undefined;
1958
+ Name?: string | undefined;
1959
+ Description?: string | undefined;
1960
+ Impact?: string | undefined;
1961
+ Type?: string | undefined;
1958
1962
  }
1959
1963
  export interface DescribeRecommendationLimitationsResponse {
1960
- NextToken?: string;
1961
- Limitations?: Limitation[];
1964
+ NextToken?: string | undefined;
1965
+ Limitations?: Limitation[] | undefined;
1962
1966
  }
1963
1967
  export interface DescribeRecommendationsRequest {
1964
- Filters?: Filter[];
1965
- MaxRecords?: number;
1966
- NextToken?: string;
1968
+ Filters?: Filter[] | undefined;
1969
+ MaxRecords?: number | undefined;
1970
+ NextToken?: string | undefined;
1967
1971
  }
1968
1972
  export interface RdsRequirements {
1969
- EngineEdition?: string;
1970
- InstanceVcpu?: number;
1971
- InstanceMemory?: number;
1972
- StorageSize?: number;
1973
- StorageIops?: number;
1974
- DeploymentOption?: string;
1975
- EngineVersion?: string;
1973
+ EngineEdition?: string | undefined;
1974
+ InstanceVcpu?: number | undefined;
1975
+ InstanceMemory?: number | undefined;
1976
+ StorageSize?: number | undefined;
1977
+ StorageIops?: number | undefined;
1978
+ DeploymentOption?: string | undefined;
1979
+ EngineVersion?: string | undefined;
1976
1980
  }
1977
1981
  export interface RdsConfiguration {
1978
- EngineEdition?: string;
1979
- InstanceType?: string;
1980
- InstanceVcpu?: number;
1981
- InstanceMemory?: number;
1982
- StorageType?: string;
1983
- StorageSize?: number;
1984
- StorageIops?: number;
1985
- DeploymentOption?: string;
1986
- EngineVersion?: string;
1982
+ EngineEdition?: string | undefined;
1983
+ InstanceType?: string | undefined;
1984
+ InstanceVcpu?: number | undefined;
1985
+ InstanceMemory?: number | undefined;
1986
+ StorageType?: string | undefined;
1987
+ StorageSize?: number | undefined;
1988
+ StorageIops?: number | undefined;
1989
+ DeploymentOption?: string | undefined;
1990
+ EngineVersion?: string | undefined;
1987
1991
  }
1988
1992
  export interface RdsRecommendation {
1989
- RequirementsToTarget?: RdsRequirements;
1990
- TargetConfiguration?: RdsConfiguration;
1993
+ RequirementsToTarget?: RdsRequirements | undefined;
1994
+ TargetConfiguration?: RdsConfiguration | undefined;
1991
1995
  }
1992
1996
  export interface RecommendationData {
1993
- RdsEngine?: RdsRecommendation;
1997
+ RdsEngine?: RdsRecommendation | undefined;
1994
1998
  }
1995
1999
  export interface Recommendation {
1996
- DatabaseId?: string;
1997
- EngineName?: string;
1998
- CreatedDate?: string;
1999
- Status?: string;
2000
- Preferred?: boolean;
2001
- Settings?: RecommendationSettings;
2002
- Data?: RecommendationData;
2000
+ DatabaseId?: string | undefined;
2001
+ EngineName?: string | undefined;
2002
+ CreatedDate?: string | undefined;
2003
+ Status?: string | undefined;
2004
+ Preferred?: boolean | undefined;
2005
+ Settings?: RecommendationSettings | undefined;
2006
+ Data?: RecommendationData | undefined;
2003
2007
  }
2004
2008
  export interface DescribeRecommendationsResponse {
2005
- NextToken?: string;
2006
- Recommendations?: Recommendation[];
2009
+ NextToken?: string | undefined;
2010
+ Recommendations?: Recommendation[] | undefined;
2007
2011
  }
2008
2012
  export interface DescribeRefreshSchemasStatusMessage {
2009
2013
  EndpointArn: string | undefined;
@@ -2016,212 +2020,216 @@ export declare const RefreshSchemasStatusTypeValue: {
2016
2020
  export type RefreshSchemasStatusTypeValue =
2017
2021
  (typeof RefreshSchemasStatusTypeValue)[keyof typeof RefreshSchemasStatusTypeValue];
2018
2022
  export interface RefreshSchemasStatus {
2019
- EndpointArn?: string;
2020
- ReplicationInstanceArn?: string;
2021
- Status?: RefreshSchemasStatusTypeValue;
2022
- LastRefreshDate?: Date;
2023
- LastFailureMessage?: string;
2023
+ EndpointArn?: string | undefined;
2024
+ ReplicationInstanceArn?: string | undefined;
2025
+ Status?: RefreshSchemasStatusTypeValue | undefined;
2026
+ LastRefreshDate?: Date | undefined;
2027
+ LastFailureMessage?: string | undefined;
2024
2028
  }
2025
2029
  export interface DescribeRefreshSchemasStatusResponse {
2026
- RefreshSchemasStatus?: RefreshSchemasStatus;
2030
+ RefreshSchemasStatus?: RefreshSchemasStatus | undefined;
2027
2031
  }
2028
2032
  export interface DescribeReplicationConfigsMessage {
2029
- Filters?: Filter[];
2030
- MaxRecords?: number;
2031
- Marker?: string;
2033
+ Filters?: Filter[] | undefined;
2034
+ MaxRecords?: number | undefined;
2035
+ Marker?: string | undefined;
2032
2036
  }
2033
2037
  export interface DescribeReplicationConfigsResponse {
2034
- Marker?: string;
2035
- ReplicationConfigs?: ReplicationConfig[];
2038
+ Marker?: string | undefined;
2039
+ ReplicationConfigs?: ReplicationConfig[] | undefined;
2036
2040
  }
2037
2041
  export interface DescribeReplicationInstancesMessage {
2038
- Filters?: Filter[];
2039
- MaxRecords?: number;
2040
- Marker?: string;
2042
+ Filters?: Filter[] | undefined;
2043
+ MaxRecords?: number | undefined;
2044
+ Marker?: string | undefined;
2041
2045
  }
2042
2046
  export interface DescribeReplicationInstancesResponse {
2043
- Marker?: string;
2044
- ReplicationInstances?: ReplicationInstance[];
2047
+ Marker?: string | undefined;
2048
+ ReplicationInstances?: ReplicationInstance[] | undefined;
2045
2049
  }
2046
2050
  export interface DescribeReplicationInstanceTaskLogsMessage {
2047
2051
  ReplicationInstanceArn: string | undefined;
2048
- MaxRecords?: number;
2049
- Marker?: string;
2052
+ MaxRecords?: number | undefined;
2053
+ Marker?: string | undefined;
2050
2054
  }
2051
2055
  export interface ReplicationInstanceTaskLog {
2052
- ReplicationTaskName?: string;
2053
- ReplicationTaskArn?: string;
2054
- ReplicationInstanceTaskLogSize?: number;
2056
+ ReplicationTaskName?: string | undefined;
2057
+ ReplicationTaskArn?: string | undefined;
2058
+ ReplicationInstanceTaskLogSize?: number | undefined;
2055
2059
  }
2056
2060
  export interface DescribeReplicationInstanceTaskLogsResponse {
2057
- ReplicationInstanceArn?: string;
2058
- ReplicationInstanceTaskLogs?: ReplicationInstanceTaskLog[];
2059
- Marker?: string;
2061
+ ReplicationInstanceArn?: string | undefined;
2062
+ ReplicationInstanceTaskLogs?: ReplicationInstanceTaskLog[] | undefined;
2063
+ Marker?: string | undefined;
2060
2064
  }
2061
2065
  export interface DescribeReplicationsMessage {
2062
- Filters?: Filter[];
2063
- MaxRecords?: number;
2064
- Marker?: string;
2066
+ Filters?: Filter[] | undefined;
2067
+ MaxRecords?: number | undefined;
2068
+ Marker?: string | undefined;
2065
2069
  }
2066
2070
  export interface ProvisionData {
2067
- ProvisionState?: string;
2068
- ProvisionedCapacityUnits?: number;
2069
- DateProvisioned?: Date;
2070
- IsNewProvisioningAvailable?: boolean;
2071
- DateNewProvisioningDataAvailable?: Date;
2072
- ReasonForNewProvisioningData?: string;
2071
+ ProvisionState?: string | undefined;
2072
+ ProvisionedCapacityUnits?: number | undefined;
2073
+ DateProvisioned?: Date | undefined;
2074
+ IsNewProvisioningAvailable?: boolean | undefined;
2075
+ DateNewProvisioningDataAvailable?: Date | undefined;
2076
+ ReasonForNewProvisioningData?: string | undefined;
2073
2077
  }
2074
2078
  export interface ReplicationStats {
2075
- FullLoadProgressPercent?: number;
2076
- ElapsedTimeMillis?: number;
2077
- TablesLoaded?: number;
2078
- TablesLoading?: number;
2079
- TablesQueued?: number;
2080
- TablesErrored?: number;
2081
- FreshStartDate?: Date;
2082
- StartDate?: Date;
2083
- StopDate?: Date;
2084
- FullLoadStartDate?: Date;
2085
- FullLoadFinishDate?: Date;
2079
+ FullLoadProgressPercent?: number | undefined;
2080
+ ElapsedTimeMillis?: number | undefined;
2081
+ TablesLoaded?: number | undefined;
2082
+ TablesLoading?: number | undefined;
2083
+ TablesQueued?: number | undefined;
2084
+ TablesErrored?: number | undefined;
2085
+ FreshStartDate?: Date | undefined;
2086
+ StartDate?: Date | undefined;
2087
+ StopDate?: Date | undefined;
2088
+ FullLoadStartDate?: Date | undefined;
2089
+ FullLoadFinishDate?: Date | undefined;
2086
2090
  }
2087
2091
  export interface Replication {
2088
- ReplicationConfigIdentifier?: string;
2089
- ReplicationConfigArn?: string;
2090
- SourceEndpointArn?: string;
2091
- TargetEndpointArn?: string;
2092
- ReplicationType?: MigrationTypeValue;
2093
- Status?: string;
2094
- ProvisionData?: ProvisionData;
2095
- StopReason?: string;
2096
- FailureMessages?: string[];
2097
- ReplicationStats?: ReplicationStats;
2098
- StartReplicationType?: string;
2099
- CdcStartTime?: Date;
2100
- CdcStartPosition?: string;
2101
- CdcStopPosition?: string;
2102
- RecoveryCheckpoint?: string;
2103
- ReplicationCreateTime?: Date;
2104
- ReplicationUpdateTime?: Date;
2105
- ReplicationLastStopTime?: Date;
2106
- ReplicationDeprovisionTime?: Date;
2092
+ ReplicationConfigIdentifier?: string | undefined;
2093
+ ReplicationConfigArn?: string | undefined;
2094
+ SourceEndpointArn?: string | undefined;
2095
+ TargetEndpointArn?: string | undefined;
2096
+ ReplicationType?: MigrationTypeValue | undefined;
2097
+ Status?: string | undefined;
2098
+ ProvisionData?: ProvisionData | undefined;
2099
+ StopReason?: string | undefined;
2100
+ FailureMessages?: string[] | undefined;
2101
+ ReplicationStats?: ReplicationStats | undefined;
2102
+ StartReplicationType?: string | undefined;
2103
+ CdcStartTime?: Date | undefined;
2104
+ CdcStartPosition?: string | undefined;
2105
+ CdcStopPosition?: string | undefined;
2106
+ RecoveryCheckpoint?: string | undefined;
2107
+ ReplicationCreateTime?: Date | undefined;
2108
+ ReplicationUpdateTime?: Date | undefined;
2109
+ ReplicationLastStopTime?: Date | undefined;
2110
+ ReplicationDeprovisionTime?: Date | undefined;
2107
2111
  }
2108
2112
  export interface DescribeReplicationsResponse {
2109
- Marker?: string;
2110
- Replications?: Replication[];
2113
+ Marker?: string | undefined;
2114
+ Replications?: Replication[] | undefined;
2111
2115
  }
2112
2116
  export interface DescribeReplicationSubnetGroupsMessage {
2113
- Filters?: Filter[];
2114
- MaxRecords?: number;
2115
- Marker?: string;
2117
+ Filters?: Filter[] | undefined;
2118
+ MaxRecords?: number | undefined;
2119
+ Marker?: string | undefined;
2116
2120
  }
2117
2121
  export interface DescribeReplicationSubnetGroupsResponse {
2118
- Marker?: string;
2119
- ReplicationSubnetGroups?: ReplicationSubnetGroup[];
2122
+ Marker?: string | undefined;
2123
+ ReplicationSubnetGroups?: ReplicationSubnetGroup[] | undefined;
2120
2124
  }
2121
2125
  export interface DescribeReplicationTableStatisticsMessage {
2122
2126
  ReplicationConfigArn: string | undefined;
2123
- MaxRecords?: number;
2124
- Marker?: string;
2125
- Filters?: Filter[];
2127
+ MaxRecords?: number | undefined;
2128
+ Marker?: string | undefined;
2129
+ Filters?: Filter[] | undefined;
2126
2130
  }
2127
2131
  export interface TableStatistics {
2128
- SchemaName?: string;
2129
- TableName?: string;
2130
- Inserts?: number;
2131
- Deletes?: number;
2132
- Updates?: number;
2133
- Ddls?: number;
2134
- AppliedInserts?: number;
2135
- AppliedDeletes?: number;
2136
- AppliedUpdates?: number;
2137
- AppliedDdls?: number;
2138
- FullLoadRows?: number;
2139
- FullLoadCondtnlChkFailedRows?: number;
2140
- FullLoadErrorRows?: number;
2141
- FullLoadStartTime?: Date;
2142
- FullLoadEndTime?: Date;
2143
- FullLoadReloaded?: boolean;
2144
- LastUpdateTime?: Date;
2145
- TableState?: string;
2146
- ValidationPendingRecords?: number;
2147
- ValidationFailedRecords?: number;
2148
- ValidationSuspendedRecords?: number;
2149
- ValidationState?: string;
2150
- ValidationStateDetails?: string;
2132
+ SchemaName?: string | undefined;
2133
+ TableName?: string | undefined;
2134
+ Inserts?: number | undefined;
2135
+ Deletes?: number | undefined;
2136
+ Updates?: number | undefined;
2137
+ Ddls?: number | undefined;
2138
+ AppliedInserts?: number | undefined;
2139
+ AppliedDeletes?: number | undefined;
2140
+ AppliedUpdates?: number | undefined;
2141
+ AppliedDdls?: number | undefined;
2142
+ FullLoadRows?: number | undefined;
2143
+ FullLoadCondtnlChkFailedRows?: number | undefined;
2144
+ FullLoadErrorRows?: number | undefined;
2145
+ FullLoadStartTime?: Date | undefined;
2146
+ FullLoadEndTime?: Date | undefined;
2147
+ FullLoadReloaded?: boolean | undefined;
2148
+ LastUpdateTime?: Date | undefined;
2149
+ TableState?: string | undefined;
2150
+ ValidationPendingRecords?: number | undefined;
2151
+ ValidationFailedRecords?: number | undefined;
2152
+ ValidationSuspendedRecords?: number | undefined;
2153
+ ValidationState?: string | undefined;
2154
+ ValidationStateDetails?: string | undefined;
2151
2155
  }
2152
2156
  export interface DescribeReplicationTableStatisticsResponse {
2153
- ReplicationConfigArn?: string;
2154
- Marker?: string;
2155
- ReplicationTableStatistics?: TableStatistics[];
2157
+ ReplicationConfigArn?: string | undefined;
2158
+ Marker?: string | undefined;
2159
+ ReplicationTableStatistics?: TableStatistics[] | undefined;
2156
2160
  }
2157
2161
  export interface DescribeReplicationTaskAssessmentResultsMessage {
2158
- ReplicationTaskArn?: string;
2159
- MaxRecords?: number;
2160
- Marker?: string;
2162
+ ReplicationTaskArn?: string | undefined;
2163
+ MaxRecords?: number | undefined;
2164
+ Marker?: string | undefined;
2161
2165
  }
2162
2166
  export interface ReplicationTaskAssessmentResult {
2163
- ReplicationTaskIdentifier?: string;
2164
- ReplicationTaskArn?: string;
2165
- ReplicationTaskLastAssessmentDate?: Date;
2166
- AssessmentStatus?: string;
2167
- AssessmentResultsFile?: string;
2168
- AssessmentResults?: string;
2169
- S3ObjectUrl?: string;
2167
+ ReplicationTaskIdentifier?: string | undefined;
2168
+ ReplicationTaskArn?: string | undefined;
2169
+ ReplicationTaskLastAssessmentDate?: Date | undefined;
2170
+ AssessmentStatus?: string | undefined;
2171
+ AssessmentResultsFile?: string | undefined;
2172
+ AssessmentResults?: string | undefined;
2173
+ S3ObjectUrl?: string | undefined;
2170
2174
  }
2171
2175
  export interface DescribeReplicationTaskAssessmentResultsResponse {
2172
- Marker?: string;
2173
- BucketName?: string;
2174
- ReplicationTaskAssessmentResults?: ReplicationTaskAssessmentResult[];
2176
+ Marker?: string | undefined;
2177
+ BucketName?: string | undefined;
2178
+ ReplicationTaskAssessmentResults?:
2179
+ | ReplicationTaskAssessmentResult[]
2180
+ | undefined;
2175
2181
  }
2176
2182
  export interface DescribeReplicationTaskAssessmentRunsMessage {
2177
- Filters?: Filter[];
2178
- MaxRecords?: number;
2179
- Marker?: string;
2183
+ Filters?: Filter[] | undefined;
2184
+ MaxRecords?: number | undefined;
2185
+ Marker?: string | undefined;
2180
2186
  }
2181
2187
  export interface DescribeReplicationTaskAssessmentRunsResponse {
2182
- Marker?: string;
2183
- ReplicationTaskAssessmentRuns?: ReplicationTaskAssessmentRun[];
2188
+ Marker?: string | undefined;
2189
+ ReplicationTaskAssessmentRuns?: ReplicationTaskAssessmentRun[] | undefined;
2184
2190
  }
2185
2191
  export interface DescribeReplicationTaskIndividualAssessmentsMessage {
2186
- Filters?: Filter[];
2187
- MaxRecords?: number;
2188
- Marker?: string;
2192
+ Filters?: Filter[] | undefined;
2193
+ MaxRecords?: number | undefined;
2194
+ Marker?: string | undefined;
2189
2195
  }
2190
2196
  export interface ReplicationTaskIndividualAssessment {
2191
- ReplicationTaskIndividualAssessmentArn?: string;
2192
- ReplicationTaskAssessmentRunArn?: string;
2193
- IndividualAssessmentName?: string;
2194
- Status?: string;
2195
- ReplicationTaskIndividualAssessmentStartDate?: Date;
2197
+ ReplicationTaskIndividualAssessmentArn?: string | undefined;
2198
+ ReplicationTaskAssessmentRunArn?: string | undefined;
2199
+ IndividualAssessmentName?: string | undefined;
2200
+ Status?: string | undefined;
2201
+ ReplicationTaskIndividualAssessmentStartDate?: Date | undefined;
2196
2202
  }
2197
2203
  export interface DescribeReplicationTaskIndividualAssessmentsResponse {
2198
- Marker?: string;
2199
- ReplicationTaskIndividualAssessments?: ReplicationTaskIndividualAssessment[];
2204
+ Marker?: string | undefined;
2205
+ ReplicationTaskIndividualAssessments?:
2206
+ | ReplicationTaskIndividualAssessment[]
2207
+ | undefined;
2200
2208
  }
2201
2209
  export interface DescribeReplicationTasksMessage {
2202
- Filters?: Filter[];
2203
- MaxRecords?: number;
2204
- Marker?: string;
2205
- WithoutSettings?: boolean;
2210
+ Filters?: Filter[] | undefined;
2211
+ MaxRecords?: number | undefined;
2212
+ Marker?: string | undefined;
2213
+ WithoutSettings?: boolean | undefined;
2206
2214
  }
2207
2215
  export interface DescribeReplicationTasksResponse {
2208
- Marker?: string;
2209
- ReplicationTasks?: ReplicationTask[];
2216
+ Marker?: string | undefined;
2217
+ ReplicationTasks?: ReplicationTask[] | undefined;
2210
2218
  }
2211
2219
  export interface DescribeSchemasMessage {
2212
2220
  EndpointArn: string | undefined;
2213
- MaxRecords?: number;
2214
- Marker?: string;
2221
+ MaxRecords?: number | undefined;
2222
+ Marker?: string | undefined;
2215
2223
  }
2216
2224
  export interface DescribeSchemasResponse {
2217
- Marker?: string;
2218
- Schemas?: string[];
2225
+ Marker?: string | undefined;
2226
+ Schemas?: string[] | undefined;
2219
2227
  }
2220
2228
  export interface DescribeTableStatisticsMessage {
2221
2229
  ReplicationTaskArn: string | undefined;
2222
- MaxRecords?: number;
2223
- Marker?: string;
2224
- Filters?: Filter[];
2230
+ MaxRecords?: number | undefined;
2231
+ Marker?: string | undefined;
2232
+ Filters?: Filter[] | undefined;
2225
2233
  }
2226
2234
  export declare const CreateDataMigrationMessageFilterSensitiveLog: (
2227
2235
  obj: CreateDataMigrationMessage