@aws-sdk/client-rds 3.687.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.
@@ -1,12 +1,12 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
3
3
  export interface AccountQuota {
4
- AccountQuotaName?: string;
5
- Used?: number;
6
- Max?: number;
4
+ AccountQuotaName?: string | undefined;
5
+ Used?: number | undefined;
6
+ Max?: number | undefined;
7
7
  }
8
8
  export interface AccountAttributesMessage {
9
- AccountQuotas?: AccountQuota[];
9
+ AccountQuotas?: AccountQuota[] | undefined;
10
10
  }
11
11
  export declare const ActivityStreamMode: {
12
12
  readonly async: "async";
@@ -33,7 +33,7 @@ export type ActivityStreamStatus =
33
33
  export interface AddRoleToDBClusterMessage {
34
34
  DBClusterIdentifier: string | undefined;
35
35
  RoleArn: string | undefined;
36
- FeatureName?: string;
36
+ FeatureName?: string | undefined;
37
37
  }
38
38
  export declare class DBClusterNotFoundFault extends __BaseException {
39
39
  readonly name: "DBClusterNotFoundFault";
@@ -113,19 +113,19 @@ export interface AddSourceIdentifierToSubscriptionMessage {
113
113
  SourceIdentifier: string | undefined;
114
114
  }
115
115
  export interface EventSubscription {
116
- CustomerAwsId?: string;
117
- CustSubscriptionId?: string;
118
- SnsTopicArn?: string;
119
- Status?: string;
120
- SubscriptionCreationTime?: string;
121
- SourceType?: string;
122
- SourceIdsList?: string[];
123
- EventCategoriesList?: string[];
124
- Enabled?: boolean;
125
- EventSubscriptionArn?: string;
116
+ CustomerAwsId?: string | undefined;
117
+ CustSubscriptionId?: string | undefined;
118
+ SnsTopicArn?: string | undefined;
119
+ Status?: string | undefined;
120
+ SubscriptionCreationTime?: string | undefined;
121
+ SourceType?: string | undefined;
122
+ SourceIdsList?: string[] | undefined;
123
+ EventCategoriesList?: string[] | undefined;
124
+ Enabled?: boolean | undefined;
125
+ EventSubscriptionArn?: string | undefined;
126
126
  }
127
127
  export interface AddSourceIdentifierToSubscriptionResult {
128
- EventSubscription?: EventSubscription;
128
+ EventSubscription?: EventSubscription | undefined;
129
129
  }
130
130
  export declare class SourceNotFoundFault extends __BaseException {
131
131
  readonly name: "SourceNotFoundFault";
@@ -142,8 +142,8 @@ export declare class SubscriptionNotFoundFault extends __BaseException {
142
142
  );
143
143
  }
144
144
  export interface Tag {
145
- Key?: string;
146
- Value?: string;
145
+ Key?: string | undefined;
146
+ Value?: string | undefined;
147
147
  }
148
148
  export interface AddTagsToResourceMessage {
149
149
  ResourceName: string | undefined;
@@ -213,19 +213,21 @@ export interface ApplyPendingMaintenanceActionMessage {
213
213
  OptInType: string | undefined;
214
214
  }
215
215
  export interface PendingMaintenanceAction {
216
- Action?: string;
217
- AutoAppliedAfterDate?: Date;
218
- ForcedApplyDate?: Date;
219
- OptInStatus?: string;
220
- CurrentApplyDate?: Date;
221
- Description?: string;
216
+ Action?: string | undefined;
217
+ AutoAppliedAfterDate?: Date | undefined;
218
+ ForcedApplyDate?: Date | undefined;
219
+ OptInStatus?: string | undefined;
220
+ CurrentApplyDate?: Date | undefined;
221
+ Description?: string | undefined;
222
222
  }
223
223
  export interface ResourcePendingMaintenanceActions {
224
- ResourceIdentifier?: string;
225
- PendingMaintenanceActionDetails?: PendingMaintenanceAction[];
224
+ ResourceIdentifier?: string | undefined;
225
+ PendingMaintenanceActionDetails?: PendingMaintenanceAction[] | undefined;
226
226
  }
227
227
  export interface ApplyPendingMaintenanceActionResult {
228
- ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
228
+ ResourcePendingMaintenanceActions?:
229
+ | ResourcePendingMaintenanceActions
230
+ | undefined;
229
231
  }
230
232
  export declare class ResourceNotFoundFault extends __BaseException {
231
233
  readonly name: "ResourceNotFoundFault";
@@ -256,32 +258,32 @@ export declare class AuthorizationQuotaExceededFault extends __BaseException {
256
258
  }
257
259
  export interface AuthorizeDBSecurityGroupIngressMessage {
258
260
  DBSecurityGroupName: string | undefined;
259
- CIDRIP?: string;
260
- EC2SecurityGroupName?: string;
261
- EC2SecurityGroupId?: string;
262
- EC2SecurityGroupOwnerId?: string;
261
+ CIDRIP?: string | undefined;
262
+ EC2SecurityGroupName?: string | undefined;
263
+ EC2SecurityGroupId?: string | undefined;
264
+ EC2SecurityGroupOwnerId?: string | undefined;
263
265
  }
264
266
  export interface EC2SecurityGroup {
265
- Status?: string;
266
- EC2SecurityGroupName?: string;
267
- EC2SecurityGroupId?: string;
268
- EC2SecurityGroupOwnerId?: string;
267
+ Status?: string | undefined;
268
+ EC2SecurityGroupName?: string | undefined;
269
+ EC2SecurityGroupId?: string | undefined;
270
+ EC2SecurityGroupOwnerId?: string | undefined;
269
271
  }
270
272
  export interface IPRange {
271
- Status?: string;
272
- CIDRIP?: string;
273
+ Status?: string | undefined;
274
+ CIDRIP?: string | undefined;
273
275
  }
274
276
  export interface DBSecurityGroup {
275
- OwnerId?: string;
276
- DBSecurityGroupName?: string;
277
- DBSecurityGroupDescription?: string;
278
- VpcId?: string;
279
- EC2SecurityGroups?: EC2SecurityGroup[];
280
- IPRanges?: IPRange[];
281
- DBSecurityGroupArn?: string;
277
+ OwnerId?: string | undefined;
278
+ DBSecurityGroupName?: string | undefined;
279
+ DBSecurityGroupDescription?: string | undefined;
280
+ VpcId?: string | undefined;
281
+ EC2SecurityGroups?: EC2SecurityGroup[] | undefined;
282
+ IPRanges?: IPRange[] | undefined;
283
+ DBSecurityGroupArn?: string | undefined;
282
284
  }
283
285
  export interface AuthorizeDBSecurityGroupIngressResult {
284
- DBSecurityGroup?: DBSecurityGroup;
286
+ DBSecurityGroup?: DBSecurityGroup | undefined;
285
287
  }
286
288
  export declare class DBSecurityGroupNotFoundFault extends __BaseException {
287
289
  readonly name: "DBSecurityGroupNotFoundFault";
@@ -303,16 +305,16 @@ export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
303
305
  export interface BacktrackDBClusterMessage {
304
306
  DBClusterIdentifier: string | undefined;
305
307
  BacktrackTo: Date | undefined;
306
- Force?: boolean;
307
- UseEarliestTimeOnPointInTimeUnavailable?: boolean;
308
+ Force?: boolean | undefined;
309
+ UseEarliestTimeOnPointInTimeUnavailable?: boolean | undefined;
308
310
  }
309
311
  export interface DBClusterBacktrack {
310
- DBClusterIdentifier?: string;
311
- BacktrackIdentifier?: string;
312
- BacktrackTo?: Date;
313
- BacktrackedFrom?: Date;
314
- BacktrackRequestCreationTime?: Date;
315
- Status?: string;
312
+ DBClusterIdentifier?: string | undefined;
313
+ BacktrackIdentifier?: string | undefined;
314
+ BacktrackTo?: Date | undefined;
315
+ BacktrackedFrom?: Date | undefined;
316
+ BacktrackRequestCreationTime?: Date | undefined;
317
+ Status?: string | undefined;
316
318
  }
317
319
  export interface CancelExportTaskMessage {
318
320
  ExportTaskIdentifier: string | undefined;
@@ -324,22 +326,22 @@ export declare const ExportSourceType: {
324
326
  export type ExportSourceType =
325
327
  (typeof ExportSourceType)[keyof typeof ExportSourceType];
326
328
  export interface ExportTask {
327
- ExportTaskIdentifier?: string;
328
- SourceArn?: string;
329
- ExportOnly?: string[];
330
- SnapshotTime?: Date;
331
- TaskStartTime?: Date;
332
- TaskEndTime?: Date;
333
- S3Bucket?: string;
334
- S3Prefix?: string;
335
- IamRoleArn?: string;
336
- KmsKeyId?: string;
337
- Status?: string;
338
- PercentProgress?: number;
339
- TotalExtractedDataInGB?: number;
340
- FailureCause?: string;
341
- WarningMessage?: string;
342
- SourceType?: ExportSourceType;
329
+ ExportTaskIdentifier?: string | undefined;
330
+ SourceArn?: string | undefined;
331
+ ExportOnly?: string[] | undefined;
332
+ SnapshotTime?: Date | undefined;
333
+ TaskStartTime?: Date | undefined;
334
+ TaskEndTime?: Date | undefined;
335
+ S3Bucket?: string | undefined;
336
+ S3Prefix?: string | undefined;
337
+ IamRoleArn?: string | undefined;
338
+ KmsKeyId?: string | undefined;
339
+ Status?: string | undefined;
340
+ PercentProgress?: number | undefined;
341
+ TotalExtractedDataInGB?: number | undefined;
342
+ FailureCause?: string | undefined;
343
+ WarningMessage?: string | undefined;
344
+ SourceType?: ExportSourceType | undefined;
343
345
  }
344
346
  export declare class ExportTaskNotFoundFault extends __BaseException {
345
347
  readonly name: "ExportTaskNotFoundFault";
@@ -359,16 +361,16 @@ export interface CopyDBClusterParameterGroupMessage {
359
361
  SourceDBClusterParameterGroupIdentifier: string | undefined;
360
362
  TargetDBClusterParameterGroupIdentifier: string | undefined;
361
363
  TargetDBClusterParameterGroupDescription: string | undefined;
362
- Tags?: Tag[];
364
+ Tags?: Tag[] | undefined;
363
365
  }
364
366
  export interface DBClusterParameterGroup {
365
- DBClusterParameterGroupName?: string;
366
- DBParameterGroupFamily?: string;
367
- Description?: string;
368
- DBClusterParameterGroupArn?: string;
367
+ DBClusterParameterGroupName?: string | undefined;
368
+ DBParameterGroupFamily?: string | undefined;
369
+ Description?: string | undefined;
370
+ DBClusterParameterGroupArn?: string | undefined;
369
371
  }
370
372
  export interface CopyDBClusterParameterGroupResult {
371
- DBClusterParameterGroup?: DBClusterParameterGroup;
373
+ DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
372
374
  }
373
375
  export declare class DBParameterGroupAlreadyExistsFault extends __BaseException {
374
376
  readonly name: "DBParameterGroupAlreadyExistsFault";
@@ -400,41 +402,41 @@ export declare class DBParameterGroupQuotaExceededFault extends __BaseException
400
402
  export interface CopyDBClusterSnapshotMessage {
401
403
  SourceDBClusterSnapshotIdentifier: string | undefined;
402
404
  TargetDBClusterSnapshotIdentifier: string | undefined;
403
- KmsKeyId?: string;
404
- PreSignedUrl?: string;
405
- CopyTags?: boolean;
406
- Tags?: Tag[];
405
+ KmsKeyId?: string | undefined;
406
+ PreSignedUrl?: string | undefined;
407
+ CopyTags?: boolean | undefined;
408
+ Tags?: Tag[] | undefined;
407
409
  }
408
410
  export interface DBClusterSnapshot {
409
- AvailabilityZones?: string[];
410
- DBClusterSnapshotIdentifier?: string;
411
- DBClusterIdentifier?: string;
412
- SnapshotCreateTime?: Date;
413
- Engine?: string;
414
- EngineMode?: string;
415
- AllocatedStorage?: number;
416
- Status?: string;
417
- Port?: number;
418
- VpcId?: string;
419
- ClusterCreateTime?: Date;
420
- MasterUsername?: string;
421
- EngineVersion?: string;
422
- LicenseModel?: string;
423
- SnapshotType?: string;
424
- PercentProgress?: number;
425
- StorageEncrypted?: boolean;
426
- KmsKeyId?: string;
427
- DBClusterSnapshotArn?: string;
428
- SourceDBClusterSnapshotArn?: string;
429
- IAMDatabaseAuthenticationEnabled?: boolean;
430
- TagList?: Tag[];
431
- DBSystemId?: string;
432
- StorageType?: string;
433
- DbClusterResourceId?: string;
434
- StorageThroughput?: number;
411
+ AvailabilityZones?: string[] | undefined;
412
+ DBClusterSnapshotIdentifier?: string | undefined;
413
+ DBClusterIdentifier?: string | undefined;
414
+ SnapshotCreateTime?: Date | undefined;
415
+ Engine?: string | undefined;
416
+ EngineMode?: string | undefined;
417
+ AllocatedStorage?: number | undefined;
418
+ Status?: string | undefined;
419
+ Port?: number | undefined;
420
+ VpcId?: string | undefined;
421
+ ClusterCreateTime?: Date | undefined;
422
+ MasterUsername?: string | undefined;
423
+ EngineVersion?: string | undefined;
424
+ LicenseModel?: string | undefined;
425
+ SnapshotType?: string | undefined;
426
+ PercentProgress?: number | undefined;
427
+ StorageEncrypted?: boolean | undefined;
428
+ KmsKeyId?: string | undefined;
429
+ DBClusterSnapshotArn?: string | undefined;
430
+ SourceDBClusterSnapshotArn?: string | undefined;
431
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
432
+ TagList?: Tag[] | undefined;
433
+ DBSystemId?: string | undefined;
434
+ StorageType?: string | undefined;
435
+ DbClusterResourceId?: string | undefined;
436
+ StorageThroughput?: number | undefined;
435
437
  }
436
438
  export interface CopyDBClusterSnapshotResult {
437
- DBClusterSnapshot?: DBClusterSnapshot;
439
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
438
440
  }
439
441
  export declare class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
440
442
  readonly name: "DBClusterSnapshotAlreadyExistsFault";
@@ -481,72 +483,72 @@ export interface CopyDBParameterGroupMessage {
481
483
  SourceDBParameterGroupIdentifier: string | undefined;
482
484
  TargetDBParameterGroupIdentifier: string | undefined;
483
485
  TargetDBParameterGroupDescription: string | undefined;
484
- Tags?: Tag[];
486
+ Tags?: Tag[] | undefined;
485
487
  }
486
488
  export interface DBParameterGroup {
487
- DBParameterGroupName?: string;
488
- DBParameterGroupFamily?: string;
489
- Description?: string;
490
- DBParameterGroupArn?: string;
489
+ DBParameterGroupName?: string | undefined;
490
+ DBParameterGroupFamily?: string | undefined;
491
+ Description?: string | undefined;
492
+ DBParameterGroupArn?: string | undefined;
491
493
  }
492
494
  export interface CopyDBParameterGroupResult {
493
- DBParameterGroup?: DBParameterGroup;
495
+ DBParameterGroup?: DBParameterGroup | undefined;
494
496
  }
495
497
  export interface CopyDBSnapshotMessage {
496
498
  SourceDBSnapshotIdentifier: string | undefined;
497
499
  TargetDBSnapshotIdentifier: string | undefined;
498
- KmsKeyId?: string;
499
- Tags?: Tag[];
500
- CopyTags?: boolean;
501
- PreSignedUrl?: string;
502
- OptionGroupName?: string;
503
- TargetCustomAvailabilityZone?: string;
504
- CopyOptionGroup?: boolean;
500
+ KmsKeyId?: string | undefined;
501
+ Tags?: Tag[] | undefined;
502
+ CopyTags?: boolean | undefined;
503
+ PreSignedUrl?: string | undefined;
504
+ OptionGroupName?: string | undefined;
505
+ TargetCustomAvailabilityZone?: string | undefined;
506
+ CopyOptionGroup?: boolean | undefined;
505
507
  }
506
508
  export interface ProcessorFeature {
507
- Name?: string;
508
- Value?: string;
509
+ Name?: string | undefined;
510
+ Value?: string | undefined;
509
511
  }
510
512
  export interface DBSnapshot {
511
- DBSnapshotIdentifier?: string;
512
- DBInstanceIdentifier?: string;
513
- SnapshotCreateTime?: Date;
514
- Engine?: string;
515
- AllocatedStorage?: number;
516
- Status?: string;
517
- Port?: number;
518
- AvailabilityZone?: string;
519
- VpcId?: string;
520
- InstanceCreateTime?: Date;
521
- MasterUsername?: string;
522
- EngineVersion?: string;
523
- LicenseModel?: string;
524
- SnapshotType?: string;
525
- Iops?: number;
526
- OptionGroupName?: string;
527
- PercentProgress?: number;
528
- SourceRegion?: string;
529
- SourceDBSnapshotIdentifier?: string;
530
- StorageType?: string;
531
- TdeCredentialArn?: string;
532
- Encrypted?: boolean;
533
- KmsKeyId?: string;
534
- DBSnapshotArn?: string;
535
- Timezone?: string;
536
- IAMDatabaseAuthenticationEnabled?: boolean;
537
- ProcessorFeatures?: ProcessorFeature[];
538
- DbiResourceId?: string;
539
- TagList?: Tag[];
540
- OriginalSnapshotCreateTime?: Date;
541
- SnapshotDatabaseTime?: Date;
542
- SnapshotTarget?: string;
543
- StorageThroughput?: number;
544
- DBSystemId?: string;
545
- DedicatedLogVolume?: boolean;
546
- MultiTenant?: boolean;
513
+ DBSnapshotIdentifier?: string | undefined;
514
+ DBInstanceIdentifier?: string | undefined;
515
+ SnapshotCreateTime?: Date | undefined;
516
+ Engine?: string | undefined;
517
+ AllocatedStorage?: number | undefined;
518
+ Status?: string | undefined;
519
+ Port?: number | undefined;
520
+ AvailabilityZone?: string | undefined;
521
+ VpcId?: string | undefined;
522
+ InstanceCreateTime?: Date | undefined;
523
+ MasterUsername?: string | undefined;
524
+ EngineVersion?: string | undefined;
525
+ LicenseModel?: string | undefined;
526
+ SnapshotType?: string | undefined;
527
+ Iops?: number | undefined;
528
+ OptionGroupName?: string | undefined;
529
+ PercentProgress?: number | undefined;
530
+ SourceRegion?: string | undefined;
531
+ SourceDBSnapshotIdentifier?: string | undefined;
532
+ StorageType?: string | undefined;
533
+ TdeCredentialArn?: string | undefined;
534
+ Encrypted?: boolean | undefined;
535
+ KmsKeyId?: string | undefined;
536
+ DBSnapshotArn?: string | undefined;
537
+ Timezone?: string | undefined;
538
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
539
+ ProcessorFeatures?: ProcessorFeature[] | undefined;
540
+ DbiResourceId?: string | undefined;
541
+ TagList?: Tag[] | undefined;
542
+ OriginalSnapshotCreateTime?: Date | undefined;
543
+ SnapshotDatabaseTime?: Date | undefined;
544
+ SnapshotTarget?: string | undefined;
545
+ StorageThroughput?: number | undefined;
546
+ DBSystemId?: string | undefined;
547
+ DedicatedLogVolume?: boolean | undefined;
548
+ MultiTenant?: boolean | undefined;
547
549
  }
548
550
  export interface CopyDBSnapshotResult {
549
- DBSnapshot?: DBSnapshot;
551
+ DBSnapshot?: DBSnapshot | undefined;
550
552
  }
551
553
  export declare class CustomAvailabilityZoneNotFoundFault extends __BaseException {
552
554
  readonly name: "CustomAvailabilityZoneNotFoundFault";
@@ -576,53 +578,53 @@ export interface CopyOptionGroupMessage {
576
578
  SourceOptionGroupIdentifier: string | undefined;
577
579
  TargetOptionGroupIdentifier: string | undefined;
578
580
  TargetOptionGroupDescription: string | undefined;
579
- Tags?: Tag[];
581
+ Tags?: Tag[] | undefined;
580
582
  }
581
583
  export interface DBSecurityGroupMembership {
582
- DBSecurityGroupName?: string;
583
- Status?: string;
584
+ DBSecurityGroupName?: string | undefined;
585
+ Status?: string | undefined;
584
586
  }
585
587
  export interface OptionSetting {
586
- Name?: string;
587
- Value?: string;
588
- DefaultValue?: string;
589
- Description?: string;
590
- ApplyType?: string;
591
- DataType?: string;
592
- AllowedValues?: string;
593
- IsModifiable?: boolean;
594
- IsCollection?: boolean;
588
+ Name?: string | undefined;
589
+ Value?: string | undefined;
590
+ DefaultValue?: string | undefined;
591
+ Description?: string | undefined;
592
+ ApplyType?: string | undefined;
593
+ DataType?: string | undefined;
594
+ AllowedValues?: string | undefined;
595
+ IsModifiable?: boolean | undefined;
596
+ IsCollection?: boolean | undefined;
595
597
  }
596
598
  export interface VpcSecurityGroupMembership {
597
- VpcSecurityGroupId?: string;
598
- Status?: string;
599
+ VpcSecurityGroupId?: string | undefined;
600
+ Status?: string | undefined;
599
601
  }
600
602
  export interface Option {
601
- OptionName?: string;
602
- OptionDescription?: string;
603
- Persistent?: boolean;
604
- Permanent?: boolean;
605
- Port?: number;
606
- OptionVersion?: string;
607
- OptionSettings?: OptionSetting[];
608
- DBSecurityGroupMemberships?: DBSecurityGroupMembership[];
609
- VpcSecurityGroupMemberships?: VpcSecurityGroupMembership[];
603
+ OptionName?: string | undefined;
604
+ OptionDescription?: string | undefined;
605
+ Persistent?: boolean | undefined;
606
+ Permanent?: boolean | undefined;
607
+ Port?: number | undefined;
608
+ OptionVersion?: string | undefined;
609
+ OptionSettings?: OptionSetting[] | undefined;
610
+ DBSecurityGroupMemberships?: DBSecurityGroupMembership[] | undefined;
611
+ VpcSecurityGroupMemberships?: VpcSecurityGroupMembership[] | undefined;
610
612
  }
611
613
  export interface OptionGroup {
612
- OptionGroupName?: string;
613
- OptionGroupDescription?: string;
614
- EngineName?: string;
615
- MajorEngineVersion?: string;
616
- Options?: Option[];
617
- AllowsVpcAndNonVpcInstanceMemberships?: boolean;
618
- VpcId?: string;
619
- OptionGroupArn?: string;
620
- SourceOptionGroup?: string;
621
- SourceAccountId?: string;
622
- CopyTimestamp?: Date;
614
+ OptionGroupName?: string | undefined;
615
+ OptionGroupDescription?: string | undefined;
616
+ EngineName?: string | undefined;
617
+ MajorEngineVersion?: string | undefined;
618
+ Options?: Option[] | undefined;
619
+ AllowsVpcAndNonVpcInstanceMemberships?: boolean | undefined;
620
+ VpcId?: string | undefined;
621
+ OptionGroupArn?: string | undefined;
622
+ SourceOptionGroup?: string | undefined;
623
+ SourceAccountId?: string | undefined;
624
+ CopyTimestamp?: Date | undefined;
623
625
  }
624
626
  export interface CopyOptionGroupResult {
625
- OptionGroup?: OptionGroup;
627
+ OptionGroup?: OptionGroup | undefined;
626
628
  }
627
629
  export declare class OptionGroupAlreadyExistsFault extends __BaseException {
628
630
  readonly name: "OptionGroupAlreadyExistsFault";
@@ -658,37 +660,37 @@ export declare class BlueGreenDeploymentAlreadyExistsFault extends __BaseExcepti
658
660
  export interface CreateBlueGreenDeploymentRequest {
659
661
  BlueGreenDeploymentName: string | undefined;
660
662
  Source: string | undefined;
661
- TargetEngineVersion?: string;
662
- TargetDBParameterGroupName?: string;
663
- TargetDBClusterParameterGroupName?: string;
664
- Tags?: Tag[];
665
- TargetDBInstanceClass?: string;
666
- UpgradeTargetStorageConfig?: boolean;
663
+ TargetEngineVersion?: string | undefined;
664
+ TargetDBParameterGroupName?: string | undefined;
665
+ TargetDBClusterParameterGroupName?: string | undefined;
666
+ Tags?: Tag[] | undefined;
667
+ TargetDBInstanceClass?: string | undefined;
668
+ UpgradeTargetStorageConfig?: boolean | undefined;
667
669
  }
668
670
  export interface SwitchoverDetail {
669
- SourceMember?: string;
670
- TargetMember?: string;
671
- Status?: string;
671
+ SourceMember?: string | undefined;
672
+ TargetMember?: string | undefined;
673
+ Status?: string | undefined;
672
674
  }
673
675
  export interface BlueGreenDeploymentTask {
674
- Name?: string;
675
- Status?: string;
676
+ Name?: string | undefined;
677
+ Status?: string | undefined;
676
678
  }
677
679
  export interface BlueGreenDeployment {
678
- BlueGreenDeploymentIdentifier?: string;
679
- BlueGreenDeploymentName?: string;
680
- Source?: string;
681
- Target?: string;
682
- SwitchoverDetails?: SwitchoverDetail[];
683
- Tasks?: BlueGreenDeploymentTask[];
684
- Status?: string;
685
- StatusDetails?: string;
686
- CreateTime?: Date;
687
- DeleteTime?: Date;
688
- TagList?: Tag[];
680
+ BlueGreenDeploymentIdentifier?: string | undefined;
681
+ BlueGreenDeploymentName?: string | undefined;
682
+ Source?: string | undefined;
683
+ Target?: string | undefined;
684
+ SwitchoverDetails?: SwitchoverDetail[] | undefined;
685
+ Tasks?: BlueGreenDeploymentTask[] | undefined;
686
+ Status?: string | undefined;
687
+ StatusDetails?: string | undefined;
688
+ CreateTime?: Date | undefined;
689
+ DeleteTime?: Date | undefined;
690
+ TagList?: Tag[] | undefined;
689
691
  }
690
692
  export interface CreateBlueGreenDeploymentResponse {
691
- BlueGreenDeployment?: BlueGreenDeployment;
693
+ BlueGreenDeployment?: BlueGreenDeployment | undefined;
692
694
  }
693
695
  export declare class DBClusterParameterGroupNotFoundFault extends __BaseException {
694
696
  readonly name: "DBClusterParameterGroupNotFoundFault";
@@ -744,15 +746,15 @@ export declare class CreateCustomDBEngineVersionFault extends __BaseException {
744
746
  export interface CreateCustomDBEngineVersionMessage {
745
747
  Engine: string | undefined;
746
748
  EngineVersion: string | undefined;
747
- DatabaseInstallationFilesS3BucketName?: string;
748
- DatabaseInstallationFilesS3Prefix?: string;
749
- ImageId?: string;
750
- KMSKeyId?: string;
751
- Description?: string;
752
- Manifest?: string;
753
- Tags?: Tag[];
754
- SourceCustomDbEngineVersionIdentifier?: string;
755
- UseAwsProvidedLatestImage?: boolean;
749
+ DatabaseInstallationFilesS3BucketName?: string | undefined;
750
+ DatabaseInstallationFilesS3Prefix?: string | undefined;
751
+ ImageId?: string | undefined;
752
+ KMSKeyId?: string | undefined;
753
+ Description?: string | undefined;
754
+ Manifest?: string | undefined;
755
+ Tags?: Tag[] | undefined;
756
+ SourceCustomDbEngineVersionIdentifier?: string | undefined;
757
+ UseAwsProvidedLatestImage?: boolean | undefined;
756
758
  }
757
759
  export declare class CustomDBEngineVersionAlreadyExistsFault extends __BaseException {
758
760
  readonly name: "CustomDBEngineVersionAlreadyExistsFault";
@@ -775,65 +777,65 @@ export declare class CustomDBEngineVersionQuotaExceededFault extends __BaseExcep
775
777
  );
776
778
  }
777
779
  export interface CharacterSet {
778
- CharacterSetName?: string;
779
- CharacterSetDescription?: string;
780
+ CharacterSetName?: string | undefined;
781
+ CharacterSetDescription?: string | undefined;
780
782
  }
781
783
  export interface CustomDBEngineVersionAMI {
782
- ImageId?: string;
783
- Status?: string;
784
+ ImageId?: string | undefined;
785
+ Status?: string | undefined;
784
786
  }
785
787
  export interface Timezone {
786
- TimezoneName?: string;
788
+ TimezoneName?: string | undefined;
787
789
  }
788
790
  export interface UpgradeTarget {
789
- Engine?: string;
790
- EngineVersion?: string;
791
- Description?: string;
792
- AutoUpgrade?: boolean;
793
- IsMajorVersionUpgrade?: boolean;
794
- SupportedEngineModes?: string[];
795
- SupportsParallelQuery?: boolean;
796
- SupportsGlobalDatabases?: boolean;
797
- SupportsBabelfish?: boolean;
798
- SupportsLimitlessDatabase?: boolean;
799
- SupportsLocalWriteForwarding?: boolean;
800
- SupportsIntegrations?: boolean;
791
+ Engine?: string | undefined;
792
+ EngineVersion?: string | undefined;
793
+ Description?: string | undefined;
794
+ AutoUpgrade?: boolean | undefined;
795
+ IsMajorVersionUpgrade?: boolean | undefined;
796
+ SupportedEngineModes?: string[] | undefined;
797
+ SupportsParallelQuery?: boolean | undefined;
798
+ SupportsGlobalDatabases?: boolean | undefined;
799
+ SupportsBabelfish?: boolean | undefined;
800
+ SupportsLimitlessDatabase?: boolean | undefined;
801
+ SupportsLocalWriteForwarding?: boolean | undefined;
802
+ SupportsIntegrations?: boolean | undefined;
801
803
  }
802
804
  export interface DBEngineVersion {
803
- Engine?: string;
804
- EngineVersion?: string;
805
- DBParameterGroupFamily?: string;
806
- DBEngineDescription?: string;
807
- DBEngineVersionDescription?: string;
808
- DefaultCharacterSet?: CharacterSet;
809
- Image?: CustomDBEngineVersionAMI;
810
- DBEngineMediaType?: string;
811
- SupportedCharacterSets?: CharacterSet[];
812
- SupportedNcharCharacterSets?: CharacterSet[];
813
- ValidUpgradeTarget?: UpgradeTarget[];
814
- SupportedTimezones?: Timezone[];
815
- ExportableLogTypes?: string[];
816
- SupportsLogExportsToCloudwatchLogs?: boolean;
817
- SupportsReadReplica?: boolean;
818
- SupportedEngineModes?: string[];
819
- SupportedFeatureNames?: string[];
820
- Status?: string;
821
- SupportsParallelQuery?: boolean;
822
- SupportsGlobalDatabases?: boolean;
823
- MajorEngineVersion?: string;
824
- DatabaseInstallationFilesS3BucketName?: string;
825
- DatabaseInstallationFilesS3Prefix?: string;
826
- DBEngineVersionArn?: string;
827
- KMSKeyId?: string;
828
- CreateTime?: Date;
829
- TagList?: Tag[];
830
- SupportsBabelfish?: boolean;
831
- CustomDBEngineVersionManifest?: string;
832
- SupportsLimitlessDatabase?: boolean;
833
- SupportsCertificateRotationWithoutRestart?: boolean;
834
- SupportedCACertificateIdentifiers?: string[];
835
- SupportsLocalWriteForwarding?: boolean;
836
- SupportsIntegrations?: boolean;
805
+ Engine?: string | undefined;
806
+ EngineVersion?: string | undefined;
807
+ DBParameterGroupFamily?: string | undefined;
808
+ DBEngineDescription?: string | undefined;
809
+ DBEngineVersionDescription?: string | undefined;
810
+ DefaultCharacterSet?: CharacterSet | undefined;
811
+ Image?: CustomDBEngineVersionAMI | undefined;
812
+ DBEngineMediaType?: string | undefined;
813
+ SupportedCharacterSets?: CharacterSet[] | undefined;
814
+ SupportedNcharCharacterSets?: CharacterSet[] | undefined;
815
+ ValidUpgradeTarget?: UpgradeTarget[] | undefined;
816
+ SupportedTimezones?: Timezone[] | undefined;
817
+ ExportableLogTypes?: string[] | undefined;
818
+ SupportsLogExportsToCloudwatchLogs?: boolean | undefined;
819
+ SupportsReadReplica?: boolean | undefined;
820
+ SupportedEngineModes?: string[] | undefined;
821
+ SupportedFeatureNames?: string[] | undefined;
822
+ Status?: string | undefined;
823
+ SupportsParallelQuery?: boolean | undefined;
824
+ SupportsGlobalDatabases?: boolean | undefined;
825
+ MajorEngineVersion?: string | undefined;
826
+ DatabaseInstallationFilesS3BucketName?: string | undefined;
827
+ DatabaseInstallationFilesS3Prefix?: string | undefined;
828
+ DBEngineVersionArn?: string | undefined;
829
+ KMSKeyId?: string | undefined;
830
+ CreateTime?: Date | undefined;
831
+ TagList?: Tag[] | undefined;
832
+ SupportsBabelfish?: boolean | undefined;
833
+ CustomDBEngineVersionManifest?: string | undefined;
834
+ SupportsLimitlessDatabase?: boolean | undefined;
835
+ SupportsCertificateRotationWithoutRestart?: boolean | undefined;
836
+ SupportedCACertificateIdentifiers?: string[] | undefined;
837
+ SupportsLocalWriteForwarding?: boolean | undefined;
838
+ SupportsIntegrations?: boolean | undefined;
837
839
  }
838
840
  export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException {
839
841
  readonly name: "Ec2ImagePropertiesNotSupportedFault";
@@ -857,106 +859,108 @@ export declare const ReplicaMode: {
857
859
  };
858
860
  export type ReplicaMode = (typeof ReplicaMode)[keyof typeof ReplicaMode];
859
861
  export interface RdsCustomClusterConfiguration {
860
- InterconnectSubnetId?: string;
861
- TransitGatewayMulticastDomainId?: string;
862
- ReplicaMode?: ReplicaMode;
862
+ InterconnectSubnetId?: string | undefined;
863
+ TransitGatewayMulticastDomainId?: string | undefined;
864
+ ReplicaMode?: ReplicaMode | undefined;
863
865
  }
864
866
  export interface ScalingConfiguration {
865
- MinCapacity?: number;
866
- MaxCapacity?: number;
867
- AutoPause?: boolean;
868
- SecondsUntilAutoPause?: number;
869
- TimeoutAction?: string;
870
- SecondsBeforeTimeout?: number;
867
+ MinCapacity?: number | undefined;
868
+ MaxCapacity?: number | undefined;
869
+ AutoPause?: boolean | undefined;
870
+ SecondsUntilAutoPause?: number | undefined;
871
+ TimeoutAction?: string | undefined;
872
+ SecondsBeforeTimeout?: number | undefined;
871
873
  }
872
874
  export interface ServerlessV2ScalingConfiguration {
873
- MinCapacity?: number;
874
- MaxCapacity?: number;
875
+ MinCapacity?: number | undefined;
876
+ MaxCapacity?: number | undefined;
875
877
  }
876
878
  export interface CreateDBClusterMessage {
877
- AvailabilityZones?: string[];
878
- BackupRetentionPeriod?: number;
879
- CharacterSetName?: string;
880
- DatabaseName?: string;
879
+ AvailabilityZones?: string[] | undefined;
880
+ BackupRetentionPeriod?: number | undefined;
881
+ CharacterSetName?: string | undefined;
882
+ DatabaseName?: string | undefined;
881
883
  DBClusterIdentifier: string | undefined;
882
- DBClusterParameterGroupName?: string;
883
- VpcSecurityGroupIds?: string[];
884
- DBSubnetGroupName?: string;
884
+ DBClusterParameterGroupName?: string | undefined;
885
+ VpcSecurityGroupIds?: string[] | undefined;
886
+ DBSubnetGroupName?: string | undefined;
885
887
  Engine: string | undefined;
886
- EngineVersion?: string;
887
- Port?: number;
888
- MasterUsername?: string;
889
- MasterUserPassword?: string;
890
- OptionGroupName?: string;
891
- PreferredBackupWindow?: string;
892
- PreferredMaintenanceWindow?: string;
893
- ReplicationSourceIdentifier?: string;
894
- Tags?: Tag[];
895
- StorageEncrypted?: boolean;
896
- KmsKeyId?: string;
897
- PreSignedUrl?: string;
898
- EnableIAMDatabaseAuthentication?: boolean;
899
- BacktrackWindow?: number;
900
- EnableCloudwatchLogsExports?: string[];
901
- EngineMode?: string;
902
- ScalingConfiguration?: ScalingConfiguration;
903
- RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
904
- DeletionProtection?: boolean;
905
- GlobalClusterIdentifier?: string;
906
- EnableHttpEndpoint?: boolean;
907
- CopyTagsToSnapshot?: boolean;
908
- Domain?: string;
909
- DomainIAMRoleName?: string;
910
- EnableGlobalWriteForwarding?: boolean;
911
- DBClusterInstanceClass?: string;
912
- AllocatedStorage?: number;
913
- StorageType?: string;
914
- Iops?: number;
915
- PubliclyAccessible?: boolean;
916
- AutoMinorVersionUpgrade?: boolean;
917
- MonitoringInterval?: number;
918
- MonitoringRoleArn?: string;
919
- EnablePerformanceInsights?: boolean;
920
- PerformanceInsightsKMSKeyId?: string;
921
- PerformanceInsightsRetentionPeriod?: number;
922
- EnableLimitlessDatabase?: boolean;
923
- ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
924
- NetworkType?: string;
925
- ClusterScalabilityType?: ClusterScalabilityType;
926
- DBSystemId?: string;
927
- ManageMasterUserPassword?: boolean;
928
- MasterUserSecretKmsKeyId?: string;
929
- EnableLocalWriteForwarding?: boolean;
930
- CACertificateIdentifier?: string;
931
- EngineLifecycleSupport?: string;
888
+ EngineVersion?: string | undefined;
889
+ Port?: number | undefined;
890
+ MasterUsername?: string | undefined;
891
+ MasterUserPassword?: string | undefined;
892
+ OptionGroupName?: string | undefined;
893
+ PreferredBackupWindow?: string | undefined;
894
+ PreferredMaintenanceWindow?: string | undefined;
895
+ ReplicationSourceIdentifier?: string | undefined;
896
+ Tags?: Tag[] | undefined;
897
+ StorageEncrypted?: boolean | undefined;
898
+ KmsKeyId?: string | undefined;
899
+ PreSignedUrl?: string | undefined;
900
+ EnableIAMDatabaseAuthentication?: boolean | undefined;
901
+ BacktrackWindow?: number | undefined;
902
+ EnableCloudwatchLogsExports?: string[] | undefined;
903
+ EngineMode?: string | undefined;
904
+ ScalingConfiguration?: ScalingConfiguration | undefined;
905
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration | undefined;
906
+ DeletionProtection?: boolean | undefined;
907
+ GlobalClusterIdentifier?: string | undefined;
908
+ EnableHttpEndpoint?: boolean | undefined;
909
+ CopyTagsToSnapshot?: boolean | undefined;
910
+ Domain?: string | undefined;
911
+ DomainIAMRoleName?: string | undefined;
912
+ EnableGlobalWriteForwarding?: boolean | undefined;
913
+ DBClusterInstanceClass?: string | undefined;
914
+ AllocatedStorage?: number | undefined;
915
+ StorageType?: string | undefined;
916
+ Iops?: number | undefined;
917
+ PubliclyAccessible?: boolean | undefined;
918
+ AutoMinorVersionUpgrade?: boolean | undefined;
919
+ MonitoringInterval?: number | undefined;
920
+ MonitoringRoleArn?: string | undefined;
921
+ EnablePerformanceInsights?: boolean | undefined;
922
+ PerformanceInsightsKMSKeyId?: string | undefined;
923
+ PerformanceInsightsRetentionPeriod?: number | undefined;
924
+ EnableLimitlessDatabase?: boolean | undefined;
925
+ ServerlessV2ScalingConfiguration?:
926
+ | ServerlessV2ScalingConfiguration
927
+ | undefined;
928
+ NetworkType?: string | undefined;
929
+ ClusterScalabilityType?: ClusterScalabilityType | undefined;
930
+ DBSystemId?: string | undefined;
931
+ ManageMasterUserPassword?: boolean | undefined;
932
+ MasterUserSecretKmsKeyId?: string | undefined;
933
+ EnableLocalWriteForwarding?: boolean | undefined;
934
+ CACertificateIdentifier?: string | undefined;
935
+ EngineLifecycleSupport?: string | undefined;
932
936
  }
933
937
  export interface DBClusterRole {
934
- RoleArn?: string;
935
- Status?: string;
936
- FeatureName?: string;
938
+ RoleArn?: string | undefined;
939
+ Status?: string | undefined;
940
+ FeatureName?: string | undefined;
937
941
  }
938
942
  export interface CertificateDetails {
939
- CAIdentifier?: string;
940
- ValidTill?: Date;
943
+ CAIdentifier?: string | undefined;
944
+ ValidTill?: Date | undefined;
941
945
  }
942
946
  export interface DBClusterMember {
943
- DBInstanceIdentifier?: string;
944
- IsClusterWriter?: boolean;
945
- DBClusterParameterGroupStatus?: string;
946
- PromotionTier?: number;
947
+ DBInstanceIdentifier?: string | undefined;
948
+ IsClusterWriter?: boolean | undefined;
949
+ DBClusterParameterGroupStatus?: string | undefined;
950
+ PromotionTier?: number | undefined;
947
951
  }
948
952
  export interface DBClusterOptionGroupStatus {
949
- DBClusterOptionGroupName?: string;
950
- Status?: string;
953
+ DBClusterOptionGroupName?: string | undefined;
954
+ Status?: string | undefined;
951
955
  }
952
956
  export interface DomainMembership {
953
- Domain?: string;
954
- Status?: string;
955
- FQDN?: string;
956
- IAMRoleName?: string;
957
- OU?: string;
958
- AuthSecretArn?: string;
959
- DnsIps?: string[];
957
+ Domain?: string | undefined;
958
+ Status?: string | undefined;
959
+ FQDN?: string | undefined;
960
+ IAMRoleName?: string | undefined;
961
+ OU?: string | undefined;
962
+ AuthSecretArn?: string | undefined;
963
+ DnsIps?: string[] | undefined;
960
964
  }
961
965
  export declare const WriteForwardingStatus: {
962
966
  readonly DISABLED: "disabled";
@@ -980,8 +984,8 @@ export declare const LimitlessDatabaseStatus: {
980
984
  export type LimitlessDatabaseStatus =
981
985
  (typeof LimitlessDatabaseStatus)[keyof typeof LimitlessDatabaseStatus];
982
986
  export interface LimitlessDatabase {
983
- Status?: LimitlessDatabaseStatus;
984
- MinRequiredACU?: number;
987
+ Status?: LimitlessDatabaseStatus | undefined;
988
+ MinRequiredACU?: number | undefined;
985
989
  }
986
990
  export declare const LocalWriteForwardingStatus: {
987
991
  readonly DISABLED: "disabled";
@@ -993,130 +997,132 @@ export declare const LocalWriteForwardingStatus: {
993
997
  export type LocalWriteForwardingStatus =
994
998
  (typeof LocalWriteForwardingStatus)[keyof typeof LocalWriteForwardingStatus];
995
999
  export interface MasterUserSecret {
996
- SecretArn?: string;
997
- SecretStatus?: string;
998
- KmsKeyId?: string;
1000
+ SecretArn?: string | undefined;
1001
+ SecretStatus?: string | undefined;
1002
+ KmsKeyId?: string | undefined;
999
1003
  }
1000
1004
  export interface PendingCloudwatchLogsExports {
1001
- LogTypesToEnable?: string[];
1002
- LogTypesToDisable?: string[];
1005
+ LogTypesToEnable?: string[] | undefined;
1006
+ LogTypesToDisable?: string[] | undefined;
1003
1007
  }
1004
1008
  export interface ClusterPendingModifiedValues {
1005
- PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
1006
- DBClusterIdentifier?: string;
1007
- MasterUserPassword?: string;
1008
- IAMDatabaseAuthenticationEnabled?: boolean;
1009
- EngineVersion?: string;
1010
- BackupRetentionPeriod?: number;
1011
- AllocatedStorage?: number;
1012
- RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
1013
- Iops?: number;
1014
- StorageType?: string;
1015
- CertificateDetails?: CertificateDetails;
1009
+ PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports | undefined;
1010
+ DBClusterIdentifier?: string | undefined;
1011
+ MasterUserPassword?: string | undefined;
1012
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
1013
+ EngineVersion?: string | undefined;
1014
+ BackupRetentionPeriod?: number | undefined;
1015
+ AllocatedStorage?: number | undefined;
1016
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration | undefined;
1017
+ Iops?: number | undefined;
1018
+ StorageType?: string | undefined;
1019
+ CertificateDetails?: CertificateDetails | undefined;
1016
1020
  }
1017
1021
  export interface ScalingConfigurationInfo {
1018
- MinCapacity?: number;
1019
- MaxCapacity?: number;
1020
- AutoPause?: boolean;
1021
- SecondsUntilAutoPause?: number;
1022
- TimeoutAction?: string;
1023
- SecondsBeforeTimeout?: number;
1022
+ MinCapacity?: number | undefined;
1023
+ MaxCapacity?: number | undefined;
1024
+ AutoPause?: boolean | undefined;
1025
+ SecondsUntilAutoPause?: number | undefined;
1026
+ TimeoutAction?: string | undefined;
1027
+ SecondsBeforeTimeout?: number | undefined;
1024
1028
  }
1025
1029
  export interface ServerlessV2ScalingConfigurationInfo {
1026
- MinCapacity?: number;
1027
- MaxCapacity?: number;
1030
+ MinCapacity?: number | undefined;
1031
+ MaxCapacity?: number | undefined;
1028
1032
  }
1029
1033
  export interface DBClusterStatusInfo {
1030
- StatusType?: string;
1031
- Normal?: boolean;
1032
- Status?: string;
1033
- Message?: string;
1034
+ StatusType?: string | undefined;
1035
+ Normal?: boolean | undefined;
1036
+ Status?: string | undefined;
1037
+ Message?: string | undefined;
1034
1038
  }
1035
1039
  export interface DBCluster {
1036
- AllocatedStorage?: number;
1037
- AvailabilityZones?: string[];
1038
- BackupRetentionPeriod?: number;
1039
- CharacterSetName?: string;
1040
- DatabaseName?: string;
1041
- DBClusterIdentifier?: string;
1042
- DBClusterParameterGroup?: string;
1043
- DBSubnetGroup?: string;
1044
- Status?: string;
1045
- AutomaticRestartTime?: Date;
1046
- PercentProgress?: string;
1047
- EarliestRestorableTime?: Date;
1048
- Endpoint?: string;
1049
- ReaderEndpoint?: string;
1050
- CustomEndpoints?: string[];
1051
- MultiAZ?: boolean;
1052
- Engine?: string;
1053
- EngineVersion?: string;
1054
- LatestRestorableTime?: Date;
1055
- Port?: number;
1056
- MasterUsername?: string;
1057
- DBClusterOptionGroupMemberships?: DBClusterOptionGroupStatus[];
1058
- PreferredBackupWindow?: string;
1059
- PreferredMaintenanceWindow?: string;
1060
- ReplicationSourceIdentifier?: string;
1061
- ReadReplicaIdentifiers?: string[];
1062
- StatusInfos?: DBClusterStatusInfo[];
1063
- DBClusterMembers?: DBClusterMember[];
1064
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
1065
- HostedZoneId?: string;
1066
- StorageEncrypted?: boolean;
1067
- KmsKeyId?: string;
1068
- DbClusterResourceId?: string;
1069
- DBClusterArn?: string;
1070
- AssociatedRoles?: DBClusterRole[];
1071
- IAMDatabaseAuthenticationEnabled?: boolean;
1072
- CloneGroupId?: string;
1073
- ClusterCreateTime?: Date;
1074
- EarliestBacktrackTime?: Date;
1075
- BacktrackWindow?: number;
1076
- BacktrackConsumedChangeRecords?: number;
1077
- EnabledCloudwatchLogsExports?: string[];
1078
- Capacity?: number;
1079
- EngineMode?: string;
1080
- ScalingConfigurationInfo?: ScalingConfigurationInfo;
1081
- RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration;
1082
- DeletionProtection?: boolean;
1083
- HttpEndpointEnabled?: boolean;
1084
- ActivityStreamMode?: ActivityStreamMode;
1085
- ActivityStreamStatus?: ActivityStreamStatus;
1086
- ActivityStreamKmsKeyId?: string;
1087
- ActivityStreamKinesisStreamName?: string;
1088
- CopyTagsToSnapshot?: boolean;
1089
- CrossAccountClone?: boolean;
1090
- DomainMemberships?: DomainMembership[];
1091
- TagList?: Tag[];
1092
- GlobalWriteForwardingStatus?: WriteForwardingStatus;
1093
- GlobalWriteForwardingRequested?: boolean;
1094
- PendingModifiedValues?: ClusterPendingModifiedValues;
1095
- DBClusterInstanceClass?: string;
1096
- StorageType?: string;
1097
- Iops?: number;
1098
- PubliclyAccessible?: boolean;
1099
- AutoMinorVersionUpgrade?: boolean;
1100
- MonitoringInterval?: number;
1101
- MonitoringRoleArn?: string;
1102
- PerformanceInsightsEnabled?: boolean;
1103
- PerformanceInsightsKMSKeyId?: string;
1104
- PerformanceInsightsRetentionPeriod?: number;
1105
- ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfigurationInfo;
1106
- NetworkType?: string;
1107
- DBSystemId?: string;
1108
- MasterUserSecret?: MasterUserSecret;
1109
- IOOptimizedNextAllowedModificationTime?: Date;
1110
- LocalWriteForwardingStatus?: LocalWriteForwardingStatus;
1111
- AwsBackupRecoveryPointArn?: string;
1112
- LimitlessDatabase?: LimitlessDatabase;
1113
- StorageThroughput?: number;
1114
- ClusterScalabilityType?: ClusterScalabilityType;
1115
- CertificateDetails?: CertificateDetails;
1116
- EngineLifecycleSupport?: string;
1040
+ AllocatedStorage?: number | undefined;
1041
+ AvailabilityZones?: string[] | undefined;
1042
+ BackupRetentionPeriod?: number | undefined;
1043
+ CharacterSetName?: string | undefined;
1044
+ DatabaseName?: string | undefined;
1045
+ DBClusterIdentifier?: string | undefined;
1046
+ DBClusterParameterGroup?: string | undefined;
1047
+ DBSubnetGroup?: string | undefined;
1048
+ Status?: string | undefined;
1049
+ AutomaticRestartTime?: Date | undefined;
1050
+ PercentProgress?: string | undefined;
1051
+ EarliestRestorableTime?: Date | undefined;
1052
+ Endpoint?: string | undefined;
1053
+ ReaderEndpoint?: string | undefined;
1054
+ CustomEndpoints?: string[] | undefined;
1055
+ MultiAZ?: boolean | undefined;
1056
+ Engine?: string | undefined;
1057
+ EngineVersion?: string | undefined;
1058
+ LatestRestorableTime?: Date | undefined;
1059
+ Port?: number | undefined;
1060
+ MasterUsername?: string | undefined;
1061
+ DBClusterOptionGroupMemberships?: DBClusterOptionGroupStatus[] | undefined;
1062
+ PreferredBackupWindow?: string | undefined;
1063
+ PreferredMaintenanceWindow?: string | undefined;
1064
+ ReplicationSourceIdentifier?: string | undefined;
1065
+ ReadReplicaIdentifiers?: string[] | undefined;
1066
+ StatusInfos?: DBClusterStatusInfo[] | undefined;
1067
+ DBClusterMembers?: DBClusterMember[] | undefined;
1068
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
1069
+ HostedZoneId?: string | undefined;
1070
+ StorageEncrypted?: boolean | undefined;
1071
+ KmsKeyId?: string | undefined;
1072
+ DbClusterResourceId?: string | undefined;
1073
+ DBClusterArn?: string | undefined;
1074
+ AssociatedRoles?: DBClusterRole[] | undefined;
1075
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
1076
+ CloneGroupId?: string | undefined;
1077
+ ClusterCreateTime?: Date | undefined;
1078
+ EarliestBacktrackTime?: Date | undefined;
1079
+ BacktrackWindow?: number | undefined;
1080
+ BacktrackConsumedChangeRecords?: number | undefined;
1081
+ EnabledCloudwatchLogsExports?: string[] | undefined;
1082
+ Capacity?: number | undefined;
1083
+ EngineMode?: string | undefined;
1084
+ ScalingConfigurationInfo?: ScalingConfigurationInfo | undefined;
1085
+ RdsCustomClusterConfiguration?: RdsCustomClusterConfiguration | undefined;
1086
+ DeletionProtection?: boolean | undefined;
1087
+ HttpEndpointEnabled?: boolean | undefined;
1088
+ ActivityStreamMode?: ActivityStreamMode | undefined;
1089
+ ActivityStreamStatus?: ActivityStreamStatus | undefined;
1090
+ ActivityStreamKmsKeyId?: string | undefined;
1091
+ ActivityStreamKinesisStreamName?: string | undefined;
1092
+ CopyTagsToSnapshot?: boolean | undefined;
1093
+ CrossAccountClone?: boolean | undefined;
1094
+ DomainMemberships?: DomainMembership[] | undefined;
1095
+ TagList?: Tag[] | undefined;
1096
+ GlobalWriteForwardingStatus?: WriteForwardingStatus | undefined;
1097
+ GlobalWriteForwardingRequested?: boolean | undefined;
1098
+ PendingModifiedValues?: ClusterPendingModifiedValues | undefined;
1099
+ DBClusterInstanceClass?: string | undefined;
1100
+ StorageType?: string | undefined;
1101
+ Iops?: number | undefined;
1102
+ PubliclyAccessible?: boolean | undefined;
1103
+ AutoMinorVersionUpgrade?: boolean | undefined;
1104
+ MonitoringInterval?: number | undefined;
1105
+ MonitoringRoleArn?: string | undefined;
1106
+ PerformanceInsightsEnabled?: boolean | undefined;
1107
+ PerformanceInsightsKMSKeyId?: string | undefined;
1108
+ PerformanceInsightsRetentionPeriod?: number | undefined;
1109
+ ServerlessV2ScalingConfiguration?:
1110
+ | ServerlessV2ScalingConfigurationInfo
1111
+ | undefined;
1112
+ NetworkType?: string | undefined;
1113
+ DBSystemId?: string | undefined;
1114
+ MasterUserSecret?: MasterUserSecret | undefined;
1115
+ IOOptimizedNextAllowedModificationTime?: Date | undefined;
1116
+ LocalWriteForwardingStatus?: LocalWriteForwardingStatus | undefined;
1117
+ AwsBackupRecoveryPointArn?: string | undefined;
1118
+ LimitlessDatabase?: LimitlessDatabase | undefined;
1119
+ StorageThroughput?: number | undefined;
1120
+ ClusterScalabilityType?: ClusterScalabilityType | undefined;
1121
+ CertificateDetails?: CertificateDetails | undefined;
1122
+ EngineLifecycleSupport?: string | undefined;
1117
1123
  }
1118
1124
  export interface CreateDBClusterResult {
1119
- DBCluster?: DBCluster;
1125
+ DBCluster?: DBCluster | undefined;
1120
1126
  }
1121
1127
  export declare class DBClusterAlreadyExistsFault extends __BaseException {
1122
1128
  readonly name: "DBClusterAlreadyExistsFault";
@@ -1220,21 +1226,21 @@ export interface CreateDBClusterEndpointMessage {
1220
1226
  DBClusterIdentifier: string | undefined;
1221
1227
  DBClusterEndpointIdentifier: string | undefined;
1222
1228
  EndpointType: string | undefined;
1223
- StaticMembers?: string[];
1224
- ExcludedMembers?: string[];
1225
- Tags?: Tag[];
1229
+ StaticMembers?: string[] | undefined;
1230
+ ExcludedMembers?: string[] | undefined;
1231
+ Tags?: Tag[] | undefined;
1226
1232
  }
1227
1233
  export interface DBClusterEndpoint {
1228
- DBClusterEndpointIdentifier?: string;
1229
- DBClusterIdentifier?: string;
1230
- DBClusterEndpointResourceIdentifier?: string;
1231
- Endpoint?: string;
1232
- Status?: string;
1233
- EndpointType?: string;
1234
- CustomEndpointType?: string;
1235
- StaticMembers?: string[];
1236
- ExcludedMembers?: string[];
1237
- DBClusterEndpointArn?: string;
1234
+ DBClusterEndpointIdentifier?: string | undefined;
1235
+ DBClusterIdentifier?: string | undefined;
1236
+ DBClusterEndpointResourceIdentifier?: string | undefined;
1237
+ Endpoint?: string | undefined;
1238
+ Status?: string | undefined;
1239
+ EndpointType?: string | undefined;
1240
+ CustomEndpointType?: string | undefined;
1241
+ StaticMembers?: string[] | undefined;
1242
+ ExcludedMembers?: string[] | undefined;
1243
+ DBClusterEndpointArn?: string | undefined;
1238
1244
  }
1239
1245
  export declare class DBClusterEndpointAlreadyExistsFault extends __BaseException {
1240
1246
  readonly name: "DBClusterEndpointAlreadyExistsFault";
@@ -1260,18 +1266,18 @@ export interface CreateDBClusterParameterGroupMessage {
1260
1266
  DBClusterParameterGroupName: string | undefined;
1261
1267
  DBParameterGroupFamily: string | undefined;
1262
1268
  Description: string | undefined;
1263
- Tags?: Tag[];
1269
+ Tags?: Tag[] | undefined;
1264
1270
  }
1265
1271
  export interface CreateDBClusterParameterGroupResult {
1266
- DBClusterParameterGroup?: DBClusterParameterGroup;
1272
+ DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
1267
1273
  }
1268
1274
  export interface CreateDBClusterSnapshotMessage {
1269
1275
  DBClusterSnapshotIdentifier: string | undefined;
1270
1276
  DBClusterIdentifier: string | undefined;
1271
- Tags?: Tag[];
1277
+ Tags?: Tag[] | undefined;
1272
1278
  }
1273
1279
  export interface CreateDBClusterSnapshotResult {
1274
- DBClusterSnapshot?: DBClusterSnapshot;
1280
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
1275
1281
  }
1276
1282
  export declare class AuthorizationNotFoundFault extends __BaseException {
1277
1283
  readonly name: "AuthorizationNotFoundFault";
@@ -1295,74 +1301,74 @@ export declare class CertificateNotFoundFault extends __BaseException {
1295
1301
  );
1296
1302
  }
1297
1303
  export interface CreateDBInstanceMessage {
1298
- DBName?: string;
1304
+ DBName?: string | undefined;
1299
1305
  DBInstanceIdentifier: string | undefined;
1300
- AllocatedStorage?: number;
1306
+ AllocatedStorage?: number | undefined;
1301
1307
  DBInstanceClass: string | undefined;
1302
1308
  Engine: string | undefined;
1303
- MasterUsername?: string;
1304
- MasterUserPassword?: string;
1305
- DBSecurityGroups?: string[];
1306
- VpcSecurityGroupIds?: string[];
1307
- AvailabilityZone?: string;
1308
- DBSubnetGroupName?: string;
1309
- PreferredMaintenanceWindow?: string;
1310
- DBParameterGroupName?: string;
1311
- BackupRetentionPeriod?: number;
1312
- PreferredBackupWindow?: string;
1313
- Port?: number;
1314
- MultiAZ?: boolean;
1315
- EngineVersion?: string;
1316
- AutoMinorVersionUpgrade?: boolean;
1317
- LicenseModel?: string;
1318
- Iops?: number;
1319
- OptionGroupName?: string;
1320
- CharacterSetName?: string;
1321
- NcharCharacterSetName?: string;
1322
- PubliclyAccessible?: boolean;
1323
- Tags?: Tag[];
1324
- DBClusterIdentifier?: string;
1325
- StorageType?: string;
1326
- TdeCredentialArn?: string;
1327
- TdeCredentialPassword?: string;
1328
- StorageEncrypted?: boolean;
1329
- KmsKeyId?: string;
1330
- Domain?: string;
1331
- DomainFqdn?: string;
1332
- DomainOu?: string;
1333
- DomainAuthSecretArn?: string;
1334
- DomainDnsIps?: string[];
1335
- CopyTagsToSnapshot?: boolean;
1336
- MonitoringInterval?: number;
1337
- MonitoringRoleArn?: string;
1338
- DomainIAMRoleName?: string;
1339
- PromotionTier?: number;
1340
- Timezone?: string;
1341
- EnableIAMDatabaseAuthentication?: boolean;
1342
- EnablePerformanceInsights?: boolean;
1343
- PerformanceInsightsKMSKeyId?: string;
1344
- PerformanceInsightsRetentionPeriod?: number;
1345
- EnableCloudwatchLogsExports?: string[];
1346
- ProcessorFeatures?: ProcessorFeature[];
1347
- DeletionProtection?: boolean;
1348
- MaxAllocatedStorage?: number;
1349
- EnableCustomerOwnedIp?: boolean;
1350
- CustomIamInstanceProfile?: string;
1351
- BackupTarget?: string;
1352
- NetworkType?: string;
1353
- StorageThroughput?: number;
1354
- ManageMasterUserPassword?: boolean;
1355
- MasterUserSecretKmsKeyId?: string;
1356
- CACertificateIdentifier?: string;
1357
- DBSystemId?: string;
1358
- DedicatedLogVolume?: boolean;
1359
- MultiTenant?: boolean;
1360
- EngineLifecycleSupport?: string;
1309
+ MasterUsername?: string | undefined;
1310
+ MasterUserPassword?: string | undefined;
1311
+ DBSecurityGroups?: string[] | undefined;
1312
+ VpcSecurityGroupIds?: string[] | undefined;
1313
+ AvailabilityZone?: string | undefined;
1314
+ DBSubnetGroupName?: string | undefined;
1315
+ PreferredMaintenanceWindow?: string | undefined;
1316
+ DBParameterGroupName?: string | undefined;
1317
+ BackupRetentionPeriod?: number | undefined;
1318
+ PreferredBackupWindow?: string | undefined;
1319
+ Port?: number | undefined;
1320
+ MultiAZ?: boolean | undefined;
1321
+ EngineVersion?: string | undefined;
1322
+ AutoMinorVersionUpgrade?: boolean | undefined;
1323
+ LicenseModel?: string | undefined;
1324
+ Iops?: number | undefined;
1325
+ OptionGroupName?: string | undefined;
1326
+ CharacterSetName?: string | undefined;
1327
+ NcharCharacterSetName?: string | undefined;
1328
+ PubliclyAccessible?: boolean | undefined;
1329
+ Tags?: Tag[] | undefined;
1330
+ DBClusterIdentifier?: string | undefined;
1331
+ StorageType?: string | undefined;
1332
+ TdeCredentialArn?: string | undefined;
1333
+ TdeCredentialPassword?: string | undefined;
1334
+ StorageEncrypted?: boolean | undefined;
1335
+ KmsKeyId?: string | undefined;
1336
+ Domain?: string | undefined;
1337
+ DomainFqdn?: string | undefined;
1338
+ DomainOu?: string | undefined;
1339
+ DomainAuthSecretArn?: string | undefined;
1340
+ DomainDnsIps?: string[] | undefined;
1341
+ CopyTagsToSnapshot?: boolean | undefined;
1342
+ MonitoringInterval?: number | undefined;
1343
+ MonitoringRoleArn?: string | undefined;
1344
+ DomainIAMRoleName?: string | undefined;
1345
+ PromotionTier?: number | undefined;
1346
+ Timezone?: string | undefined;
1347
+ EnableIAMDatabaseAuthentication?: boolean | undefined;
1348
+ EnablePerformanceInsights?: boolean | undefined;
1349
+ PerformanceInsightsKMSKeyId?: string | undefined;
1350
+ PerformanceInsightsRetentionPeriod?: number | undefined;
1351
+ EnableCloudwatchLogsExports?: string[] | undefined;
1352
+ ProcessorFeatures?: ProcessorFeature[] | undefined;
1353
+ DeletionProtection?: boolean | undefined;
1354
+ MaxAllocatedStorage?: number | undefined;
1355
+ EnableCustomerOwnedIp?: boolean | undefined;
1356
+ CustomIamInstanceProfile?: string | undefined;
1357
+ BackupTarget?: string | undefined;
1358
+ NetworkType?: string | undefined;
1359
+ StorageThroughput?: number | undefined;
1360
+ ManageMasterUserPassword?: boolean | undefined;
1361
+ MasterUserSecretKmsKeyId?: string | undefined;
1362
+ CACertificateIdentifier?: string | undefined;
1363
+ DBSystemId?: string | undefined;
1364
+ DedicatedLogVolume?: boolean | undefined;
1365
+ MultiTenant?: boolean | undefined;
1366
+ EngineLifecycleSupport?: string | undefined;
1361
1367
  }
1362
1368
  export interface DBInstanceRole {
1363
- RoleArn?: string;
1364
- FeatureName?: string;
1365
- Status?: string;
1369
+ RoleArn?: string | undefined;
1370
+ FeatureName?: string | undefined;
1371
+ Status?: string | undefined;
1366
1372
  }
1367
1373
  export declare const AutomationMode: {
1368
1374
  readonly ALL_PAUSED: "all-paused";
@@ -1371,162 +1377,164 @@ export declare const AutomationMode: {
1371
1377
  export type AutomationMode =
1372
1378
  (typeof AutomationMode)[keyof typeof AutomationMode];
1373
1379
  export interface DBInstanceAutomatedBackupsReplication {
1374
- DBInstanceAutomatedBackupsArn?: string;
1380
+ DBInstanceAutomatedBackupsArn?: string | undefined;
1375
1381
  }
1376
1382
  export interface DBParameterGroupStatus {
1377
- DBParameterGroupName?: string;
1378
- ParameterApplyStatus?: string;
1383
+ DBParameterGroupName?: string | undefined;
1384
+ ParameterApplyStatus?: string | undefined;
1379
1385
  }
1380
1386
  export interface AvailabilityZone {
1381
- Name?: string;
1387
+ Name?: string | undefined;
1382
1388
  }
1383
1389
  export interface Outpost {
1384
- Arn?: string;
1390
+ Arn?: string | undefined;
1385
1391
  }
1386
1392
  export interface Subnet {
1387
- SubnetIdentifier?: string;
1388
- SubnetAvailabilityZone?: AvailabilityZone;
1389
- SubnetOutpost?: Outpost;
1390
- SubnetStatus?: string;
1393
+ SubnetIdentifier?: string | undefined;
1394
+ SubnetAvailabilityZone?: AvailabilityZone | undefined;
1395
+ SubnetOutpost?: Outpost | undefined;
1396
+ SubnetStatus?: string | undefined;
1391
1397
  }
1392
1398
  export interface DBSubnetGroup {
1393
- DBSubnetGroupName?: string;
1394
- DBSubnetGroupDescription?: string;
1395
- VpcId?: string;
1396
- SubnetGroupStatus?: string;
1397
- Subnets?: Subnet[];
1398
- DBSubnetGroupArn?: string;
1399
- SupportedNetworkTypes?: string[];
1399
+ DBSubnetGroupName?: string | undefined;
1400
+ DBSubnetGroupDescription?: string | undefined;
1401
+ VpcId?: string | undefined;
1402
+ SubnetGroupStatus?: string | undefined;
1403
+ Subnets?: Subnet[] | undefined;
1404
+ DBSubnetGroupArn?: string | undefined;
1405
+ SupportedNetworkTypes?: string[] | undefined;
1400
1406
  }
1401
1407
  export interface Endpoint {
1402
- Address?: string;
1403
- Port?: number;
1404
- HostedZoneId?: string;
1408
+ Address?: string | undefined;
1409
+ Port?: number | undefined;
1410
+ HostedZoneId?: string | undefined;
1405
1411
  }
1406
1412
  export interface OptionGroupMembership {
1407
- OptionGroupName?: string;
1408
- Status?: string;
1413
+ OptionGroupName?: string | undefined;
1414
+ Status?: string | undefined;
1409
1415
  }
1410
1416
  export interface PendingModifiedValues {
1411
- DBInstanceClass?: string;
1412
- AllocatedStorage?: number;
1413
- MasterUserPassword?: string;
1414
- Port?: number;
1415
- BackupRetentionPeriod?: number;
1416
- MultiAZ?: boolean;
1417
- EngineVersion?: string;
1418
- LicenseModel?: string;
1419
- Iops?: number;
1420
- DBInstanceIdentifier?: string;
1421
- StorageType?: string;
1422
- CACertificateIdentifier?: string;
1423
- DBSubnetGroupName?: string;
1424
- PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
1425
- ProcessorFeatures?: ProcessorFeature[];
1426
- IAMDatabaseAuthenticationEnabled?: boolean;
1427
- AutomationMode?: AutomationMode;
1428
- ResumeFullAutomationModeTime?: Date;
1429
- StorageThroughput?: number;
1430
- Engine?: string;
1431
- DedicatedLogVolume?: boolean;
1432
- MultiTenant?: boolean;
1417
+ DBInstanceClass?: string | undefined;
1418
+ AllocatedStorage?: number | undefined;
1419
+ MasterUserPassword?: string | undefined;
1420
+ Port?: number | undefined;
1421
+ BackupRetentionPeriod?: number | undefined;
1422
+ MultiAZ?: boolean | undefined;
1423
+ EngineVersion?: string | undefined;
1424
+ LicenseModel?: string | undefined;
1425
+ Iops?: number | undefined;
1426
+ DBInstanceIdentifier?: string | undefined;
1427
+ StorageType?: string | undefined;
1428
+ CACertificateIdentifier?: string | undefined;
1429
+ DBSubnetGroupName?: string | undefined;
1430
+ PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports | undefined;
1431
+ ProcessorFeatures?: ProcessorFeature[] | undefined;
1432
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
1433
+ AutomationMode?: AutomationMode | undefined;
1434
+ ResumeFullAutomationModeTime?: Date | undefined;
1435
+ StorageThroughput?: number | undefined;
1436
+ Engine?: string | undefined;
1437
+ DedicatedLogVolume?: boolean | undefined;
1438
+ MultiTenant?: boolean | undefined;
1433
1439
  }
1434
1440
  export interface DBInstanceStatusInfo {
1435
- StatusType?: string;
1436
- Normal?: boolean;
1437
- Status?: string;
1438
- Message?: string;
1441
+ StatusType?: string | undefined;
1442
+ Normal?: boolean | undefined;
1443
+ Status?: string | undefined;
1444
+ Message?: string | undefined;
1439
1445
  }
1440
1446
  export interface DBInstance {
1441
- DBInstanceIdentifier?: string;
1442
- DBInstanceClass?: string;
1443
- Engine?: string;
1444
- DBInstanceStatus?: string;
1445
- AutomaticRestartTime?: Date;
1446
- MasterUsername?: string;
1447
- DBName?: string;
1448
- Endpoint?: Endpoint;
1449
- AllocatedStorage?: number;
1450
- InstanceCreateTime?: Date;
1451
- PreferredBackupWindow?: string;
1452
- BackupRetentionPeriod?: number;
1453
- DBSecurityGroups?: DBSecurityGroupMembership[];
1454
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
1455
- DBParameterGroups?: DBParameterGroupStatus[];
1456
- AvailabilityZone?: string;
1457
- DBSubnetGroup?: DBSubnetGroup;
1458
- PreferredMaintenanceWindow?: string;
1459
- PendingModifiedValues?: PendingModifiedValues;
1460
- LatestRestorableTime?: Date;
1461
- MultiAZ?: boolean;
1462
- EngineVersion?: string;
1463
- AutoMinorVersionUpgrade?: boolean;
1464
- ReadReplicaSourceDBInstanceIdentifier?: string;
1465
- ReadReplicaDBInstanceIdentifiers?: string[];
1466
- ReadReplicaDBClusterIdentifiers?: string[];
1467
- ReplicaMode?: ReplicaMode;
1468
- LicenseModel?: string;
1469
- Iops?: number;
1470
- OptionGroupMemberships?: OptionGroupMembership[];
1471
- CharacterSetName?: string;
1472
- NcharCharacterSetName?: string;
1473
- SecondaryAvailabilityZone?: string;
1474
- PubliclyAccessible?: boolean;
1475
- StatusInfos?: DBInstanceStatusInfo[];
1476
- StorageType?: string;
1477
- TdeCredentialArn?: string;
1478
- DbInstancePort?: number;
1479
- DBClusterIdentifier?: string;
1480
- StorageEncrypted?: boolean;
1481
- KmsKeyId?: string;
1482
- DbiResourceId?: string;
1483
- CACertificateIdentifier?: string;
1484
- DomainMemberships?: DomainMembership[];
1485
- CopyTagsToSnapshot?: boolean;
1486
- MonitoringInterval?: number;
1487
- EnhancedMonitoringResourceArn?: string;
1488
- MonitoringRoleArn?: string;
1489
- PromotionTier?: number;
1490
- DBInstanceArn?: string;
1491
- Timezone?: string;
1492
- IAMDatabaseAuthenticationEnabled?: boolean;
1493
- PerformanceInsightsEnabled?: boolean;
1494
- PerformanceInsightsKMSKeyId?: string;
1495
- PerformanceInsightsRetentionPeriod?: number;
1496
- EnabledCloudwatchLogsExports?: string[];
1497
- ProcessorFeatures?: ProcessorFeature[];
1498
- DeletionProtection?: boolean;
1499
- AssociatedRoles?: DBInstanceRole[];
1500
- ListenerEndpoint?: Endpoint;
1501
- MaxAllocatedStorage?: number;
1502
- TagList?: Tag[];
1503
- DBInstanceAutomatedBackupsReplications?: DBInstanceAutomatedBackupsReplication[];
1504
- CustomerOwnedIpEnabled?: boolean;
1505
- AwsBackupRecoveryPointArn?: string;
1506
- ActivityStreamStatus?: ActivityStreamStatus;
1507
- ActivityStreamKmsKeyId?: string;
1508
- ActivityStreamKinesisStreamName?: string;
1509
- ActivityStreamMode?: ActivityStreamMode;
1510
- ActivityStreamEngineNativeAuditFieldsIncluded?: boolean;
1511
- AutomationMode?: AutomationMode;
1512
- ResumeFullAutomationModeTime?: Date;
1513
- CustomIamInstanceProfile?: string;
1514
- BackupTarget?: string;
1515
- NetworkType?: string;
1516
- ActivityStreamPolicyStatus?: ActivityStreamPolicyStatus;
1517
- StorageThroughput?: number;
1518
- DBSystemId?: string;
1519
- MasterUserSecret?: MasterUserSecret;
1520
- CertificateDetails?: CertificateDetails;
1521
- ReadReplicaSourceDBClusterIdentifier?: string;
1522
- PercentProgress?: string;
1523
- DedicatedLogVolume?: boolean;
1524
- IsStorageConfigUpgradeAvailable?: boolean;
1525
- MultiTenant?: boolean;
1526
- EngineLifecycleSupport?: string;
1447
+ DBInstanceIdentifier?: string | undefined;
1448
+ DBInstanceClass?: string | undefined;
1449
+ Engine?: string | undefined;
1450
+ DBInstanceStatus?: string | undefined;
1451
+ AutomaticRestartTime?: Date | undefined;
1452
+ MasterUsername?: string | undefined;
1453
+ DBName?: string | undefined;
1454
+ Endpoint?: Endpoint | undefined;
1455
+ AllocatedStorage?: number | undefined;
1456
+ InstanceCreateTime?: Date | undefined;
1457
+ PreferredBackupWindow?: string | undefined;
1458
+ BackupRetentionPeriod?: number | undefined;
1459
+ DBSecurityGroups?: DBSecurityGroupMembership[] | undefined;
1460
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
1461
+ DBParameterGroups?: DBParameterGroupStatus[] | undefined;
1462
+ AvailabilityZone?: string | undefined;
1463
+ DBSubnetGroup?: DBSubnetGroup | undefined;
1464
+ PreferredMaintenanceWindow?: string | undefined;
1465
+ PendingModifiedValues?: PendingModifiedValues | undefined;
1466
+ LatestRestorableTime?: Date | undefined;
1467
+ MultiAZ?: boolean | undefined;
1468
+ EngineVersion?: string | undefined;
1469
+ AutoMinorVersionUpgrade?: boolean | undefined;
1470
+ ReadReplicaSourceDBInstanceIdentifier?: string | undefined;
1471
+ ReadReplicaDBInstanceIdentifiers?: string[] | undefined;
1472
+ ReadReplicaDBClusterIdentifiers?: string[] | undefined;
1473
+ ReplicaMode?: ReplicaMode | undefined;
1474
+ LicenseModel?: string | undefined;
1475
+ Iops?: number | undefined;
1476
+ OptionGroupMemberships?: OptionGroupMembership[] | undefined;
1477
+ CharacterSetName?: string | undefined;
1478
+ NcharCharacterSetName?: string | undefined;
1479
+ SecondaryAvailabilityZone?: string | undefined;
1480
+ PubliclyAccessible?: boolean | undefined;
1481
+ StatusInfos?: DBInstanceStatusInfo[] | undefined;
1482
+ StorageType?: string | undefined;
1483
+ TdeCredentialArn?: string | undefined;
1484
+ DbInstancePort?: number | undefined;
1485
+ DBClusterIdentifier?: string | undefined;
1486
+ StorageEncrypted?: boolean | undefined;
1487
+ KmsKeyId?: string | undefined;
1488
+ DbiResourceId?: string | undefined;
1489
+ CACertificateIdentifier?: string | undefined;
1490
+ DomainMemberships?: DomainMembership[] | undefined;
1491
+ CopyTagsToSnapshot?: boolean | undefined;
1492
+ MonitoringInterval?: number | undefined;
1493
+ EnhancedMonitoringResourceArn?: string | undefined;
1494
+ MonitoringRoleArn?: string | undefined;
1495
+ PromotionTier?: number | undefined;
1496
+ DBInstanceArn?: string | undefined;
1497
+ Timezone?: string | undefined;
1498
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
1499
+ PerformanceInsightsEnabled?: boolean | undefined;
1500
+ PerformanceInsightsKMSKeyId?: string | undefined;
1501
+ PerformanceInsightsRetentionPeriod?: number | undefined;
1502
+ EnabledCloudwatchLogsExports?: string[] | undefined;
1503
+ ProcessorFeatures?: ProcessorFeature[] | undefined;
1504
+ DeletionProtection?: boolean | undefined;
1505
+ AssociatedRoles?: DBInstanceRole[] | undefined;
1506
+ ListenerEndpoint?: Endpoint | undefined;
1507
+ MaxAllocatedStorage?: number | undefined;
1508
+ TagList?: Tag[] | undefined;
1509
+ DBInstanceAutomatedBackupsReplications?:
1510
+ | DBInstanceAutomatedBackupsReplication[]
1511
+ | undefined;
1512
+ CustomerOwnedIpEnabled?: boolean | undefined;
1513
+ AwsBackupRecoveryPointArn?: string | undefined;
1514
+ ActivityStreamStatus?: ActivityStreamStatus | undefined;
1515
+ ActivityStreamKmsKeyId?: string | undefined;
1516
+ ActivityStreamKinesisStreamName?: string | undefined;
1517
+ ActivityStreamMode?: ActivityStreamMode | undefined;
1518
+ ActivityStreamEngineNativeAuditFieldsIncluded?: boolean | undefined;
1519
+ AutomationMode?: AutomationMode | undefined;
1520
+ ResumeFullAutomationModeTime?: Date | undefined;
1521
+ CustomIamInstanceProfile?: string | undefined;
1522
+ BackupTarget?: string | undefined;
1523
+ NetworkType?: string | undefined;
1524
+ ActivityStreamPolicyStatus?: ActivityStreamPolicyStatus | undefined;
1525
+ StorageThroughput?: number | undefined;
1526
+ DBSystemId?: string | undefined;
1527
+ MasterUserSecret?: MasterUserSecret | undefined;
1528
+ CertificateDetails?: CertificateDetails | undefined;
1529
+ ReadReplicaSourceDBClusterIdentifier?: string | undefined;
1530
+ PercentProgress?: string | undefined;
1531
+ DedicatedLogVolume?: boolean | undefined;
1532
+ IsStorageConfigUpgradeAvailable?: boolean | undefined;
1533
+ MultiTenant?: boolean | undefined;
1534
+ EngineLifecycleSupport?: string | undefined;
1527
1535
  }
1528
1536
  export interface CreateDBInstanceResult {
1529
- DBInstance?: DBInstance;
1537
+ DBInstance?: DBInstance | undefined;
1530
1538
  }
1531
1539
  export declare class DBInstanceAlreadyExistsFault extends __BaseException {
1532
1540
  readonly name: "DBInstanceAlreadyExistsFault";
@@ -1571,53 +1579,53 @@ export declare class TenantDatabaseQuotaExceededFault extends __BaseException {
1571
1579
  }
1572
1580
  export interface CreateDBInstanceReadReplicaMessage {
1573
1581
  DBInstanceIdentifier: string | undefined;
1574
- SourceDBInstanceIdentifier?: string;
1575
- DBInstanceClass?: string;
1576
- AvailabilityZone?: string;
1577
- Port?: number;
1578
- MultiAZ?: boolean;
1579
- AutoMinorVersionUpgrade?: boolean;
1580
- Iops?: number;
1581
- OptionGroupName?: string;
1582
- DBParameterGroupName?: string;
1583
- PubliclyAccessible?: boolean;
1584
- Tags?: Tag[];
1585
- DBSubnetGroupName?: string;
1586
- VpcSecurityGroupIds?: string[];
1587
- StorageType?: string;
1588
- CopyTagsToSnapshot?: boolean;
1589
- MonitoringInterval?: number;
1590
- MonitoringRoleArn?: string;
1591
- KmsKeyId?: string;
1592
- PreSignedUrl?: string;
1593
- EnableIAMDatabaseAuthentication?: boolean;
1594
- EnablePerformanceInsights?: boolean;
1595
- PerformanceInsightsKMSKeyId?: string;
1596
- PerformanceInsightsRetentionPeriod?: number;
1597
- EnableCloudwatchLogsExports?: string[];
1598
- ProcessorFeatures?: ProcessorFeature[];
1599
- UseDefaultProcessorFeatures?: boolean;
1600
- DeletionProtection?: boolean;
1601
- Domain?: string;
1602
- DomainIAMRoleName?: string;
1603
- DomainFqdn?: string;
1604
- DomainOu?: string;
1605
- DomainAuthSecretArn?: string;
1606
- DomainDnsIps?: string[];
1607
- ReplicaMode?: ReplicaMode;
1608
- MaxAllocatedStorage?: number;
1609
- CustomIamInstanceProfile?: string;
1610
- NetworkType?: string;
1611
- StorageThroughput?: number;
1612
- EnableCustomerOwnedIp?: boolean;
1613
- AllocatedStorage?: number;
1614
- SourceDBClusterIdentifier?: string;
1615
- DedicatedLogVolume?: boolean;
1616
- UpgradeStorageConfig?: boolean;
1617
- CACertificateIdentifier?: string;
1582
+ SourceDBInstanceIdentifier?: string | undefined;
1583
+ DBInstanceClass?: string | undefined;
1584
+ AvailabilityZone?: string | undefined;
1585
+ Port?: number | undefined;
1586
+ MultiAZ?: boolean | undefined;
1587
+ AutoMinorVersionUpgrade?: boolean | undefined;
1588
+ Iops?: number | undefined;
1589
+ OptionGroupName?: string | undefined;
1590
+ DBParameterGroupName?: string | undefined;
1591
+ PubliclyAccessible?: boolean | undefined;
1592
+ Tags?: Tag[] | undefined;
1593
+ DBSubnetGroupName?: string | undefined;
1594
+ VpcSecurityGroupIds?: string[] | undefined;
1595
+ StorageType?: string | undefined;
1596
+ CopyTagsToSnapshot?: boolean | undefined;
1597
+ MonitoringInterval?: number | undefined;
1598
+ MonitoringRoleArn?: string | undefined;
1599
+ KmsKeyId?: string | undefined;
1600
+ PreSignedUrl?: string | undefined;
1601
+ EnableIAMDatabaseAuthentication?: boolean | undefined;
1602
+ EnablePerformanceInsights?: boolean | undefined;
1603
+ PerformanceInsightsKMSKeyId?: string | undefined;
1604
+ PerformanceInsightsRetentionPeriod?: number | undefined;
1605
+ EnableCloudwatchLogsExports?: string[] | undefined;
1606
+ ProcessorFeatures?: ProcessorFeature[] | undefined;
1607
+ UseDefaultProcessorFeatures?: boolean | undefined;
1608
+ DeletionProtection?: boolean | undefined;
1609
+ Domain?: string | undefined;
1610
+ DomainIAMRoleName?: string | undefined;
1611
+ DomainFqdn?: string | undefined;
1612
+ DomainOu?: string | undefined;
1613
+ DomainAuthSecretArn?: string | undefined;
1614
+ DomainDnsIps?: string[] | undefined;
1615
+ ReplicaMode?: ReplicaMode | undefined;
1616
+ MaxAllocatedStorage?: number | undefined;
1617
+ CustomIamInstanceProfile?: string | undefined;
1618
+ NetworkType?: string | undefined;
1619
+ StorageThroughput?: number | undefined;
1620
+ EnableCustomerOwnedIp?: boolean | undefined;
1621
+ AllocatedStorage?: number | undefined;
1622
+ SourceDBClusterIdentifier?: string | undefined;
1623
+ DedicatedLogVolume?: boolean | undefined;
1624
+ UpgradeStorageConfig?: boolean | undefined;
1625
+ CACertificateIdentifier?: string | undefined;
1618
1626
  }
1619
1627
  export interface CreateDBInstanceReadReplicaResult {
1620
- DBInstance?: DBInstance;
1628
+ DBInstance?: DBInstance | undefined;
1621
1629
  }
1622
1630
  export declare class DBSubnetGroupNotAllowedFault extends __BaseException {
1623
1631
  readonly name: "DBSubnetGroupNotAllowedFault";
@@ -1630,10 +1638,10 @@ export interface CreateDBParameterGroupMessage {
1630
1638
  DBParameterGroupName: string | undefined;
1631
1639
  DBParameterGroupFamily: string | undefined;
1632
1640
  Description: string | undefined;
1633
- Tags?: Tag[];
1641
+ Tags?: Tag[] | undefined;
1634
1642
  }
1635
1643
  export interface CreateDBParameterGroupResult {
1636
- DBParameterGroup?: DBParameterGroup;
1644
+ DBParameterGroup?: DBParameterGroup | undefined;
1637
1645
  }
1638
1646
  export declare const AuthScheme: {
1639
1647
  readonly SECRETS: "SECRETS";
@@ -1654,12 +1662,12 @@ export declare const IAMAuthMode: {
1654
1662
  };
1655
1663
  export type IAMAuthMode = (typeof IAMAuthMode)[keyof typeof IAMAuthMode];
1656
1664
  export interface UserAuthConfig {
1657
- Description?: string;
1658
- UserName?: string;
1659
- AuthScheme?: AuthScheme;
1660
- SecretArn?: string;
1661
- IAMAuth?: IAMAuthMode;
1662
- ClientPasswordAuthType?: ClientPasswordAuthType;
1665
+ Description?: string | undefined;
1666
+ UserName?: string | undefined;
1667
+ AuthScheme?: AuthScheme | undefined;
1668
+ SecretArn?: string | undefined;
1669
+ IAMAuth?: IAMAuthMode | undefined;
1670
+ ClientPasswordAuthType?: ClientPasswordAuthType | undefined;
1663
1671
  }
1664
1672
  export declare const EngineFamily: {
1665
1673
  readonly MYSQL: "MYSQL";
@@ -1673,19 +1681,19 @@ export interface CreateDBProxyRequest {
1673
1681
  Auth: UserAuthConfig[] | undefined;
1674
1682
  RoleArn: string | undefined;
1675
1683
  VpcSubnetIds: string[] | undefined;
1676
- VpcSecurityGroupIds?: string[];
1677
- RequireTLS?: boolean;
1678
- IdleClientTimeout?: number;
1679
- DebugLogging?: boolean;
1680
- Tags?: Tag[];
1684
+ VpcSecurityGroupIds?: string[] | undefined;
1685
+ RequireTLS?: boolean | undefined;
1686
+ IdleClientTimeout?: number | undefined;
1687
+ DebugLogging?: boolean | undefined;
1688
+ Tags?: Tag[] | undefined;
1681
1689
  }
1682
1690
  export interface UserAuthConfigInfo {
1683
- Description?: string;
1684
- UserName?: string;
1685
- AuthScheme?: AuthScheme;
1686
- SecretArn?: string;
1687
- IAMAuth?: IAMAuthMode;
1688
- ClientPasswordAuthType?: ClientPasswordAuthType;
1691
+ Description?: string | undefined;
1692
+ UserName?: string | undefined;
1693
+ AuthScheme?: AuthScheme | undefined;
1694
+ SecretArn?: string | undefined;
1695
+ IAMAuth?: IAMAuthMode | undefined;
1696
+ ClientPasswordAuthType?: ClientPasswordAuthType | undefined;
1689
1697
  }
1690
1698
  export declare const DBProxyStatus: {
1691
1699
  readonly AVAILABLE: "available";
@@ -1700,24 +1708,24 @@ export declare const DBProxyStatus: {
1700
1708
  };
1701
1709
  export type DBProxyStatus = (typeof DBProxyStatus)[keyof typeof DBProxyStatus];
1702
1710
  export interface DBProxy {
1703
- DBProxyName?: string;
1704
- DBProxyArn?: string;
1705
- Status?: DBProxyStatus;
1706
- EngineFamily?: string;
1707
- VpcId?: string;
1708
- VpcSecurityGroupIds?: string[];
1709
- VpcSubnetIds?: string[];
1710
- Auth?: UserAuthConfigInfo[];
1711
- RoleArn?: string;
1712
- Endpoint?: string;
1713
- RequireTLS?: boolean;
1714
- IdleClientTimeout?: number;
1715
- DebugLogging?: boolean;
1716
- CreatedDate?: Date;
1717
- UpdatedDate?: Date;
1711
+ DBProxyName?: string | undefined;
1712
+ DBProxyArn?: string | undefined;
1713
+ Status?: DBProxyStatus | undefined;
1714
+ EngineFamily?: string | undefined;
1715
+ VpcId?: string | undefined;
1716
+ VpcSecurityGroupIds?: string[] | undefined;
1717
+ VpcSubnetIds?: string[] | undefined;
1718
+ Auth?: UserAuthConfigInfo[] | undefined;
1719
+ RoleArn?: string | undefined;
1720
+ Endpoint?: string | undefined;
1721
+ RequireTLS?: boolean | undefined;
1722
+ IdleClientTimeout?: number | undefined;
1723
+ DebugLogging?: boolean | undefined;
1724
+ CreatedDate?: Date | undefined;
1725
+ UpdatedDate?: Date | undefined;
1718
1726
  }
1719
1727
  export interface CreateDBProxyResponse {
1720
- DBProxy?: DBProxy;
1728
+ DBProxy?: DBProxy | undefined;
1721
1729
  }
1722
1730
  export declare class DBProxyAlreadyExistsFault extends __BaseException {
1723
1731
  readonly name: "DBProxyAlreadyExistsFault";
@@ -1743,9 +1751,9 @@ export interface CreateDBProxyEndpointRequest {
1743
1751
  DBProxyName: string | undefined;
1744
1752
  DBProxyEndpointName: string | undefined;
1745
1753
  VpcSubnetIds: string[] | undefined;
1746
- VpcSecurityGroupIds?: string[];
1747
- TargetRole?: DBProxyEndpointTargetRole;
1748
- Tags?: Tag[];
1754
+ VpcSecurityGroupIds?: string[] | undefined;
1755
+ TargetRole?: DBProxyEndpointTargetRole | undefined;
1756
+ Tags?: Tag[] | undefined;
1749
1757
  }
1750
1758
  export declare const DBProxyEndpointStatus: {
1751
1759
  readonly AVAILABLE: "available";
@@ -1758,20 +1766,20 @@ export declare const DBProxyEndpointStatus: {
1758
1766
  export type DBProxyEndpointStatus =
1759
1767
  (typeof DBProxyEndpointStatus)[keyof typeof DBProxyEndpointStatus];
1760
1768
  export interface DBProxyEndpoint {
1761
- DBProxyEndpointName?: string;
1762
- DBProxyEndpointArn?: string;
1763
- DBProxyName?: string;
1764
- Status?: DBProxyEndpointStatus;
1765
- VpcId?: string;
1766
- VpcSecurityGroupIds?: string[];
1767
- VpcSubnetIds?: string[];
1768
- Endpoint?: string;
1769
- CreatedDate?: Date;
1770
- TargetRole?: DBProxyEndpointTargetRole;
1771
- IsDefault?: boolean;
1769
+ DBProxyEndpointName?: string | undefined;
1770
+ DBProxyEndpointArn?: string | undefined;
1771
+ DBProxyName?: string | undefined;
1772
+ Status?: DBProxyEndpointStatus | undefined;
1773
+ VpcId?: string | undefined;
1774
+ VpcSecurityGroupIds?: string[] | undefined;
1775
+ VpcSubnetIds?: string[] | undefined;
1776
+ Endpoint?: string | undefined;
1777
+ CreatedDate?: Date | undefined;
1778
+ TargetRole?: DBProxyEndpointTargetRole | undefined;
1779
+ IsDefault?: boolean | undefined;
1772
1780
  }
1773
1781
  export interface CreateDBProxyEndpointResponse {
1774
- DBProxyEndpoint?: DBProxyEndpoint;
1782
+ DBProxyEndpoint?: DBProxyEndpoint | undefined;
1775
1783
  }
1776
1784
  export declare class DBProxyEndpointAlreadyExistsFault extends __BaseException {
1777
1785
  readonly name: "DBProxyEndpointAlreadyExistsFault";
@@ -1803,10 +1811,10 @@ export declare class InvalidDBProxyStateFault extends __BaseException {
1803
1811
  export interface CreateDBSecurityGroupMessage {
1804
1812
  DBSecurityGroupName: string | undefined;
1805
1813
  DBSecurityGroupDescription: string | undefined;
1806
- Tags?: Tag[];
1814
+ Tags?: Tag[] | undefined;
1807
1815
  }
1808
1816
  export interface CreateDBSecurityGroupResult {
1809
- DBSecurityGroup?: DBSecurityGroup;
1817
+ DBSecurityGroup?: DBSecurityGroup | undefined;
1810
1818
  }
1811
1819
  export declare class DBSecurityGroupAlreadyExistsFault extends __BaseException {
1812
1820
  readonly name: "DBSecurityGroupAlreadyExistsFault";
@@ -1841,24 +1849,24 @@ export declare class DBSecurityGroupQuotaExceededFault extends __BaseException {
1841
1849
  export interface CreateDBShardGroupMessage {
1842
1850
  DBShardGroupIdentifier: string | undefined;
1843
1851
  DBClusterIdentifier: string | undefined;
1844
- ComputeRedundancy?: number;
1852
+ ComputeRedundancy?: number | undefined;
1845
1853
  MaxACU: number | undefined;
1846
- MinACU?: number;
1847
- PubliclyAccessible?: boolean;
1848
- Tags?: Tag[];
1854
+ MinACU?: number | undefined;
1855
+ PubliclyAccessible?: boolean | undefined;
1856
+ Tags?: Tag[] | undefined;
1849
1857
  }
1850
1858
  export interface DBShardGroup {
1851
- DBShardGroupResourceId?: string;
1852
- DBShardGroupIdentifier?: string;
1853
- DBClusterIdentifier?: string;
1854
- MaxACU?: number;
1855
- MinACU?: number;
1856
- ComputeRedundancy?: number;
1857
- Status?: string;
1858
- PubliclyAccessible?: boolean;
1859
- Endpoint?: string;
1860
- DBShardGroupArn?: string;
1861
- TagList?: Tag[];
1859
+ DBShardGroupResourceId?: string | undefined;
1860
+ DBShardGroupIdentifier?: string | undefined;
1861
+ DBClusterIdentifier?: string | undefined;
1862
+ MaxACU?: number | undefined;
1863
+ MinACU?: number | undefined;
1864
+ ComputeRedundancy?: number | undefined;
1865
+ Status?: string | undefined;
1866
+ PubliclyAccessible?: boolean | undefined;
1867
+ Endpoint?: string | undefined;
1868
+ DBShardGroupArn?: string | undefined;
1869
+ TagList?: Tag[] | undefined;
1862
1870
  }
1863
1871
  export declare class DBShardGroupAlreadyExistsFault extends __BaseException {
1864
1872
  readonly name: "DBShardGroupAlreadyExistsFault";
@@ -1887,19 +1895,19 @@ export declare class UnsupportedDBEngineVersionFault extends __BaseException {
1887
1895
  export interface CreateDBSnapshotMessage {
1888
1896
  DBSnapshotIdentifier: string | undefined;
1889
1897
  DBInstanceIdentifier: string | undefined;
1890
- Tags?: Tag[];
1898
+ Tags?: Tag[] | undefined;
1891
1899
  }
1892
1900
  export interface CreateDBSnapshotResult {
1893
- DBSnapshot?: DBSnapshot;
1901
+ DBSnapshot?: DBSnapshot | undefined;
1894
1902
  }
1895
1903
  export interface CreateDBSubnetGroupMessage {
1896
1904
  DBSubnetGroupName: string | undefined;
1897
1905
  DBSubnetGroupDescription: string | undefined;
1898
1906
  SubnetIds: string[] | undefined;
1899
- Tags?: Tag[];
1907
+ Tags?: Tag[] | undefined;
1900
1908
  }
1901
1909
  export interface CreateDBSubnetGroupResult {
1902
- DBSubnetGroup?: DBSubnetGroup;
1910
+ DBSubnetGroup?: DBSubnetGroup | undefined;
1903
1911
  }
1904
1912
  export declare class DBSubnetGroupAlreadyExistsFault extends __BaseException {
1905
1913
  readonly name: "DBSubnetGroupAlreadyExistsFault";
@@ -1931,14 +1939,14 @@ export declare class DBSubnetQuotaExceededFault extends __BaseException {
1931
1939
  export interface CreateEventSubscriptionMessage {
1932
1940
  SubscriptionName: string | undefined;
1933
1941
  SnsTopicArn: string | undefined;
1934
- SourceType?: string;
1935
- EventCategories?: string[];
1936
- SourceIds?: string[];
1937
- Enabled?: boolean;
1938
- Tags?: Tag[];
1942
+ SourceType?: string | undefined;
1943
+ EventCategories?: string[] | undefined;
1944
+ SourceIds?: string[] | undefined;
1945
+ Enabled?: boolean | undefined;
1946
+ Tags?: Tag[] | undefined;
1939
1947
  }
1940
1948
  export interface CreateEventSubscriptionResult {
1941
- EventSubscription?: EventSubscription;
1949
+ EventSubscription?: EventSubscription | undefined;
1942
1950
  }
1943
1951
  export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
1944
1952
  readonly name: "EventSubscriptionQuotaExceededFault";
@@ -1989,15 +1997,15 @@ export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
1989
1997
  );
1990
1998
  }
1991
1999
  export interface CreateGlobalClusterMessage {
1992
- GlobalClusterIdentifier?: string;
1993
- SourceDBClusterIdentifier?: string;
1994
- Engine?: string;
1995
- EngineVersion?: string;
1996
- EngineLifecycleSupport?: string;
1997
- DeletionProtection?: boolean;
1998
- DatabaseName?: string;
1999
- StorageEncrypted?: boolean;
2000
- Tags?: Tag[];
2000
+ GlobalClusterIdentifier?: string | undefined;
2001
+ SourceDBClusterIdentifier?: string | undefined;
2002
+ Engine?: string | undefined;
2003
+ EngineVersion?: string | undefined;
2004
+ EngineLifecycleSupport?: string | undefined;
2005
+ DeletionProtection?: boolean | undefined;
2006
+ DatabaseName?: string | undefined;
2007
+ StorageEncrypted?: boolean | undefined;
2008
+ Tags?: Tag[] | undefined;
2001
2009
  }
2002
2010
  export declare const FailoverStatus: {
2003
2011
  readonly CANCELLING: "cancelling";
@@ -2007,10 +2015,10 @@ export declare const FailoverStatus: {
2007
2015
  export type FailoverStatus =
2008
2016
  (typeof FailoverStatus)[keyof typeof FailoverStatus];
2009
2017
  export interface FailoverState {
2010
- Status?: FailoverStatus;
2011
- FromDbClusterArn?: string;
2012
- ToDbClusterArn?: string;
2013
- IsDataLossAllowed?: boolean;
2018
+ Status?: FailoverStatus | undefined;
2019
+ FromDbClusterArn?: string | undefined;
2020
+ ToDbClusterArn?: string | undefined;
2021
+ IsDataLossAllowed?: boolean | undefined;
2014
2022
  }
2015
2023
  export declare const GlobalClusterMemberSynchronizationStatus: {
2016
2024
  readonly CONNECTED: "connected";
@@ -2019,30 +2027,30 @@ export declare const GlobalClusterMemberSynchronizationStatus: {
2019
2027
  export type GlobalClusterMemberSynchronizationStatus =
2020
2028
  (typeof GlobalClusterMemberSynchronizationStatus)[keyof typeof GlobalClusterMemberSynchronizationStatus];
2021
2029
  export interface GlobalClusterMember {
2022
- DBClusterArn?: string;
2023
- Readers?: string[];
2024
- IsWriter?: boolean;
2025
- GlobalWriteForwardingStatus?: WriteForwardingStatus;
2026
- SynchronizationStatus?: GlobalClusterMemberSynchronizationStatus;
2030
+ DBClusterArn?: string | undefined;
2031
+ Readers?: string[] | undefined;
2032
+ IsWriter?: boolean | undefined;
2033
+ GlobalWriteForwardingStatus?: WriteForwardingStatus | undefined;
2034
+ SynchronizationStatus?: GlobalClusterMemberSynchronizationStatus | undefined;
2027
2035
  }
2028
2036
  export interface GlobalCluster {
2029
- GlobalClusterIdentifier?: string;
2030
- GlobalClusterResourceId?: string;
2031
- GlobalClusterArn?: string;
2032
- Status?: string;
2033
- Engine?: string;
2034
- EngineVersion?: string;
2035
- EngineLifecycleSupport?: string;
2036
- DatabaseName?: string;
2037
- StorageEncrypted?: boolean;
2038
- DeletionProtection?: boolean;
2039
- GlobalClusterMembers?: GlobalClusterMember[];
2040
- Endpoint?: string;
2041
- FailoverState?: FailoverState;
2042
- TagList?: Tag[];
2037
+ GlobalClusterIdentifier?: string | undefined;
2038
+ GlobalClusterResourceId?: string | undefined;
2039
+ GlobalClusterArn?: string | undefined;
2040
+ Status?: string | undefined;
2041
+ Engine?: string | undefined;
2042
+ EngineVersion?: string | undefined;
2043
+ EngineLifecycleSupport?: string | undefined;
2044
+ DatabaseName?: string | undefined;
2045
+ StorageEncrypted?: boolean | undefined;
2046
+ DeletionProtection?: boolean | undefined;
2047
+ GlobalClusterMembers?: GlobalClusterMember[] | undefined;
2048
+ Endpoint?: string | undefined;
2049
+ FailoverState?: FailoverState | undefined;
2050
+ TagList?: Tag[] | undefined;
2043
2051
  }
2044
2052
  export interface CreateGlobalClusterResult {
2045
- GlobalCluster?: GlobalCluster;
2053
+ GlobalCluster?: GlobalCluster | undefined;
2046
2054
  }
2047
2055
  export declare class GlobalClusterAlreadyExistsFault extends __BaseException {
2048
2056
  readonly name: "GlobalClusterAlreadyExistsFault";
@@ -2068,15 +2076,15 @@ export interface CreateIntegrationMessage {
2068
2076
  SourceArn: string | undefined;
2069
2077
  TargetArn: string | undefined;
2070
2078
  IntegrationName: string | undefined;
2071
- KMSKeyId?: string;
2072
- AdditionalEncryptionContext?: Record<string, string>;
2073
- Tags?: Tag[];
2074
- DataFilter?: string;
2075
- Description?: string;
2079
+ KMSKeyId?: string | undefined;
2080
+ AdditionalEncryptionContext?: Record<string, string> | undefined;
2081
+ Tags?: Tag[] | undefined;
2082
+ DataFilter?: string | undefined;
2083
+ Description?: string | undefined;
2076
2084
  }
2077
2085
  export interface IntegrationError {
2078
2086
  ErrorCode: string | undefined;
2079
- ErrorMessage?: string;
2087
+ ErrorMessage?: string | undefined;
2080
2088
  }
2081
2089
  export declare const IntegrationStatus: {
2082
2090
  readonly ACTIVE: "active";
@@ -2090,18 +2098,18 @@ export declare const IntegrationStatus: {
2090
2098
  export type IntegrationStatus =
2091
2099
  (typeof IntegrationStatus)[keyof typeof IntegrationStatus];
2092
2100
  export interface Integration {
2093
- SourceArn?: string;
2094
- TargetArn?: string;
2095
- IntegrationName?: string;
2096
- IntegrationArn?: string;
2097
- KMSKeyId?: string;
2098
- AdditionalEncryptionContext?: Record<string, string>;
2099
- Status?: IntegrationStatus;
2100
- Tags?: Tag[];
2101
- CreateTime?: Date;
2102
- Errors?: IntegrationError[];
2103
- DataFilter?: string;
2104
- Description?: string;
2101
+ SourceArn?: string | undefined;
2102
+ TargetArn?: string | undefined;
2103
+ IntegrationName?: string | undefined;
2104
+ IntegrationArn?: string | undefined;
2105
+ KMSKeyId?: string | undefined;
2106
+ AdditionalEncryptionContext?: Record<string, string> | undefined;
2107
+ Status?: IntegrationStatus | undefined;
2108
+ Tags?: Tag[] | undefined;
2109
+ CreateTime?: Date | undefined;
2110
+ Errors?: IntegrationError[] | undefined;
2111
+ DataFilter?: string | undefined;
2112
+ Description?: string | undefined;
2105
2113
  }
2106
2114
  export declare class IntegrationAlreadyExistsFault extends __BaseException {
2107
2115
  readonly name: "IntegrationAlreadyExistsFault";
@@ -2132,41 +2140,41 @@ export interface CreateOptionGroupMessage {
2132
2140
  EngineName: string | undefined;
2133
2141
  MajorEngineVersion: string | undefined;
2134
2142
  OptionGroupDescription: string | undefined;
2135
- Tags?: Tag[];
2143
+ Tags?: Tag[] | undefined;
2136
2144
  }
2137
2145
  export interface CreateOptionGroupResult {
2138
- OptionGroup?: OptionGroup;
2146
+ OptionGroup?: OptionGroup | undefined;
2139
2147
  }
2140
2148
  export interface CreateTenantDatabaseMessage {
2141
2149
  DBInstanceIdentifier: string | undefined;
2142
2150
  TenantDBName: string | undefined;
2143
2151
  MasterUsername: string | undefined;
2144
2152
  MasterUserPassword: string | undefined;
2145
- CharacterSetName?: string;
2146
- NcharCharacterSetName?: string;
2147
- Tags?: Tag[];
2153
+ CharacterSetName?: string | undefined;
2154
+ NcharCharacterSetName?: string | undefined;
2155
+ Tags?: Tag[] | undefined;
2148
2156
  }
2149
2157
  export interface TenantDatabasePendingModifiedValues {
2150
- MasterUserPassword?: string;
2151
- TenantDBName?: string;
2158
+ MasterUserPassword?: string | undefined;
2159
+ TenantDBName?: string | undefined;
2152
2160
  }
2153
2161
  export interface TenantDatabase {
2154
- TenantDatabaseCreateTime?: Date;
2155
- DBInstanceIdentifier?: string;
2156
- TenantDBName?: string;
2157
- Status?: string;
2158
- MasterUsername?: string;
2159
- DbiResourceId?: string;
2160
- TenantDatabaseResourceId?: string;
2161
- TenantDatabaseARN?: string;
2162
- CharacterSetName?: string;
2163
- NcharCharacterSetName?: string;
2164
- DeletionProtection?: boolean;
2165
- PendingModifiedValues?: TenantDatabasePendingModifiedValues;
2166
- TagList?: Tag[];
2162
+ TenantDatabaseCreateTime?: Date | undefined;
2163
+ DBInstanceIdentifier?: string | undefined;
2164
+ TenantDBName?: string | undefined;
2165
+ Status?: string | undefined;
2166
+ MasterUsername?: string | undefined;
2167
+ DbiResourceId?: string | undefined;
2168
+ TenantDatabaseResourceId?: string | undefined;
2169
+ TenantDatabaseARN?: string | undefined;
2170
+ CharacterSetName?: string | undefined;
2171
+ NcharCharacterSetName?: string | undefined;
2172
+ DeletionProtection?: boolean | undefined;
2173
+ PendingModifiedValues?: TenantDatabasePendingModifiedValues | undefined;
2174
+ TagList?: Tag[] | undefined;
2167
2175
  }
2168
2176
  export interface CreateTenantDatabaseResult {
2169
- TenantDatabase?: TenantDatabase;
2177
+ TenantDatabase?: TenantDatabase | undefined;
2170
2178
  }
2171
2179
  export declare class TenantDatabaseAlreadyExistsFault extends __BaseException {
2172
2180
  readonly name: "TenantDatabaseAlreadyExistsFault";
@@ -2180,10 +2188,10 @@ export declare class TenantDatabaseAlreadyExistsFault extends __BaseException {
2180
2188
  }
2181
2189
  export interface DeleteBlueGreenDeploymentRequest {
2182
2190
  BlueGreenDeploymentIdentifier: string | undefined;
2183
- DeleteTarget?: boolean;
2191
+ DeleteTarget?: boolean | undefined;
2184
2192
  }
2185
2193
  export interface DeleteBlueGreenDeploymentResponse {
2186
- BlueGreenDeployment?: BlueGreenDeployment;
2194
+ BlueGreenDeployment?: BlueGreenDeployment | undefined;
2187
2195
  }
2188
2196
  export declare class InvalidBlueGreenDeploymentStateFault extends __BaseException {
2189
2197
  readonly name: "InvalidBlueGreenDeploymentStateFault";
@@ -2231,12 +2239,12 @@ export declare class DBClusterAutomatedBackupQuotaExceededFault extends __BaseEx
2231
2239
  }
2232
2240
  export interface DeleteDBClusterMessage {
2233
2241
  DBClusterIdentifier: string | undefined;
2234
- SkipFinalSnapshot?: boolean;
2235
- FinalDBSnapshotIdentifier?: string;
2236
- DeleteAutomatedBackups?: boolean;
2242
+ SkipFinalSnapshot?: boolean | undefined;
2243
+ FinalDBSnapshotIdentifier?: string | undefined;
2244
+ DeleteAutomatedBackups?: boolean | undefined;
2237
2245
  }
2238
2246
  export interface DeleteDBClusterResult {
2239
- DBCluster?: DBCluster;
2247
+ DBCluster?: DBCluster | undefined;
2240
2248
  }
2241
2249
  export declare class DBClusterAutomatedBackupNotFoundFault extends __BaseException {
2242
2250
  readonly name: "DBClusterAutomatedBackupNotFoundFault";
@@ -2252,38 +2260,38 @@ export interface DeleteDBClusterAutomatedBackupMessage {
2252
2260
  DbClusterResourceId: string | undefined;
2253
2261
  }
2254
2262
  export interface RestoreWindow {
2255
- EarliestTime?: Date;
2256
- LatestTime?: Date;
2263
+ EarliestTime?: Date | undefined;
2264
+ LatestTime?: Date | undefined;
2257
2265
  }
2258
2266
  export interface DBClusterAutomatedBackup {
2259
- Engine?: string;
2260
- VpcId?: string;
2261
- DBClusterAutomatedBackupsArn?: string;
2262
- DBClusterIdentifier?: string;
2263
- RestoreWindow?: RestoreWindow;
2264
- MasterUsername?: string;
2265
- DbClusterResourceId?: string;
2266
- Region?: string;
2267
- LicenseModel?: string;
2268
- Status?: string;
2269
- IAMDatabaseAuthenticationEnabled?: boolean;
2270
- ClusterCreateTime?: Date;
2271
- StorageEncrypted?: boolean;
2272
- AllocatedStorage?: number;
2273
- EngineVersion?: string;
2274
- DBClusterArn?: string;
2275
- BackupRetentionPeriod?: number;
2276
- EngineMode?: string;
2277
- AvailabilityZones?: string[];
2278
- Port?: number;
2279
- KmsKeyId?: string;
2280
- StorageType?: string;
2281
- Iops?: number;
2282
- AwsBackupRecoveryPointArn?: string;
2283
- StorageThroughput?: number;
2267
+ Engine?: string | undefined;
2268
+ VpcId?: string | undefined;
2269
+ DBClusterAutomatedBackupsArn?: string | undefined;
2270
+ DBClusterIdentifier?: string | undefined;
2271
+ RestoreWindow?: RestoreWindow | undefined;
2272
+ MasterUsername?: string | undefined;
2273
+ DbClusterResourceId?: string | undefined;
2274
+ Region?: string | undefined;
2275
+ LicenseModel?: string | undefined;
2276
+ Status?: string | undefined;
2277
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
2278
+ ClusterCreateTime?: Date | undefined;
2279
+ StorageEncrypted?: boolean | undefined;
2280
+ AllocatedStorage?: number | undefined;
2281
+ EngineVersion?: string | undefined;
2282
+ DBClusterArn?: string | undefined;
2283
+ BackupRetentionPeriod?: number | undefined;
2284
+ EngineMode?: string | undefined;
2285
+ AvailabilityZones?: string[] | undefined;
2286
+ Port?: number | undefined;
2287
+ KmsKeyId?: string | undefined;
2288
+ StorageType?: string | undefined;
2289
+ Iops?: number | undefined;
2290
+ AwsBackupRecoveryPointArn?: string | undefined;
2291
+ StorageThroughput?: number | undefined;
2284
2292
  }
2285
2293
  export interface DeleteDBClusterAutomatedBackupResult {
2286
- DBClusterAutomatedBackup?: DBClusterAutomatedBackup;
2294
+ DBClusterAutomatedBackup?: DBClusterAutomatedBackup | undefined;
2287
2295
  }
2288
2296
  export declare class InvalidDBClusterAutomatedBackupStateFault extends __BaseException {
2289
2297
  readonly name: "InvalidDBClusterAutomatedBackupStateFault";
@@ -2332,7 +2340,7 @@ export interface DeleteDBClusterSnapshotMessage {
2332
2340
  DBClusterSnapshotIdentifier: string | undefined;
2333
2341
  }
2334
2342
  export interface DeleteDBClusterSnapshotResult {
2335
- DBClusterSnapshot?: DBClusterSnapshot;
2343
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
2336
2344
  }
2337
2345
  export declare class DBInstanceAutomatedBackupQuotaExceededFault extends __BaseException {
2338
2346
  readonly name: "DBInstanceAutomatedBackupQuotaExceededFault";
@@ -2346,12 +2354,12 @@ export declare class DBInstanceAutomatedBackupQuotaExceededFault extends __BaseE
2346
2354
  }
2347
2355
  export interface DeleteDBInstanceMessage {
2348
2356
  DBInstanceIdentifier: string | undefined;
2349
- SkipFinalSnapshot?: boolean;
2350
- FinalDBSnapshotIdentifier?: string;
2351
- DeleteAutomatedBackups?: boolean;
2357
+ SkipFinalSnapshot?: boolean | undefined;
2358
+ FinalDBSnapshotIdentifier?: string | undefined;
2359
+ DeleteAutomatedBackups?: boolean | undefined;
2352
2360
  }
2353
2361
  export interface DeleteDBInstanceResult {
2354
- DBInstance?: DBInstance;
2362
+ DBInstance?: DBInstance | undefined;
2355
2363
  }
2356
2364
  export declare class DBInstanceAutomatedBackupNotFoundFault extends __BaseException {
2357
2365
  readonly name: "DBInstanceAutomatedBackupNotFoundFault";
@@ -2364,44 +2372,46 @@ export declare class DBInstanceAutomatedBackupNotFoundFault extends __BaseExcept
2364
2372
  );
2365
2373
  }
2366
2374
  export interface DeleteDBInstanceAutomatedBackupMessage {
2367
- DbiResourceId?: string;
2368
- DBInstanceAutomatedBackupsArn?: string;
2375
+ DbiResourceId?: string | undefined;
2376
+ DBInstanceAutomatedBackupsArn?: string | undefined;
2369
2377
  }
2370
2378
  export interface DBInstanceAutomatedBackup {
2371
- DBInstanceArn?: string;
2372
- DbiResourceId?: string;
2373
- Region?: string;
2374
- DBInstanceIdentifier?: string;
2375
- RestoreWindow?: RestoreWindow;
2376
- AllocatedStorage?: number;
2377
- Status?: string;
2378
- Port?: number;
2379
- AvailabilityZone?: string;
2380
- VpcId?: string;
2381
- InstanceCreateTime?: Date;
2382
- MasterUsername?: string;
2383
- Engine?: string;
2384
- EngineVersion?: string;
2385
- LicenseModel?: string;
2386
- Iops?: number;
2387
- OptionGroupName?: string;
2388
- TdeCredentialArn?: string;
2389
- Encrypted?: boolean;
2390
- StorageType?: string;
2391
- KmsKeyId?: string;
2392
- Timezone?: string;
2393
- IAMDatabaseAuthenticationEnabled?: boolean;
2394
- BackupRetentionPeriod?: number;
2395
- DBInstanceAutomatedBackupsArn?: string;
2396
- DBInstanceAutomatedBackupsReplications?: DBInstanceAutomatedBackupsReplication[];
2397
- BackupTarget?: string;
2398
- StorageThroughput?: number;
2399
- AwsBackupRecoveryPointArn?: string;
2400
- DedicatedLogVolume?: boolean;
2401
- MultiTenant?: boolean;
2379
+ DBInstanceArn?: string | undefined;
2380
+ DbiResourceId?: string | undefined;
2381
+ Region?: string | undefined;
2382
+ DBInstanceIdentifier?: string | undefined;
2383
+ RestoreWindow?: RestoreWindow | undefined;
2384
+ AllocatedStorage?: number | undefined;
2385
+ Status?: string | undefined;
2386
+ Port?: number | undefined;
2387
+ AvailabilityZone?: string | undefined;
2388
+ VpcId?: string | undefined;
2389
+ InstanceCreateTime?: Date | undefined;
2390
+ MasterUsername?: string | undefined;
2391
+ Engine?: string | undefined;
2392
+ EngineVersion?: string | undefined;
2393
+ LicenseModel?: string | undefined;
2394
+ Iops?: number | undefined;
2395
+ OptionGroupName?: string | undefined;
2396
+ TdeCredentialArn?: string | undefined;
2397
+ Encrypted?: boolean | undefined;
2398
+ StorageType?: string | undefined;
2399
+ KmsKeyId?: string | undefined;
2400
+ Timezone?: string | undefined;
2401
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
2402
+ BackupRetentionPeriod?: number | undefined;
2403
+ DBInstanceAutomatedBackupsArn?: string | undefined;
2404
+ DBInstanceAutomatedBackupsReplications?:
2405
+ | DBInstanceAutomatedBackupsReplication[]
2406
+ | undefined;
2407
+ BackupTarget?: string | undefined;
2408
+ StorageThroughput?: number | undefined;
2409
+ AwsBackupRecoveryPointArn?: string | undefined;
2410
+ DedicatedLogVolume?: boolean | undefined;
2411
+ MultiTenant?: boolean | undefined;
2402
2412
  }
2403
2413
  export interface DeleteDBInstanceAutomatedBackupResult {
2404
- DBInstanceAutomatedBackup?: DBInstanceAutomatedBackup;
2414
+ DBInstanceAutomatedBackup?: DBInstanceAutomatedBackup | undefined;
2405
2415
  }
2406
2416
  export declare class InvalidDBInstanceAutomatedBackupStateFault extends __BaseException {
2407
2417
  readonly name: "InvalidDBInstanceAutomatedBackupStateFault";
@@ -2420,7 +2430,7 @@ export interface DeleteDBProxyRequest {
2420
2430
  DBProxyName: string | undefined;
2421
2431
  }
2422
2432
  export interface DeleteDBProxyResponse {
2423
- DBProxy?: DBProxy;
2433
+ DBProxy?: DBProxy | undefined;
2424
2434
  }
2425
2435
  export declare class DBProxyEndpointNotFoundFault extends __BaseException {
2426
2436
  readonly name: "DBProxyEndpointNotFoundFault";
@@ -2433,7 +2443,7 @@ export interface DeleteDBProxyEndpointRequest {
2433
2443
  DBProxyEndpointName: string | undefined;
2434
2444
  }
2435
2445
  export interface DeleteDBProxyEndpointResponse {
2436
- DBProxyEndpoint?: DBProxyEndpoint;
2446
+ DBProxyEndpoint?: DBProxyEndpoint | undefined;
2437
2447
  }
2438
2448
  export declare class InvalidDBProxyEndpointStateFault extends __BaseException {
2439
2449
  readonly name: "InvalidDBProxyEndpointStateFault";
@@ -2469,7 +2479,7 @@ export interface DeleteDBSnapshotMessage {
2469
2479
  DBSnapshotIdentifier: string | undefined;
2470
2480
  }
2471
2481
  export interface DeleteDBSnapshotResult {
2472
- DBSnapshot?: DBSnapshot;
2482
+ DBSnapshot?: DBSnapshot | undefined;
2473
2483
  }
2474
2484
  export interface DeleteDBSubnetGroupMessage {
2475
2485
  DBSubnetGroupName: string | undefined;
@@ -2485,7 +2495,7 @@ export interface DeleteEventSubscriptionMessage {
2485
2495
  SubscriptionName: string | undefined;
2486
2496
  }
2487
2497
  export interface DeleteEventSubscriptionResult {
2488
- EventSubscription?: EventSubscription;
2498
+ EventSubscription?: EventSubscription | undefined;
2489
2499
  }
2490
2500
  export declare class InvalidEventSubscriptionStateFault extends __BaseException {
2491
2501
  readonly name: "InvalidEventSubscriptionStateFault";
@@ -2501,7 +2511,7 @@ export interface DeleteGlobalClusterMessage {
2501
2511
  GlobalClusterIdentifier: string | undefined;
2502
2512
  }
2503
2513
  export interface DeleteGlobalClusterResult {
2504
- GlobalCluster?: GlobalCluster;
2514
+ GlobalCluster?: GlobalCluster | undefined;
2505
2515
  }
2506
2516
  export interface DeleteIntegrationMessage {
2507
2517
  IntegrationIdentifier: string | undefined;
@@ -2526,8 +2536,8 @@ export declare class InvalidOptionGroupStateFault extends __BaseException {
2526
2536
  export interface DeleteTenantDatabaseMessage {
2527
2537
  DBInstanceIdentifier: string | undefined;
2528
2538
  TenantDBName: string | undefined;
2529
- SkipFinalSnapshot?: boolean;
2530
- FinalDBSnapshotIdentifier?: string;
2539
+ SkipFinalSnapshot?: boolean | undefined;
2540
+ FinalDBSnapshotIdentifier?: string | undefined;
2531
2541
  }
2532
2542
  export declare const CreateTenantDatabaseMessageFilterSensitiveLog: (
2533
2543
  obj: CreateTenantDatabaseMessage