@aws-sdk/client-docdb 3.687.0 → 3.692.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.
@@ -5,19 +5,19 @@ export interface AddSourceIdentifierToSubscriptionMessage {
5
5
  SourceIdentifier: string | undefined;
6
6
  }
7
7
  export interface EventSubscription {
8
- CustomerAwsId?: string;
9
- CustSubscriptionId?: string;
10
- SnsTopicArn?: string;
11
- Status?: string;
12
- SubscriptionCreationTime?: string;
13
- SourceType?: string;
14
- SourceIdsList?: string[];
15
- EventCategoriesList?: string[];
16
- Enabled?: boolean;
17
- EventSubscriptionArn?: string;
8
+ CustomerAwsId?: string | undefined;
9
+ CustSubscriptionId?: string | undefined;
10
+ SnsTopicArn?: string | undefined;
11
+ Status?: string | undefined;
12
+ SubscriptionCreationTime?: string | undefined;
13
+ SourceType?: string | undefined;
14
+ SourceIdsList?: string[] | undefined;
15
+ EventCategoriesList?: string[] | undefined;
16
+ Enabled?: boolean | undefined;
17
+ EventSubscriptionArn?: string | undefined;
18
18
  }
19
19
  export interface AddSourceIdentifierToSubscriptionResult {
20
- EventSubscription?: EventSubscription;
20
+ EventSubscription?: EventSubscription | undefined;
21
21
  }
22
22
  export declare class SourceNotFoundFault extends __BaseException {
23
23
  readonly name: "SourceNotFoundFault";
@@ -34,8 +34,8 @@ export declare class SubscriptionNotFoundFault extends __BaseException {
34
34
  );
35
35
  }
36
36
  export interface Tag {
37
- Key?: string;
38
- Value?: string;
37
+ Key?: string | undefined;
38
+ Value?: string | undefined;
39
39
  }
40
40
  export interface AddTagsToResourceMessage {
41
41
  ResourceName: string | undefined;
@@ -68,19 +68,21 @@ export interface ApplyPendingMaintenanceActionMessage {
68
68
  OptInType: string | undefined;
69
69
  }
70
70
  export interface PendingMaintenanceAction {
71
- Action?: string;
72
- AutoAppliedAfterDate?: Date;
73
- ForcedApplyDate?: Date;
74
- OptInStatus?: string;
75
- CurrentApplyDate?: Date;
76
- Description?: string;
71
+ Action?: string | undefined;
72
+ AutoAppliedAfterDate?: Date | undefined;
73
+ ForcedApplyDate?: Date | undefined;
74
+ OptInStatus?: string | undefined;
75
+ CurrentApplyDate?: Date | undefined;
76
+ Description?: string | undefined;
77
77
  }
78
78
  export interface ResourcePendingMaintenanceActions {
79
- ResourceIdentifier?: string;
80
- PendingMaintenanceActionDetails?: PendingMaintenanceAction[];
79
+ ResourceIdentifier?: string | undefined;
80
+ PendingMaintenanceActionDetails?: PendingMaintenanceAction[] | undefined;
81
81
  }
82
82
  export interface ApplyPendingMaintenanceActionResult {
83
- ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
83
+ ResourcePendingMaintenanceActions?:
84
+ | ResourcePendingMaintenanceActions
85
+ | undefined;
84
86
  }
85
87
  export declare class InvalidDBClusterStateFault extends __BaseException {
86
88
  readonly name: "InvalidDBClusterStateFault";
@@ -107,16 +109,16 @@ export interface CopyDBClusterParameterGroupMessage {
107
109
  SourceDBClusterParameterGroupIdentifier: string | undefined;
108
110
  TargetDBClusterParameterGroupIdentifier: string | undefined;
109
111
  TargetDBClusterParameterGroupDescription: string | undefined;
110
- Tags?: Tag[];
112
+ Tags?: Tag[] | undefined;
111
113
  }
112
114
  export interface DBClusterParameterGroup {
113
- DBClusterParameterGroupName?: string;
114
- DBParameterGroupFamily?: string;
115
- Description?: string;
116
- DBClusterParameterGroupArn?: string;
115
+ DBClusterParameterGroupName?: string | undefined;
116
+ DBParameterGroupFamily?: string | undefined;
117
+ Description?: string | undefined;
118
+ DBClusterParameterGroupArn?: string | undefined;
117
119
  }
118
120
  export interface CopyDBClusterParameterGroupResult {
119
- DBClusterParameterGroup?: DBClusterParameterGroup;
121
+ DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
120
122
  }
121
123
  export declare class DBParameterGroupAlreadyExistsFault extends __BaseException {
122
124
  readonly name: "DBParameterGroupAlreadyExistsFault";
@@ -148,33 +150,33 @@ export declare class DBParameterGroupQuotaExceededFault extends __BaseException
148
150
  export interface CopyDBClusterSnapshotMessage {
149
151
  SourceDBClusterSnapshotIdentifier: string | undefined;
150
152
  TargetDBClusterSnapshotIdentifier: string | undefined;
151
- KmsKeyId?: string;
152
- PreSignedUrl?: string;
153
- CopyTags?: boolean;
154
- Tags?: Tag[];
153
+ KmsKeyId?: string | undefined;
154
+ PreSignedUrl?: string | undefined;
155
+ CopyTags?: boolean | undefined;
156
+ Tags?: Tag[] | undefined;
155
157
  }
156
158
  export interface DBClusterSnapshot {
157
- AvailabilityZones?: string[];
158
- DBClusterSnapshotIdentifier?: string;
159
- DBClusterIdentifier?: string;
160
- SnapshotCreateTime?: Date;
161
- Engine?: string;
162
- Status?: string;
163
- Port?: number;
164
- VpcId?: string;
165
- ClusterCreateTime?: Date;
166
- MasterUsername?: string;
167
- EngineVersion?: string;
168
- SnapshotType?: string;
169
- PercentProgress?: number;
170
- StorageEncrypted?: boolean;
171
- KmsKeyId?: string;
172
- DBClusterSnapshotArn?: string;
173
- SourceDBClusterSnapshotArn?: string;
174
- StorageType?: string;
159
+ AvailabilityZones?: string[] | undefined;
160
+ DBClusterSnapshotIdentifier?: string | undefined;
161
+ DBClusterIdentifier?: string | undefined;
162
+ SnapshotCreateTime?: Date | undefined;
163
+ Engine?: string | undefined;
164
+ Status?: string | undefined;
165
+ Port?: number | undefined;
166
+ VpcId?: string | undefined;
167
+ ClusterCreateTime?: Date | undefined;
168
+ MasterUsername?: string | undefined;
169
+ EngineVersion?: string | undefined;
170
+ SnapshotType?: string | undefined;
171
+ PercentProgress?: number | undefined;
172
+ StorageEncrypted?: boolean | undefined;
173
+ KmsKeyId?: string | undefined;
174
+ DBClusterSnapshotArn?: string | undefined;
175
+ SourceDBClusterSnapshotArn?: string | undefined;
176
+ StorageType?: string | undefined;
175
177
  }
176
178
  export interface CopyDBClusterSnapshotResult {
177
- DBClusterSnapshot?: DBClusterSnapshot;
179
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
178
180
  }
179
181
  export declare class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
180
182
  readonly name: "DBClusterSnapshotAlreadyExistsFault";
@@ -218,79 +220,79 @@ export declare class SnapshotQuotaExceededFault extends __BaseException {
218
220
  );
219
221
  }
220
222
  export interface CreateDBClusterMessage {
221
- AvailabilityZones?: string[];
222
- BackupRetentionPeriod?: number;
223
+ AvailabilityZones?: string[] | undefined;
224
+ BackupRetentionPeriod?: number | undefined;
223
225
  DBClusterIdentifier: string | undefined;
224
- DBClusterParameterGroupName?: string;
225
- VpcSecurityGroupIds?: string[];
226
- DBSubnetGroupName?: string;
226
+ DBClusterParameterGroupName?: string | undefined;
227
+ VpcSecurityGroupIds?: string[] | undefined;
228
+ DBSubnetGroupName?: string | undefined;
227
229
  Engine: string | undefined;
228
- EngineVersion?: string;
229
- Port?: number;
230
- MasterUsername?: string;
231
- MasterUserPassword?: string;
232
- PreferredBackupWindow?: string;
233
- PreferredMaintenanceWindow?: string;
234
- Tags?: Tag[];
235
- StorageEncrypted?: boolean;
236
- KmsKeyId?: string;
237
- PreSignedUrl?: string;
238
- EnableCloudwatchLogsExports?: string[];
239
- DeletionProtection?: boolean;
240
- GlobalClusterIdentifier?: string;
241
- StorageType?: string;
230
+ EngineVersion?: string | undefined;
231
+ Port?: number | undefined;
232
+ MasterUsername?: string | undefined;
233
+ MasterUserPassword?: string | undefined;
234
+ PreferredBackupWindow?: string | undefined;
235
+ PreferredMaintenanceWindow?: string | undefined;
236
+ Tags?: Tag[] | undefined;
237
+ StorageEncrypted?: boolean | undefined;
238
+ KmsKeyId?: string | undefined;
239
+ PreSignedUrl?: string | undefined;
240
+ EnableCloudwatchLogsExports?: string[] | undefined;
241
+ DeletionProtection?: boolean | undefined;
242
+ GlobalClusterIdentifier?: string | undefined;
243
+ StorageType?: string | undefined;
242
244
  }
243
245
  export interface DBClusterRole {
244
- RoleArn?: string;
245
- Status?: string;
246
+ RoleArn?: string | undefined;
247
+ Status?: string | undefined;
246
248
  }
247
249
  export interface DBClusterMember {
248
- DBInstanceIdentifier?: string;
249
- IsClusterWriter?: boolean;
250
- DBClusterParameterGroupStatus?: string;
251
- PromotionTier?: number;
250
+ DBInstanceIdentifier?: string | undefined;
251
+ IsClusterWriter?: boolean | undefined;
252
+ DBClusterParameterGroupStatus?: string | undefined;
253
+ PromotionTier?: number | undefined;
252
254
  }
253
255
  export interface VpcSecurityGroupMembership {
254
- VpcSecurityGroupId?: string;
255
- Status?: string;
256
+ VpcSecurityGroupId?: string | undefined;
257
+ Status?: string | undefined;
256
258
  }
257
259
  export interface DBCluster {
258
- AvailabilityZones?: string[];
259
- BackupRetentionPeriod?: number;
260
- DBClusterIdentifier?: string;
261
- DBClusterParameterGroup?: string;
262
- DBSubnetGroup?: string;
263
- Status?: string;
264
- PercentProgress?: string;
265
- EarliestRestorableTime?: Date;
266
- Endpoint?: string;
267
- ReaderEndpoint?: string;
268
- MultiAZ?: boolean;
269
- Engine?: string;
270
- EngineVersion?: string;
271
- LatestRestorableTime?: Date;
272
- Port?: number;
273
- MasterUsername?: string;
274
- PreferredBackupWindow?: string;
275
- PreferredMaintenanceWindow?: string;
276
- ReplicationSourceIdentifier?: string;
277
- ReadReplicaIdentifiers?: string[];
278
- DBClusterMembers?: DBClusterMember[];
279
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
280
- HostedZoneId?: string;
281
- StorageEncrypted?: boolean;
282
- KmsKeyId?: string;
283
- DbClusterResourceId?: string;
284
- DBClusterArn?: string;
285
- AssociatedRoles?: DBClusterRole[];
286
- CloneGroupId?: string;
287
- ClusterCreateTime?: Date;
288
- EnabledCloudwatchLogsExports?: string[];
289
- DeletionProtection?: boolean;
290
- StorageType?: string;
260
+ AvailabilityZones?: string[] | undefined;
261
+ BackupRetentionPeriod?: number | undefined;
262
+ DBClusterIdentifier?: string | undefined;
263
+ DBClusterParameterGroup?: string | undefined;
264
+ DBSubnetGroup?: string | undefined;
265
+ Status?: string | undefined;
266
+ PercentProgress?: string | undefined;
267
+ EarliestRestorableTime?: Date | undefined;
268
+ Endpoint?: string | undefined;
269
+ ReaderEndpoint?: string | undefined;
270
+ MultiAZ?: boolean | undefined;
271
+ Engine?: string | undefined;
272
+ EngineVersion?: string | undefined;
273
+ LatestRestorableTime?: Date | undefined;
274
+ Port?: number | undefined;
275
+ MasterUsername?: string | undefined;
276
+ PreferredBackupWindow?: string | undefined;
277
+ PreferredMaintenanceWindow?: string | undefined;
278
+ ReplicationSourceIdentifier?: string | undefined;
279
+ ReadReplicaIdentifiers?: string[] | undefined;
280
+ DBClusterMembers?: DBClusterMember[] | undefined;
281
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
282
+ HostedZoneId?: string | undefined;
283
+ StorageEncrypted?: boolean | undefined;
284
+ KmsKeyId?: string | undefined;
285
+ DbClusterResourceId?: string | undefined;
286
+ DBClusterArn?: string | undefined;
287
+ AssociatedRoles?: DBClusterRole[] | undefined;
288
+ CloneGroupId?: string | undefined;
289
+ ClusterCreateTime?: Date | undefined;
290
+ EnabledCloudwatchLogsExports?: string[] | undefined;
291
+ DeletionProtection?: boolean | undefined;
292
+ StorageType?: string | undefined;
291
293
  }
292
294
  export interface CreateDBClusterResult {
293
- DBCluster?: DBCluster;
295
+ DBCluster?: DBCluster | undefined;
294
296
  }
295
297
  export declare class DBClusterAlreadyExistsFault extends __BaseException {
296
298
  readonly name: "DBClusterAlreadyExistsFault";
@@ -387,18 +389,18 @@ export interface CreateDBClusterParameterGroupMessage {
387
389
  DBClusterParameterGroupName: string | undefined;
388
390
  DBParameterGroupFamily: string | undefined;
389
391
  Description: string | undefined;
390
- Tags?: Tag[];
392
+ Tags?: Tag[] | undefined;
391
393
  }
392
394
  export interface CreateDBClusterParameterGroupResult {
393
- DBClusterParameterGroup?: DBClusterParameterGroup;
395
+ DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
394
396
  }
395
397
  export interface CreateDBClusterSnapshotMessage {
396
398
  DBClusterSnapshotIdentifier: string | undefined;
397
399
  DBClusterIdentifier: string | undefined;
398
- Tags?: Tag[];
400
+ Tags?: Tag[] | undefined;
399
401
  }
400
402
  export interface CreateDBClusterSnapshotResult {
401
- DBClusterSnapshot?: DBClusterSnapshot;
403
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
402
404
  }
403
405
  export declare class AuthorizationNotFoundFault extends __BaseException {
404
406
  readonly name: "AuthorizationNotFoundFault";
@@ -411,102 +413,102 @@ export interface CreateDBInstanceMessage {
411
413
  DBInstanceIdentifier: string | undefined;
412
414
  DBInstanceClass: string | undefined;
413
415
  Engine: string | undefined;
414
- AvailabilityZone?: string;
415
- PreferredMaintenanceWindow?: string;
416
- AutoMinorVersionUpgrade?: boolean;
417
- Tags?: Tag[];
416
+ AvailabilityZone?: string | undefined;
417
+ PreferredMaintenanceWindow?: string | undefined;
418
+ AutoMinorVersionUpgrade?: boolean | undefined;
419
+ Tags?: Tag[] | undefined;
418
420
  DBClusterIdentifier: string | undefined;
419
- CopyTagsToSnapshot?: boolean;
420
- PromotionTier?: number;
421
- EnablePerformanceInsights?: boolean;
422
- PerformanceInsightsKMSKeyId?: string;
423
- CACertificateIdentifier?: string;
421
+ CopyTagsToSnapshot?: boolean | undefined;
422
+ PromotionTier?: number | undefined;
423
+ EnablePerformanceInsights?: boolean | undefined;
424
+ PerformanceInsightsKMSKeyId?: string | undefined;
425
+ CACertificateIdentifier?: string | undefined;
424
426
  }
425
427
  export interface CertificateDetails {
426
- CAIdentifier?: string;
427
- ValidTill?: Date;
428
+ CAIdentifier?: string | undefined;
429
+ ValidTill?: Date | undefined;
428
430
  }
429
431
  export interface AvailabilityZone {
430
- Name?: string;
432
+ Name?: string | undefined;
431
433
  }
432
434
  export interface Subnet {
433
- SubnetIdentifier?: string;
434
- SubnetAvailabilityZone?: AvailabilityZone;
435
- SubnetStatus?: string;
435
+ SubnetIdentifier?: string | undefined;
436
+ SubnetAvailabilityZone?: AvailabilityZone | undefined;
437
+ SubnetStatus?: string | undefined;
436
438
  }
437
439
  export interface DBSubnetGroup {
438
- DBSubnetGroupName?: string;
439
- DBSubnetGroupDescription?: string;
440
- VpcId?: string;
441
- SubnetGroupStatus?: string;
442
- Subnets?: Subnet[];
443
- DBSubnetGroupArn?: string;
440
+ DBSubnetGroupName?: string | undefined;
441
+ DBSubnetGroupDescription?: string | undefined;
442
+ VpcId?: string | undefined;
443
+ SubnetGroupStatus?: string | undefined;
444
+ Subnets?: Subnet[] | undefined;
445
+ DBSubnetGroupArn?: string | undefined;
444
446
  }
445
447
  export interface Endpoint {
446
- Address?: string;
447
- Port?: number;
448
- HostedZoneId?: string;
448
+ Address?: string | undefined;
449
+ Port?: number | undefined;
450
+ HostedZoneId?: string | undefined;
449
451
  }
450
452
  export interface PendingCloudwatchLogsExports {
451
- LogTypesToEnable?: string[];
452
- LogTypesToDisable?: string[];
453
+ LogTypesToEnable?: string[] | undefined;
454
+ LogTypesToDisable?: string[] | undefined;
453
455
  }
454
456
  export interface PendingModifiedValues {
455
- DBInstanceClass?: string;
456
- AllocatedStorage?: number;
457
- MasterUserPassword?: string;
458
- Port?: number;
459
- BackupRetentionPeriod?: number;
460
- MultiAZ?: boolean;
461
- EngineVersion?: string;
462
- LicenseModel?: string;
463
- Iops?: number;
464
- DBInstanceIdentifier?: string;
465
- StorageType?: string;
466
- CACertificateIdentifier?: string;
467
- DBSubnetGroupName?: string;
468
- PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
457
+ DBInstanceClass?: string | undefined;
458
+ AllocatedStorage?: number | undefined;
459
+ MasterUserPassword?: string | undefined;
460
+ Port?: number | undefined;
461
+ BackupRetentionPeriod?: number | undefined;
462
+ MultiAZ?: boolean | undefined;
463
+ EngineVersion?: string | undefined;
464
+ LicenseModel?: string | undefined;
465
+ Iops?: number | undefined;
466
+ DBInstanceIdentifier?: string | undefined;
467
+ StorageType?: string | undefined;
468
+ CACertificateIdentifier?: string | undefined;
469
+ DBSubnetGroupName?: string | undefined;
470
+ PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports | undefined;
469
471
  }
470
472
  export interface DBInstanceStatusInfo {
471
- StatusType?: string;
472
- Normal?: boolean;
473
- Status?: string;
474
- Message?: string;
473
+ StatusType?: string | undefined;
474
+ Normal?: boolean | undefined;
475
+ Status?: string | undefined;
476
+ Message?: string | undefined;
475
477
  }
476
478
  export interface DBInstance {
477
- DBInstanceIdentifier?: string;
478
- DBInstanceClass?: string;
479
- Engine?: string;
480
- DBInstanceStatus?: string;
481
- Endpoint?: Endpoint;
482
- InstanceCreateTime?: Date;
483
- PreferredBackupWindow?: string;
484
- BackupRetentionPeriod?: number;
485
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
486
- AvailabilityZone?: string;
487
- DBSubnetGroup?: DBSubnetGroup;
488
- PreferredMaintenanceWindow?: string;
489
- PendingModifiedValues?: PendingModifiedValues;
490
- LatestRestorableTime?: Date;
491
- EngineVersion?: string;
492
- AutoMinorVersionUpgrade?: boolean;
493
- PubliclyAccessible?: boolean;
494
- StatusInfos?: DBInstanceStatusInfo[];
495
- DBClusterIdentifier?: string;
496
- StorageEncrypted?: boolean;
497
- KmsKeyId?: string;
498
- DbiResourceId?: string;
499
- CACertificateIdentifier?: string;
500
- CopyTagsToSnapshot?: boolean;
501
- PromotionTier?: number;
502
- DBInstanceArn?: string;
503
- EnabledCloudwatchLogsExports?: string[];
504
- CertificateDetails?: CertificateDetails;
505
- PerformanceInsightsEnabled?: boolean;
506
- PerformanceInsightsKMSKeyId?: string;
479
+ DBInstanceIdentifier?: string | undefined;
480
+ DBInstanceClass?: string | undefined;
481
+ Engine?: string | undefined;
482
+ DBInstanceStatus?: string | undefined;
483
+ Endpoint?: Endpoint | undefined;
484
+ InstanceCreateTime?: Date | undefined;
485
+ PreferredBackupWindow?: string | undefined;
486
+ BackupRetentionPeriod?: number | undefined;
487
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
488
+ AvailabilityZone?: string | undefined;
489
+ DBSubnetGroup?: DBSubnetGroup | undefined;
490
+ PreferredMaintenanceWindow?: string | undefined;
491
+ PendingModifiedValues?: PendingModifiedValues | undefined;
492
+ LatestRestorableTime?: Date | undefined;
493
+ EngineVersion?: string | undefined;
494
+ AutoMinorVersionUpgrade?: boolean | undefined;
495
+ PubliclyAccessible?: boolean | undefined;
496
+ StatusInfos?: DBInstanceStatusInfo[] | undefined;
497
+ DBClusterIdentifier?: string | undefined;
498
+ StorageEncrypted?: boolean | undefined;
499
+ KmsKeyId?: string | undefined;
500
+ DbiResourceId?: string | undefined;
501
+ CACertificateIdentifier?: string | undefined;
502
+ CopyTagsToSnapshot?: boolean | undefined;
503
+ PromotionTier?: number | undefined;
504
+ DBInstanceArn?: string | undefined;
505
+ EnabledCloudwatchLogsExports?: string[] | undefined;
506
+ CertificateDetails?: CertificateDetails | undefined;
507
+ PerformanceInsightsEnabled?: boolean | undefined;
508
+ PerformanceInsightsKMSKeyId?: string | undefined;
507
509
  }
508
510
  export interface CreateDBInstanceResult {
509
- DBInstance?: DBInstance;
511
+ DBInstance?: DBInstance | undefined;
510
512
  }
511
513
  export declare class DBInstanceAlreadyExistsFault extends __BaseException {
512
514
  readonly name: "DBInstanceAlreadyExistsFault";
@@ -550,10 +552,10 @@ export interface CreateDBSubnetGroupMessage {
550
552
  DBSubnetGroupName: string | undefined;
551
553
  DBSubnetGroupDescription: string | undefined;
552
554
  SubnetIds: string[] | undefined;
553
- Tags?: Tag[];
555
+ Tags?: Tag[] | undefined;
554
556
  }
555
557
  export interface CreateDBSubnetGroupResult {
556
- DBSubnetGroup?: DBSubnetGroup;
558
+ DBSubnetGroup?: DBSubnetGroup | undefined;
557
559
  }
558
560
  export declare class DBSubnetGroupAlreadyExistsFault extends __BaseException {
559
561
  readonly name: "DBSubnetGroupAlreadyExistsFault";
@@ -585,14 +587,14 @@ export declare class DBSubnetQuotaExceededFault extends __BaseException {
585
587
  export interface CreateEventSubscriptionMessage {
586
588
  SubscriptionName: string | undefined;
587
589
  SnsTopicArn: string | undefined;
588
- SourceType?: string;
589
- EventCategories?: string[];
590
- SourceIds?: string[];
591
- Enabled?: boolean;
592
- Tags?: Tag[];
590
+ SourceType?: string | undefined;
591
+ EventCategories?: string[] | undefined;
592
+ SourceIds?: string[] | undefined;
593
+ Enabled?: boolean | undefined;
594
+ Tags?: Tag[] | undefined;
593
595
  }
594
596
  export interface CreateEventSubscriptionResult {
595
- EventSubscription?: EventSubscription;
597
+ EventSubscription?: EventSubscription | undefined;
596
598
  }
597
599
  export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
598
600
  readonly name: "EventSubscriptionQuotaExceededFault";
@@ -644,32 +646,32 @@ export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
644
646
  }
645
647
  export interface CreateGlobalClusterMessage {
646
648
  GlobalClusterIdentifier: string | undefined;
647
- SourceDBClusterIdentifier?: string;
648
- Engine?: string;
649
- EngineVersion?: string;
650
- DeletionProtection?: boolean;
651
- DatabaseName?: string;
652
- StorageEncrypted?: boolean;
649
+ SourceDBClusterIdentifier?: string | undefined;
650
+ Engine?: string | undefined;
651
+ EngineVersion?: string | undefined;
652
+ DeletionProtection?: boolean | undefined;
653
+ DatabaseName?: string | undefined;
654
+ StorageEncrypted?: boolean | undefined;
653
655
  }
654
656
  export interface GlobalClusterMember {
655
- DBClusterArn?: string;
656
- Readers?: string[];
657
- IsWriter?: boolean;
657
+ DBClusterArn?: string | undefined;
658
+ Readers?: string[] | undefined;
659
+ IsWriter?: boolean | undefined;
658
660
  }
659
661
  export interface GlobalCluster {
660
- GlobalClusterIdentifier?: string;
661
- GlobalClusterResourceId?: string;
662
- GlobalClusterArn?: string;
663
- Status?: string;
664
- Engine?: string;
665
- EngineVersion?: string;
666
- DatabaseName?: string;
667
- StorageEncrypted?: boolean;
668
- DeletionProtection?: boolean;
669
- GlobalClusterMembers?: GlobalClusterMember[];
662
+ GlobalClusterIdentifier?: string | undefined;
663
+ GlobalClusterResourceId?: string | undefined;
664
+ GlobalClusterArn?: string | undefined;
665
+ Status?: string | undefined;
666
+ Engine?: string | undefined;
667
+ EngineVersion?: string | undefined;
668
+ DatabaseName?: string | undefined;
669
+ StorageEncrypted?: boolean | undefined;
670
+ DeletionProtection?: boolean | undefined;
671
+ GlobalClusterMembers?: GlobalClusterMember[] | undefined;
670
672
  }
671
673
  export interface CreateGlobalClusterResult {
672
- GlobalCluster?: GlobalCluster;
674
+ GlobalCluster?: GlobalCluster | undefined;
673
675
  }
674
676
  export declare class GlobalClusterAlreadyExistsFault extends __BaseException {
675
677
  readonly name: "GlobalClusterAlreadyExistsFault";
@@ -693,11 +695,11 @@ export declare class GlobalClusterQuotaExceededFault extends __BaseException {
693
695
  }
694
696
  export interface DeleteDBClusterMessage {
695
697
  DBClusterIdentifier: string | undefined;
696
- SkipFinalSnapshot?: boolean;
697
- FinalDBSnapshotIdentifier?: string;
698
+ SkipFinalSnapshot?: boolean | undefined;
699
+ FinalDBSnapshotIdentifier?: string | undefined;
698
700
  }
699
701
  export interface DeleteDBClusterResult {
700
- DBCluster?: DBCluster;
702
+ DBCluster?: DBCluster | undefined;
701
703
  }
702
704
  export interface DeleteDBClusterParameterGroupMessage {
703
705
  DBClusterParameterGroupName: string | undefined;
@@ -716,7 +718,7 @@ export interface DeleteDBClusterSnapshotMessage {
716
718
  DBClusterSnapshotIdentifier: string | undefined;
717
719
  }
718
720
  export interface DeleteDBClusterSnapshotResult {
719
- DBClusterSnapshot?: DBClusterSnapshot;
721
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
720
722
  }
721
723
  export declare class DBSnapshotAlreadyExistsFault extends __BaseException {
722
724
  readonly name: "DBSnapshotAlreadyExistsFault";
@@ -729,7 +731,7 @@ export interface DeleteDBInstanceMessage {
729
731
  DBInstanceIdentifier: string | undefined;
730
732
  }
731
733
  export interface DeleteDBInstanceResult {
732
- DBInstance?: DBInstance;
734
+ DBInstance?: DBInstance | undefined;
733
735
  }
734
736
  export interface DeleteDBSubnetGroupMessage {
735
737
  DBSubnetGroupName: string | undefined;
@@ -745,7 +747,7 @@ export interface DeleteEventSubscriptionMessage {
745
747
  SubscriptionName: string | undefined;
746
748
  }
747
749
  export interface DeleteEventSubscriptionResult {
748
- EventSubscription?: EventSubscription;
750
+ EventSubscription?: EventSubscription | undefined;
749
751
  }
750
752
  export declare class InvalidEventSubscriptionStateFault extends __BaseException {
751
753
  readonly name: "InvalidEventSubscriptionStateFault";
@@ -761,19 +763,19 @@ export interface DeleteGlobalClusterMessage {
761
763
  GlobalClusterIdentifier: string | undefined;
762
764
  }
763
765
  export interface DeleteGlobalClusterResult {
764
- GlobalCluster?: GlobalCluster;
766
+ GlobalCluster?: GlobalCluster | undefined;
765
767
  }
766
768
  export interface Certificate {
767
- CertificateIdentifier?: string;
768
- CertificateType?: string;
769
- Thumbprint?: string;
770
- ValidFrom?: Date;
771
- ValidTill?: Date;
772
- CertificateArn?: string;
769
+ CertificateIdentifier?: string | undefined;
770
+ CertificateType?: string | undefined;
771
+ Thumbprint?: string | undefined;
772
+ ValidFrom?: Date | undefined;
773
+ ValidTill?: Date | undefined;
774
+ CertificateArn?: string | undefined;
773
775
  }
774
776
  export interface CertificateMessage {
775
- Certificates?: Certificate[];
776
- Marker?: string;
777
+ Certificates?: Certificate[] | undefined;
778
+ Marker?: string | undefined;
777
779
  }
778
780
  export declare class CertificateNotFoundFault extends __BaseException {
779
781
  readonly name: "CertificateNotFoundFault";
@@ -787,20 +789,20 @@ export interface Filter {
787
789
  Values: string[] | undefined;
788
790
  }
789
791
  export interface DescribeCertificatesMessage {
790
- CertificateIdentifier?: string;
791
- Filters?: Filter[];
792
- MaxRecords?: number;
793
- Marker?: string;
792
+ CertificateIdentifier?: string | undefined;
793
+ Filters?: Filter[] | undefined;
794
+ MaxRecords?: number | undefined;
795
+ Marker?: string | undefined;
794
796
  }
795
797
  export interface DBClusterParameterGroupsMessage {
796
- Marker?: string;
797
- DBClusterParameterGroups?: DBClusterParameterGroup[];
798
+ Marker?: string | undefined;
799
+ DBClusterParameterGroups?: DBClusterParameterGroup[] | undefined;
798
800
  }
799
801
  export interface DescribeDBClusterParameterGroupsMessage {
800
- DBClusterParameterGroupName?: string;
801
- Filters?: Filter[];
802
- MaxRecords?: number;
803
- Marker?: string;
802
+ DBClusterParameterGroupName?: string | undefined;
803
+ Filters?: Filter[] | undefined;
804
+ MaxRecords?: number | undefined;
805
+ Marker?: string | undefined;
804
806
  }
805
807
  export declare const ApplyMethod: {
806
808
  readonly immediate: "immediate";
@@ -808,144 +810,146 @@ export declare const ApplyMethod: {
808
810
  };
809
811
  export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod];
810
812
  export interface Parameter {
811
- ParameterName?: string;
812
- ParameterValue?: string;
813
- Description?: string;
814
- Source?: string;
815
- ApplyType?: string;
816
- DataType?: string;
817
- AllowedValues?: string;
818
- IsModifiable?: boolean;
819
- MinimumEngineVersion?: string;
820
- ApplyMethod?: ApplyMethod;
813
+ ParameterName?: string | undefined;
814
+ ParameterValue?: string | undefined;
815
+ Description?: string | undefined;
816
+ Source?: string | undefined;
817
+ ApplyType?: string | undefined;
818
+ DataType?: string | undefined;
819
+ AllowedValues?: string | undefined;
820
+ IsModifiable?: boolean | undefined;
821
+ MinimumEngineVersion?: string | undefined;
822
+ ApplyMethod?: ApplyMethod | undefined;
821
823
  }
822
824
  export interface DBClusterParameterGroupDetails {
823
- Parameters?: Parameter[];
824
- Marker?: string;
825
+ Parameters?: Parameter[] | undefined;
826
+ Marker?: string | undefined;
825
827
  }
826
828
  export interface DescribeDBClusterParametersMessage {
827
829
  DBClusterParameterGroupName: string | undefined;
828
- Source?: string;
829
- Filters?: Filter[];
830
- MaxRecords?: number;
831
- Marker?: string;
830
+ Source?: string | undefined;
831
+ Filters?: Filter[] | undefined;
832
+ MaxRecords?: number | undefined;
833
+ Marker?: string | undefined;
832
834
  }
833
835
  export interface DBClusterMessage {
834
- Marker?: string;
835
- DBClusters?: DBCluster[];
836
+ Marker?: string | undefined;
837
+ DBClusters?: DBCluster[] | undefined;
836
838
  }
837
839
  export interface DescribeDBClustersMessage {
838
- DBClusterIdentifier?: string;
839
- Filters?: Filter[];
840
- MaxRecords?: number;
841
- Marker?: string;
840
+ DBClusterIdentifier?: string | undefined;
841
+ Filters?: Filter[] | undefined;
842
+ MaxRecords?: number | undefined;
843
+ Marker?: string | undefined;
842
844
  }
843
845
  export interface DescribeDBClusterSnapshotAttributesMessage {
844
846
  DBClusterSnapshotIdentifier: string | undefined;
845
847
  }
846
848
  export interface DBClusterSnapshotAttribute {
847
- AttributeName?: string;
848
- AttributeValues?: string[];
849
+ AttributeName?: string | undefined;
850
+ AttributeValues?: string[] | undefined;
849
851
  }
850
852
  export interface DBClusterSnapshotAttributesResult {
851
- DBClusterSnapshotIdentifier?: string;
852
- DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[];
853
+ DBClusterSnapshotIdentifier?: string | undefined;
854
+ DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[] | undefined;
853
855
  }
854
856
  export interface DescribeDBClusterSnapshotAttributesResult {
855
- DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
857
+ DBClusterSnapshotAttributesResult?:
858
+ | DBClusterSnapshotAttributesResult
859
+ | undefined;
856
860
  }
857
861
  export interface DBClusterSnapshotMessage {
858
- Marker?: string;
859
- DBClusterSnapshots?: DBClusterSnapshot[];
862
+ Marker?: string | undefined;
863
+ DBClusterSnapshots?: DBClusterSnapshot[] | undefined;
860
864
  }
861
865
  export interface DescribeDBClusterSnapshotsMessage {
862
- DBClusterIdentifier?: string;
863
- DBClusterSnapshotIdentifier?: string;
864
- SnapshotType?: string;
865
- Filters?: Filter[];
866
- MaxRecords?: number;
867
- Marker?: string;
868
- IncludeShared?: boolean;
869
- IncludePublic?: boolean;
866
+ DBClusterIdentifier?: string | undefined;
867
+ DBClusterSnapshotIdentifier?: string | undefined;
868
+ SnapshotType?: string | undefined;
869
+ Filters?: Filter[] | undefined;
870
+ MaxRecords?: number | undefined;
871
+ Marker?: string | undefined;
872
+ IncludeShared?: boolean | undefined;
873
+ IncludePublic?: boolean | undefined;
870
874
  }
871
875
  export interface UpgradeTarget {
872
- Engine?: string;
873
- EngineVersion?: string;
874
- Description?: string;
875
- AutoUpgrade?: boolean;
876
- IsMajorVersionUpgrade?: boolean;
876
+ Engine?: string | undefined;
877
+ EngineVersion?: string | undefined;
878
+ Description?: string | undefined;
879
+ AutoUpgrade?: boolean | undefined;
880
+ IsMajorVersionUpgrade?: boolean | undefined;
877
881
  }
878
882
  export interface DBEngineVersion {
879
- Engine?: string;
880
- EngineVersion?: string;
881
- DBParameterGroupFamily?: string;
882
- DBEngineDescription?: string;
883
- DBEngineVersionDescription?: string;
884
- ValidUpgradeTarget?: UpgradeTarget[];
885
- ExportableLogTypes?: string[];
886
- SupportsLogExportsToCloudwatchLogs?: boolean;
887
- SupportedCACertificateIdentifiers?: string[];
888
- SupportsCertificateRotationWithoutRestart?: boolean;
883
+ Engine?: string | undefined;
884
+ EngineVersion?: string | undefined;
885
+ DBParameterGroupFamily?: string | undefined;
886
+ DBEngineDescription?: string | undefined;
887
+ DBEngineVersionDescription?: string | undefined;
888
+ ValidUpgradeTarget?: UpgradeTarget[] | undefined;
889
+ ExportableLogTypes?: string[] | undefined;
890
+ SupportsLogExportsToCloudwatchLogs?: boolean | undefined;
891
+ SupportedCACertificateIdentifiers?: string[] | undefined;
892
+ SupportsCertificateRotationWithoutRestart?: boolean | undefined;
889
893
  }
890
894
  export interface DBEngineVersionMessage {
891
- Marker?: string;
892
- DBEngineVersions?: DBEngineVersion[];
895
+ Marker?: string | undefined;
896
+ DBEngineVersions?: DBEngineVersion[] | undefined;
893
897
  }
894
898
  export interface DescribeDBEngineVersionsMessage {
895
- Engine?: string;
896
- EngineVersion?: string;
897
- DBParameterGroupFamily?: string;
898
- Filters?: Filter[];
899
- MaxRecords?: number;
900
- Marker?: string;
901
- DefaultOnly?: boolean;
902
- ListSupportedCharacterSets?: boolean;
903
- ListSupportedTimezones?: boolean;
899
+ Engine?: string | undefined;
900
+ EngineVersion?: string | undefined;
901
+ DBParameterGroupFamily?: string | undefined;
902
+ Filters?: Filter[] | undefined;
903
+ MaxRecords?: number | undefined;
904
+ Marker?: string | undefined;
905
+ DefaultOnly?: boolean | undefined;
906
+ ListSupportedCharacterSets?: boolean | undefined;
907
+ ListSupportedTimezones?: boolean | undefined;
904
908
  }
905
909
  export interface DBInstanceMessage {
906
- Marker?: string;
907
- DBInstances?: DBInstance[];
910
+ Marker?: string | undefined;
911
+ DBInstances?: DBInstance[] | undefined;
908
912
  }
909
913
  export interface DescribeDBInstancesMessage {
910
- DBInstanceIdentifier?: string;
911
- Filters?: Filter[];
912
- MaxRecords?: number;
913
- Marker?: string;
914
+ DBInstanceIdentifier?: string | undefined;
915
+ Filters?: Filter[] | undefined;
916
+ MaxRecords?: number | undefined;
917
+ Marker?: string | undefined;
914
918
  }
915
919
  export interface DBSubnetGroupMessage {
916
- Marker?: string;
917
- DBSubnetGroups?: DBSubnetGroup[];
920
+ Marker?: string | undefined;
921
+ DBSubnetGroups?: DBSubnetGroup[] | undefined;
918
922
  }
919
923
  export interface DescribeDBSubnetGroupsMessage {
920
- DBSubnetGroupName?: string;
921
- Filters?: Filter[];
922
- MaxRecords?: number;
923
- Marker?: string;
924
+ DBSubnetGroupName?: string | undefined;
925
+ Filters?: Filter[] | undefined;
926
+ MaxRecords?: number | undefined;
927
+ Marker?: string | undefined;
924
928
  }
925
929
  export interface DescribeEngineDefaultClusterParametersMessage {
926
930
  DBParameterGroupFamily: string | undefined;
927
- Filters?: Filter[];
928
- MaxRecords?: number;
929
- Marker?: string;
931
+ Filters?: Filter[] | undefined;
932
+ MaxRecords?: number | undefined;
933
+ Marker?: string | undefined;
930
934
  }
931
935
  export interface EngineDefaults {
932
- DBParameterGroupFamily?: string;
933
- Marker?: string;
934
- Parameters?: Parameter[];
936
+ DBParameterGroupFamily?: string | undefined;
937
+ Marker?: string | undefined;
938
+ Parameters?: Parameter[] | undefined;
935
939
  }
936
940
  export interface DescribeEngineDefaultClusterParametersResult {
937
- EngineDefaults?: EngineDefaults;
941
+ EngineDefaults?: EngineDefaults | undefined;
938
942
  }
939
943
  export interface DescribeEventCategoriesMessage {
940
- SourceType?: string;
941
- Filters?: Filter[];
944
+ SourceType?: string | undefined;
945
+ Filters?: Filter[] | undefined;
942
946
  }
943
947
  export interface EventCategoriesMap {
944
- SourceType?: string;
945
- EventCategories?: string[];
948
+ SourceType?: string | undefined;
949
+ EventCategories?: string[] | undefined;
946
950
  }
947
951
  export interface EventCategoriesMessage {
948
- EventCategoriesMapList?: EventCategoriesMap[];
952
+ EventCategoriesMapList?: EventCategoriesMap[] | undefined;
949
953
  }
950
954
  export declare const SourceType: {
951
955
  readonly db_cluster: "db-cluster";
@@ -957,103 +961,103 @@ export declare const SourceType: {
957
961
  };
958
962
  export type SourceType = (typeof SourceType)[keyof typeof SourceType];
959
963
  export interface DescribeEventsMessage {
960
- SourceIdentifier?: string;
961
- SourceType?: SourceType;
962
- StartTime?: Date;
963
- EndTime?: Date;
964
- Duration?: number;
965
- EventCategories?: string[];
966
- Filters?: Filter[];
967
- MaxRecords?: number;
968
- Marker?: string;
964
+ SourceIdentifier?: string | undefined;
965
+ SourceType?: SourceType | undefined;
966
+ StartTime?: Date | undefined;
967
+ EndTime?: Date | undefined;
968
+ Duration?: number | undefined;
969
+ EventCategories?: string[] | undefined;
970
+ Filters?: Filter[] | undefined;
971
+ MaxRecords?: number | undefined;
972
+ Marker?: string | undefined;
969
973
  }
970
974
  export interface Event {
971
- SourceIdentifier?: string;
972
- SourceType?: SourceType;
973
- Message?: string;
974
- EventCategories?: string[];
975
- Date?: Date;
976
- SourceArn?: string;
975
+ SourceIdentifier?: string | undefined;
976
+ SourceType?: SourceType | undefined;
977
+ Message?: string | undefined;
978
+ EventCategories?: string[] | undefined;
979
+ Date?: Date | undefined;
980
+ SourceArn?: string | undefined;
977
981
  }
978
982
  export interface EventsMessage {
979
- Marker?: string;
980
- Events?: Event[];
983
+ Marker?: string | undefined;
984
+ Events?: Event[] | undefined;
981
985
  }
982
986
  export interface DescribeEventSubscriptionsMessage {
983
- SubscriptionName?: string;
984
- Filters?: Filter[];
985
- MaxRecords?: number;
986
- Marker?: string;
987
+ SubscriptionName?: string | undefined;
988
+ Filters?: Filter[] | undefined;
989
+ MaxRecords?: number | undefined;
990
+ Marker?: string | undefined;
987
991
  }
988
992
  export interface EventSubscriptionsMessage {
989
- Marker?: string;
990
- EventSubscriptionsList?: EventSubscription[];
993
+ Marker?: string | undefined;
994
+ EventSubscriptionsList?: EventSubscription[] | undefined;
991
995
  }
992
996
  export interface DescribeGlobalClustersMessage {
993
- GlobalClusterIdentifier?: string;
994
- Filters?: Filter[];
995
- MaxRecords?: number;
996
- Marker?: string;
997
+ GlobalClusterIdentifier?: string | undefined;
998
+ Filters?: Filter[] | undefined;
999
+ MaxRecords?: number | undefined;
1000
+ Marker?: string | undefined;
997
1001
  }
998
1002
  export interface GlobalClustersMessage {
999
- Marker?: string;
1000
- GlobalClusters?: GlobalCluster[];
1003
+ Marker?: string | undefined;
1004
+ GlobalClusters?: GlobalCluster[] | undefined;
1001
1005
  }
1002
1006
  export interface DescribeOrderableDBInstanceOptionsMessage {
1003
1007
  Engine: string | undefined;
1004
- EngineVersion?: string;
1005
- DBInstanceClass?: string;
1006
- LicenseModel?: string;
1007
- Vpc?: boolean;
1008
- Filters?: Filter[];
1009
- MaxRecords?: number;
1010
- Marker?: string;
1008
+ EngineVersion?: string | undefined;
1009
+ DBInstanceClass?: string | undefined;
1010
+ LicenseModel?: string | undefined;
1011
+ Vpc?: boolean | undefined;
1012
+ Filters?: Filter[] | undefined;
1013
+ MaxRecords?: number | undefined;
1014
+ Marker?: string | undefined;
1011
1015
  }
1012
1016
  export interface OrderableDBInstanceOption {
1013
- Engine?: string;
1014
- EngineVersion?: string;
1015
- DBInstanceClass?: string;
1016
- LicenseModel?: string;
1017
- AvailabilityZones?: AvailabilityZone[];
1018
- Vpc?: boolean;
1019
- StorageType?: string;
1017
+ Engine?: string | undefined;
1018
+ EngineVersion?: string | undefined;
1019
+ DBInstanceClass?: string | undefined;
1020
+ LicenseModel?: string | undefined;
1021
+ AvailabilityZones?: AvailabilityZone[] | undefined;
1022
+ Vpc?: boolean | undefined;
1023
+ StorageType?: string | undefined;
1020
1024
  }
1021
1025
  export interface OrderableDBInstanceOptionsMessage {
1022
- OrderableDBInstanceOptions?: OrderableDBInstanceOption[];
1023
- Marker?: string;
1026
+ OrderableDBInstanceOptions?: OrderableDBInstanceOption[] | undefined;
1027
+ Marker?: string | undefined;
1024
1028
  }
1025
1029
  export interface DescribePendingMaintenanceActionsMessage {
1026
- ResourceIdentifier?: string;
1027
- Filters?: Filter[];
1028
- Marker?: string;
1029
- MaxRecords?: number;
1030
+ ResourceIdentifier?: string | undefined;
1031
+ Filters?: Filter[] | undefined;
1032
+ Marker?: string | undefined;
1033
+ MaxRecords?: number | undefined;
1030
1034
  }
1031
1035
  export interface PendingMaintenanceActionsMessage {
1032
- PendingMaintenanceActions?: ResourcePendingMaintenanceActions[];
1033
- Marker?: string;
1036
+ PendingMaintenanceActions?: ResourcePendingMaintenanceActions[] | undefined;
1037
+ Marker?: string | undefined;
1034
1038
  }
1035
1039
  export interface FailoverDBClusterMessage {
1036
- DBClusterIdentifier?: string;
1037
- TargetDBInstanceIdentifier?: string;
1040
+ DBClusterIdentifier?: string | undefined;
1041
+ TargetDBInstanceIdentifier?: string | undefined;
1038
1042
  }
1039
1043
  export interface FailoverDBClusterResult {
1040
- DBCluster?: DBCluster;
1044
+ DBCluster?: DBCluster | undefined;
1041
1045
  }
1042
1046
  export interface FailoverGlobalClusterMessage {
1043
1047
  GlobalClusterIdentifier: string | undefined;
1044
1048
  TargetDbClusterIdentifier: string | undefined;
1045
- AllowDataLoss?: boolean;
1046
- Switchover?: boolean;
1049
+ AllowDataLoss?: boolean | undefined;
1050
+ Switchover?: boolean | undefined;
1047
1051
  }
1048
1052
  export interface FailoverGlobalClusterResult {
1049
- GlobalCluster?: GlobalCluster;
1053
+ GlobalCluster?: GlobalCluster | undefined;
1050
1054
  }
1051
1055
  export interface ListTagsForResourceMessage {
1052
1056
  ResourceName: string | undefined;
1053
- Filters?: Filter[];
1057
+ Filters?: Filter[] | undefined;
1054
1058
  }
1055
1059
  export interface TagListMessage {
1056
- TagList?: Tag[];
1060
+ TagList?: Tag[] | undefined;
1057
1061
  }
1058
1062
  export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
1059
1063
  readonly name: "InvalidDBSecurityGroupStateFault";
@@ -1066,31 +1070,33 @@ export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
1066
1070
  );
1067
1071
  }
1068
1072
  export interface CloudwatchLogsExportConfiguration {
1069
- EnableLogTypes?: string[];
1070
- DisableLogTypes?: string[];
1073
+ EnableLogTypes?: string[] | undefined;
1074
+ DisableLogTypes?: string[] | undefined;
1071
1075
  }
1072
1076
  export interface ModifyDBClusterMessage {
1073
1077
  DBClusterIdentifier: string | undefined;
1074
- NewDBClusterIdentifier?: string;
1075
- ApplyImmediately?: boolean;
1076
- BackupRetentionPeriod?: number;
1077
- DBClusterParameterGroupName?: string;
1078
- VpcSecurityGroupIds?: string[];
1079
- Port?: number;
1080
- MasterUserPassword?: string;
1081
- PreferredBackupWindow?: string;
1082
- PreferredMaintenanceWindow?: string;
1083
- CloudwatchLogsExportConfiguration?: CloudwatchLogsExportConfiguration;
1084
- EngineVersion?: string;
1085
- AllowMajorVersionUpgrade?: boolean;
1086
- DeletionProtection?: boolean;
1087
- StorageType?: string;
1078
+ NewDBClusterIdentifier?: string | undefined;
1079
+ ApplyImmediately?: boolean | undefined;
1080
+ BackupRetentionPeriod?: number | undefined;
1081
+ DBClusterParameterGroupName?: string | undefined;
1082
+ VpcSecurityGroupIds?: string[] | undefined;
1083
+ Port?: number | undefined;
1084
+ MasterUserPassword?: string | undefined;
1085
+ PreferredBackupWindow?: string | undefined;
1086
+ PreferredMaintenanceWindow?: string | undefined;
1087
+ CloudwatchLogsExportConfiguration?:
1088
+ | CloudwatchLogsExportConfiguration
1089
+ | undefined;
1090
+ EngineVersion?: string | undefined;
1091
+ AllowMajorVersionUpgrade?: boolean | undefined;
1092
+ DeletionProtection?: boolean | undefined;
1093
+ StorageType?: string | undefined;
1088
1094
  }
1089
1095
  export interface ModifyDBClusterResult {
1090
- DBCluster?: DBCluster;
1096
+ DBCluster?: DBCluster | undefined;
1091
1097
  }
1092
1098
  export interface DBClusterParameterGroupNameMessage {
1093
- DBClusterParameterGroupName?: string;
1099
+ DBClusterParameterGroupName?: string | undefined;
1094
1100
  }
1095
1101
  export interface ModifyDBClusterParameterGroupMessage {
1096
1102
  DBClusterParameterGroupName: string | undefined;
@@ -1099,11 +1105,13 @@ export interface ModifyDBClusterParameterGroupMessage {
1099
1105
  export interface ModifyDBClusterSnapshotAttributeMessage {
1100
1106
  DBClusterSnapshotIdentifier: string | undefined;
1101
1107
  AttributeName: string | undefined;
1102
- ValuesToAdd?: string[];
1103
- ValuesToRemove?: string[];
1108
+ ValuesToAdd?: string[] | undefined;
1109
+ ValuesToRemove?: string[] | undefined;
1104
1110
  }
1105
1111
  export interface ModifyDBClusterSnapshotAttributeResult {
1106
- DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
1112
+ DBClusterSnapshotAttributesResult?:
1113
+ | DBClusterSnapshotAttributesResult
1114
+ | undefined;
1107
1115
  }
1108
1116
  export declare class SharedSnapshotQuotaExceededFault extends __BaseException {
1109
1117
  readonly name: "SharedSnapshotQuotaExceededFault";
@@ -1127,28 +1135,28 @@ export declare class DBUpgradeDependencyFailureFault extends __BaseException {
1127
1135
  }
1128
1136
  export interface ModifyDBInstanceMessage {
1129
1137
  DBInstanceIdentifier: string | undefined;
1130
- DBInstanceClass?: string;
1131
- ApplyImmediately?: boolean;
1132
- PreferredMaintenanceWindow?: string;
1133
- AutoMinorVersionUpgrade?: boolean;
1134
- NewDBInstanceIdentifier?: string;
1135
- CACertificateIdentifier?: string;
1136
- CopyTagsToSnapshot?: boolean;
1137
- PromotionTier?: number;
1138
- EnablePerformanceInsights?: boolean;
1139
- PerformanceInsightsKMSKeyId?: string;
1140
- CertificateRotationRestart?: boolean;
1138
+ DBInstanceClass?: string | undefined;
1139
+ ApplyImmediately?: boolean | undefined;
1140
+ PreferredMaintenanceWindow?: string | undefined;
1141
+ AutoMinorVersionUpgrade?: boolean | undefined;
1142
+ NewDBInstanceIdentifier?: string | undefined;
1143
+ CACertificateIdentifier?: string | undefined;
1144
+ CopyTagsToSnapshot?: boolean | undefined;
1145
+ PromotionTier?: number | undefined;
1146
+ EnablePerformanceInsights?: boolean | undefined;
1147
+ PerformanceInsightsKMSKeyId?: string | undefined;
1148
+ CertificateRotationRestart?: boolean | undefined;
1141
1149
  }
1142
1150
  export interface ModifyDBInstanceResult {
1143
- DBInstance?: DBInstance;
1151
+ DBInstance?: DBInstance | undefined;
1144
1152
  }
1145
1153
  export interface ModifyDBSubnetGroupMessage {
1146
1154
  DBSubnetGroupName: string | undefined;
1147
- DBSubnetGroupDescription?: string;
1155
+ DBSubnetGroupDescription?: string | undefined;
1148
1156
  SubnetIds: string[] | undefined;
1149
1157
  }
1150
1158
  export interface ModifyDBSubnetGroupResult {
1151
- DBSubnetGroup?: DBSubnetGroup;
1159
+ DBSubnetGroup?: DBSubnetGroup | undefined;
1152
1160
  }
1153
1161
  export declare class SubnetAlreadyInUse extends __BaseException {
1154
1162
  readonly name: "SubnetAlreadyInUse";
@@ -1157,42 +1165,42 @@ export declare class SubnetAlreadyInUse extends __BaseException {
1157
1165
  }
1158
1166
  export interface ModifyEventSubscriptionMessage {
1159
1167
  SubscriptionName: string | undefined;
1160
- SnsTopicArn?: string;
1161
- SourceType?: string;
1162
- EventCategories?: string[];
1163
- Enabled?: boolean;
1168
+ SnsTopicArn?: string | undefined;
1169
+ SourceType?: string | undefined;
1170
+ EventCategories?: string[] | undefined;
1171
+ Enabled?: boolean | undefined;
1164
1172
  }
1165
1173
  export interface ModifyEventSubscriptionResult {
1166
- EventSubscription?: EventSubscription;
1174
+ EventSubscription?: EventSubscription | undefined;
1167
1175
  }
1168
1176
  export interface ModifyGlobalClusterMessage {
1169
1177
  GlobalClusterIdentifier: string | undefined;
1170
- NewGlobalClusterIdentifier?: string;
1171
- DeletionProtection?: boolean;
1178
+ NewGlobalClusterIdentifier?: string | undefined;
1179
+ DeletionProtection?: boolean | undefined;
1172
1180
  }
1173
1181
  export interface ModifyGlobalClusterResult {
1174
- GlobalCluster?: GlobalCluster;
1182
+ GlobalCluster?: GlobalCluster | undefined;
1175
1183
  }
1176
1184
  export interface RebootDBInstanceMessage {
1177
1185
  DBInstanceIdentifier: string | undefined;
1178
- ForceFailover?: boolean;
1186
+ ForceFailover?: boolean | undefined;
1179
1187
  }
1180
1188
  export interface RebootDBInstanceResult {
1181
- DBInstance?: DBInstance;
1189
+ DBInstance?: DBInstance | undefined;
1182
1190
  }
1183
1191
  export interface RemoveFromGlobalClusterMessage {
1184
1192
  GlobalClusterIdentifier: string | undefined;
1185
1193
  DbClusterIdentifier: string | undefined;
1186
1194
  }
1187
1195
  export interface RemoveFromGlobalClusterResult {
1188
- GlobalCluster?: GlobalCluster;
1196
+ GlobalCluster?: GlobalCluster | undefined;
1189
1197
  }
1190
1198
  export interface RemoveSourceIdentifierFromSubscriptionMessage {
1191
1199
  SubscriptionName: string | undefined;
1192
1200
  SourceIdentifier: string | undefined;
1193
1201
  }
1194
1202
  export interface RemoveSourceIdentifierFromSubscriptionResult {
1195
- EventSubscription?: EventSubscription;
1203
+ EventSubscription?: EventSubscription | undefined;
1196
1204
  }
1197
1205
  export interface RemoveTagsFromResourceMessage {
1198
1206
  ResourceName: string | undefined;
@@ -1200,8 +1208,8 @@ export interface RemoveTagsFromResourceMessage {
1200
1208
  }
1201
1209
  export interface ResetDBClusterParameterGroupMessage {
1202
1210
  DBClusterParameterGroupName: string | undefined;
1203
- ResetAllParameters?: boolean;
1204
- Parameters?: Parameter[];
1211
+ ResetAllParameters?: boolean | undefined;
1212
+ Parameters?: Parameter[] | undefined;
1205
1213
  }
1206
1214
  export declare class InsufficientDBClusterCapacityFault extends __BaseException {
1207
1215
  readonly name: "InsufficientDBClusterCapacityFault";
@@ -1228,58 +1236,58 @@ export declare class InvalidRestoreFault extends __BaseException {
1228
1236
  );
1229
1237
  }
1230
1238
  export interface RestoreDBClusterFromSnapshotMessage {
1231
- AvailabilityZones?: string[];
1239
+ AvailabilityZones?: string[] | undefined;
1232
1240
  DBClusterIdentifier: string | undefined;
1233
1241
  SnapshotIdentifier: string | undefined;
1234
1242
  Engine: string | undefined;
1235
- EngineVersion?: string;
1236
- Port?: number;
1237
- DBSubnetGroupName?: string;
1238
- VpcSecurityGroupIds?: string[];
1239
- Tags?: Tag[];
1240
- KmsKeyId?: string;
1241
- EnableCloudwatchLogsExports?: string[];
1242
- DeletionProtection?: boolean;
1243
- DBClusterParameterGroupName?: string;
1244
- StorageType?: string;
1243
+ EngineVersion?: string | undefined;
1244
+ Port?: number | undefined;
1245
+ DBSubnetGroupName?: string | undefined;
1246
+ VpcSecurityGroupIds?: string[] | undefined;
1247
+ Tags?: Tag[] | undefined;
1248
+ KmsKeyId?: string | undefined;
1249
+ EnableCloudwatchLogsExports?: string[] | undefined;
1250
+ DeletionProtection?: boolean | undefined;
1251
+ DBClusterParameterGroupName?: string | undefined;
1252
+ StorageType?: string | undefined;
1245
1253
  }
1246
1254
  export interface RestoreDBClusterFromSnapshotResult {
1247
- DBCluster?: DBCluster;
1255
+ DBCluster?: DBCluster | undefined;
1248
1256
  }
1249
1257
  export interface RestoreDBClusterToPointInTimeMessage {
1250
1258
  DBClusterIdentifier: string | undefined;
1251
- RestoreType?: string;
1259
+ RestoreType?: string | undefined;
1252
1260
  SourceDBClusterIdentifier: string | undefined;
1253
- RestoreToTime?: Date;
1254
- UseLatestRestorableTime?: boolean;
1255
- Port?: number;
1256
- DBSubnetGroupName?: string;
1257
- VpcSecurityGroupIds?: string[];
1258
- Tags?: Tag[];
1259
- KmsKeyId?: string;
1260
- EnableCloudwatchLogsExports?: string[];
1261
- DeletionProtection?: boolean;
1262
- StorageType?: string;
1261
+ RestoreToTime?: Date | undefined;
1262
+ UseLatestRestorableTime?: boolean | undefined;
1263
+ Port?: number | undefined;
1264
+ DBSubnetGroupName?: string | undefined;
1265
+ VpcSecurityGroupIds?: string[] | undefined;
1266
+ Tags?: Tag[] | undefined;
1267
+ KmsKeyId?: string | undefined;
1268
+ EnableCloudwatchLogsExports?: string[] | undefined;
1269
+ DeletionProtection?: boolean | undefined;
1270
+ StorageType?: string | undefined;
1263
1271
  }
1264
1272
  export interface RestoreDBClusterToPointInTimeResult {
1265
- DBCluster?: DBCluster;
1273
+ DBCluster?: DBCluster | undefined;
1266
1274
  }
1267
1275
  export interface StartDBClusterMessage {
1268
1276
  DBClusterIdentifier: string | undefined;
1269
1277
  }
1270
1278
  export interface StartDBClusterResult {
1271
- DBCluster?: DBCluster;
1279
+ DBCluster?: DBCluster | undefined;
1272
1280
  }
1273
1281
  export interface StopDBClusterMessage {
1274
1282
  DBClusterIdentifier: string | undefined;
1275
1283
  }
1276
1284
  export interface StopDBClusterResult {
1277
- DBCluster?: DBCluster;
1285
+ DBCluster?: DBCluster | undefined;
1278
1286
  }
1279
1287
  export interface SwitchoverGlobalClusterMessage {
1280
1288
  GlobalClusterIdentifier: string | undefined;
1281
1289
  TargetDbClusterIdentifier: string | undefined;
1282
1290
  }
1283
1291
  export interface SwitchoverGlobalClusterResult {
1284
- GlobalCluster?: GlobalCluster;
1292
+ GlobalCluster?: GlobalCluster | undefined;
1285
1293
  }