@aws-sdk/client-neptune 3.686.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ import { NeptuneServiceException as __BaseException } from "./NeptuneServiceExce
3
3
  export interface AddRoleToDBClusterMessage {
4
4
  DBClusterIdentifier: string | undefined;
5
5
  RoleArn: string | undefined;
6
- FeatureName?: string;
6
+ FeatureName?: string | undefined;
7
7
  }
8
8
  export declare class DBClusterNotFoundFault extends __BaseException {
9
9
  readonly name: "DBClusterNotFoundFault";
@@ -44,19 +44,19 @@ export interface AddSourceIdentifierToSubscriptionMessage {
44
44
  SourceIdentifier: string | undefined;
45
45
  }
46
46
  export interface EventSubscription {
47
- CustomerAwsId?: string;
48
- CustSubscriptionId?: string;
49
- SnsTopicArn?: string;
50
- Status?: string;
51
- SubscriptionCreationTime?: string;
52
- SourceType?: string;
53
- SourceIdsList?: string[];
54
- EventCategoriesList?: string[];
55
- Enabled?: boolean;
56
- EventSubscriptionArn?: string;
47
+ CustomerAwsId?: string | undefined;
48
+ CustSubscriptionId?: string | undefined;
49
+ SnsTopicArn?: string | undefined;
50
+ Status?: string | undefined;
51
+ SubscriptionCreationTime?: string | undefined;
52
+ SourceType?: string | undefined;
53
+ SourceIdsList?: string[] | undefined;
54
+ EventCategoriesList?: string[] | undefined;
55
+ Enabled?: boolean | undefined;
56
+ EventSubscriptionArn?: string | undefined;
57
57
  }
58
58
  export interface AddSourceIdentifierToSubscriptionResult {
59
- EventSubscription?: EventSubscription;
59
+ EventSubscription?: EventSubscription | undefined;
60
60
  }
61
61
  export declare class SourceNotFoundFault extends __BaseException {
62
62
  readonly name: "SourceNotFoundFault";
@@ -73,8 +73,8 @@ export declare class SubscriptionNotFoundFault extends __BaseException {
73
73
  );
74
74
  }
75
75
  export interface Tag {
76
- Key?: string;
77
- Value?: string;
76
+ Key?: string | undefined;
77
+ Value?: string | undefined;
78
78
  }
79
79
  export interface AddTagsToResourceMessage {
80
80
  ResourceName: string | undefined;
@@ -100,19 +100,21 @@ export interface ApplyPendingMaintenanceActionMessage {
100
100
  OptInType: string | undefined;
101
101
  }
102
102
  export interface PendingMaintenanceAction {
103
- Action?: string;
104
- AutoAppliedAfterDate?: Date;
105
- ForcedApplyDate?: Date;
106
- OptInStatus?: string;
107
- CurrentApplyDate?: Date;
108
- Description?: string;
103
+ Action?: string | undefined;
104
+ AutoAppliedAfterDate?: Date | undefined;
105
+ ForcedApplyDate?: Date | undefined;
106
+ OptInStatus?: string | undefined;
107
+ CurrentApplyDate?: Date | undefined;
108
+ Description?: string | undefined;
109
109
  }
110
110
  export interface ResourcePendingMaintenanceActions {
111
- ResourceIdentifier?: string;
112
- PendingMaintenanceActionDetails?: PendingMaintenanceAction[];
111
+ ResourceIdentifier?: string | undefined;
112
+ PendingMaintenanceActionDetails?: PendingMaintenanceAction[] | undefined;
113
113
  }
114
114
  export interface ApplyPendingMaintenanceActionResult {
115
- ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
115
+ ResourcePendingMaintenanceActions?:
116
+ | ResourcePendingMaintenanceActions
117
+ | undefined;
116
118
  }
117
119
  export declare class ResourceNotFoundFault extends __BaseException {
118
120
  readonly name: "ResourceNotFoundFault";
@@ -125,16 +127,16 @@ export interface CopyDBClusterParameterGroupMessage {
125
127
  SourceDBClusterParameterGroupIdentifier: string | undefined;
126
128
  TargetDBClusterParameterGroupIdentifier: string | undefined;
127
129
  TargetDBClusterParameterGroupDescription: string | undefined;
128
- Tags?: Tag[];
130
+ Tags?: Tag[] | undefined;
129
131
  }
130
132
  export interface DBClusterParameterGroup {
131
- DBClusterParameterGroupName?: string;
132
- DBParameterGroupFamily?: string;
133
- Description?: string;
134
- DBClusterParameterGroupArn?: string;
133
+ DBClusterParameterGroupName?: string | undefined;
134
+ DBParameterGroupFamily?: string | undefined;
135
+ Description?: string | undefined;
136
+ DBClusterParameterGroupArn?: string | undefined;
135
137
  }
136
138
  export interface CopyDBClusterParameterGroupResult {
137
- DBClusterParameterGroup?: DBClusterParameterGroup;
139
+ DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
138
140
  }
139
141
  export declare class DBParameterGroupAlreadyExistsFault extends __BaseException {
140
142
  readonly name: "DBParameterGroupAlreadyExistsFault";
@@ -166,36 +168,36 @@ export declare class DBParameterGroupQuotaExceededFault extends __BaseException
166
168
  export interface CopyDBClusterSnapshotMessage {
167
169
  SourceDBClusterSnapshotIdentifier: string | undefined;
168
170
  TargetDBClusterSnapshotIdentifier: string | undefined;
169
- KmsKeyId?: string;
170
- PreSignedUrl?: string;
171
- CopyTags?: boolean;
172
- Tags?: Tag[];
171
+ KmsKeyId?: string | undefined;
172
+ PreSignedUrl?: string | undefined;
173
+ CopyTags?: boolean | undefined;
174
+ Tags?: Tag[] | undefined;
173
175
  }
174
176
  export interface DBClusterSnapshot {
175
- AvailabilityZones?: string[];
176
- DBClusterSnapshotIdentifier?: string;
177
- DBClusterIdentifier?: string;
178
- SnapshotCreateTime?: Date;
179
- Engine?: string;
180
- AllocatedStorage?: number;
181
- Status?: string;
182
- Port?: number;
183
- VpcId?: string;
184
- ClusterCreateTime?: Date;
185
- MasterUsername?: string;
186
- EngineVersion?: string;
187
- LicenseModel?: string;
188
- SnapshotType?: string;
189
- PercentProgress?: number;
190
- StorageEncrypted?: boolean;
191
- KmsKeyId?: string;
192
- DBClusterSnapshotArn?: string;
193
- SourceDBClusterSnapshotArn?: string;
194
- IAMDatabaseAuthenticationEnabled?: boolean;
195
- StorageType?: string;
177
+ AvailabilityZones?: string[] | undefined;
178
+ DBClusterSnapshotIdentifier?: string | undefined;
179
+ DBClusterIdentifier?: string | undefined;
180
+ SnapshotCreateTime?: Date | undefined;
181
+ Engine?: string | undefined;
182
+ AllocatedStorage?: number | undefined;
183
+ Status?: string | undefined;
184
+ Port?: number | undefined;
185
+ VpcId?: string | undefined;
186
+ ClusterCreateTime?: Date | undefined;
187
+ MasterUsername?: string | undefined;
188
+ EngineVersion?: string | undefined;
189
+ LicenseModel?: string | undefined;
190
+ SnapshotType?: string | undefined;
191
+ PercentProgress?: number | undefined;
192
+ StorageEncrypted?: boolean | undefined;
193
+ KmsKeyId?: string | undefined;
194
+ DBClusterSnapshotArn?: string | undefined;
195
+ SourceDBClusterSnapshotArn?: string | undefined;
196
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
197
+ StorageType?: string | undefined;
196
198
  }
197
199
  export interface CopyDBClusterSnapshotResult {
198
- DBClusterSnapshot?: DBClusterSnapshot;
200
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
199
201
  }
200
202
  export declare class DBClusterSnapshotAlreadyExistsFault extends __BaseException {
201
203
  readonly name: "DBClusterSnapshotAlreadyExistsFault";
@@ -242,137 +244,141 @@ export interface CopyDBParameterGroupMessage {
242
244
  SourceDBParameterGroupIdentifier: string | undefined;
243
245
  TargetDBParameterGroupIdentifier: string | undefined;
244
246
  TargetDBParameterGroupDescription: string | undefined;
245
- Tags?: Tag[];
247
+ Tags?: Tag[] | undefined;
246
248
  }
247
249
  export interface DBParameterGroup {
248
- DBParameterGroupName?: string;
249
- DBParameterGroupFamily?: string;
250
- Description?: string;
251
- DBParameterGroupArn?: string;
250
+ DBParameterGroupName?: string | undefined;
251
+ DBParameterGroupFamily?: string | undefined;
252
+ Description?: string | undefined;
253
+ DBParameterGroupArn?: string | undefined;
252
254
  }
253
255
  export interface CopyDBParameterGroupResult {
254
- DBParameterGroup?: DBParameterGroup;
256
+ DBParameterGroup?: DBParameterGroup | undefined;
255
257
  }
256
258
  export interface ServerlessV2ScalingConfiguration {
257
- MinCapacity?: number;
258
- MaxCapacity?: number;
259
+ MinCapacity?: number | undefined;
260
+ MaxCapacity?: number | undefined;
259
261
  }
260
262
  export interface CreateDBClusterMessage {
261
- AvailabilityZones?: string[];
262
- BackupRetentionPeriod?: number;
263
- CharacterSetName?: string;
264
- CopyTagsToSnapshot?: boolean;
265
- DatabaseName?: string;
263
+ AvailabilityZones?: string[] | undefined;
264
+ BackupRetentionPeriod?: number | undefined;
265
+ CharacterSetName?: string | undefined;
266
+ CopyTagsToSnapshot?: boolean | undefined;
267
+ DatabaseName?: string | undefined;
266
268
  DBClusterIdentifier: string | undefined;
267
- DBClusterParameterGroupName?: string;
268
- VpcSecurityGroupIds?: string[];
269
- DBSubnetGroupName?: string;
269
+ DBClusterParameterGroupName?: string | undefined;
270
+ VpcSecurityGroupIds?: string[] | undefined;
271
+ DBSubnetGroupName?: string | undefined;
270
272
  Engine: string | undefined;
271
- EngineVersion?: string;
272
- Port?: number;
273
- MasterUsername?: string;
274
- MasterUserPassword?: string;
275
- OptionGroupName?: string;
276
- PreferredBackupWindow?: string;
277
- PreferredMaintenanceWindow?: string;
278
- ReplicationSourceIdentifier?: string;
279
- Tags?: Tag[];
280
- StorageEncrypted?: boolean;
281
- KmsKeyId?: string;
282
- PreSignedUrl?: string;
283
- EnableIAMDatabaseAuthentication?: boolean;
284
- EnableCloudwatchLogsExports?: string[];
285
- DeletionProtection?: boolean;
286
- ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
287
- GlobalClusterIdentifier?: string;
288
- StorageType?: string;
273
+ EngineVersion?: string | undefined;
274
+ Port?: number | undefined;
275
+ MasterUsername?: string | undefined;
276
+ MasterUserPassword?: string | undefined;
277
+ OptionGroupName?: string | undefined;
278
+ PreferredBackupWindow?: string | undefined;
279
+ PreferredMaintenanceWindow?: string | undefined;
280
+ ReplicationSourceIdentifier?: string | undefined;
281
+ Tags?: Tag[] | undefined;
282
+ StorageEncrypted?: boolean | undefined;
283
+ KmsKeyId?: string | undefined;
284
+ PreSignedUrl?: string | undefined;
285
+ EnableIAMDatabaseAuthentication?: boolean | undefined;
286
+ EnableCloudwatchLogsExports?: string[] | undefined;
287
+ DeletionProtection?: boolean | undefined;
288
+ ServerlessV2ScalingConfiguration?:
289
+ | ServerlessV2ScalingConfiguration
290
+ | undefined;
291
+ GlobalClusterIdentifier?: string | undefined;
292
+ StorageType?: string | undefined;
289
293
  }
290
294
  export interface DBClusterRole {
291
- RoleArn?: string;
292
- Status?: string;
293
- FeatureName?: string;
295
+ RoleArn?: string | undefined;
296
+ Status?: string | undefined;
297
+ FeatureName?: string | undefined;
294
298
  }
295
299
  export interface DBClusterMember {
296
- DBInstanceIdentifier?: string;
297
- IsClusterWriter?: boolean;
298
- DBClusterParameterGroupStatus?: string;
299
- PromotionTier?: number;
300
+ DBInstanceIdentifier?: string | undefined;
301
+ IsClusterWriter?: boolean | undefined;
302
+ DBClusterParameterGroupStatus?: string | undefined;
303
+ PromotionTier?: number | undefined;
300
304
  }
301
305
  export interface DBClusterOptionGroupStatus {
302
- DBClusterOptionGroupName?: string;
303
- Status?: string;
306
+ DBClusterOptionGroupName?: string | undefined;
307
+ Status?: string | undefined;
304
308
  }
305
309
  export interface PendingCloudwatchLogsExports {
306
- LogTypesToEnable?: string[];
307
- LogTypesToDisable?: string[];
310
+ LogTypesToEnable?: string[] | undefined;
311
+ LogTypesToDisable?: string[] | undefined;
308
312
  }
309
313
  export interface ClusterPendingModifiedValues {
310
- PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
311
- DBClusterIdentifier?: string;
312
- IAMDatabaseAuthenticationEnabled?: boolean;
313
- EngineVersion?: string;
314
- BackupRetentionPeriod?: number;
315
- StorageType?: string;
316
- AllocatedStorage?: number;
317
- Iops?: number;
314
+ PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports | undefined;
315
+ DBClusterIdentifier?: string | undefined;
316
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
317
+ EngineVersion?: string | undefined;
318
+ BackupRetentionPeriod?: number | undefined;
319
+ StorageType?: string | undefined;
320
+ AllocatedStorage?: number | undefined;
321
+ Iops?: number | undefined;
318
322
  }
319
323
  export interface ServerlessV2ScalingConfigurationInfo {
320
- MinCapacity?: number;
321
- MaxCapacity?: number;
324
+ MinCapacity?: number | undefined;
325
+ MaxCapacity?: number | undefined;
322
326
  }
323
327
  export interface VpcSecurityGroupMembership {
324
- VpcSecurityGroupId?: string;
325
- Status?: string;
328
+ VpcSecurityGroupId?: string | undefined;
329
+ Status?: string | undefined;
326
330
  }
327
331
  export interface DBCluster {
328
- AllocatedStorage?: number;
329
- AvailabilityZones?: string[];
330
- BackupRetentionPeriod?: number;
331
- CharacterSetName?: string;
332
- DatabaseName?: string;
333
- DBClusterIdentifier?: string;
334
- DBClusterParameterGroup?: string;
335
- DBSubnetGroup?: string;
336
- Status?: string;
337
- PercentProgress?: string;
338
- EarliestRestorableTime?: Date;
339
- Endpoint?: string;
340
- ReaderEndpoint?: string;
341
- MultiAZ?: boolean;
342
- Engine?: string;
343
- EngineVersion?: string;
344
- LatestRestorableTime?: Date;
345
- Port?: number;
346
- MasterUsername?: string;
347
- DBClusterOptionGroupMemberships?: DBClusterOptionGroupStatus[];
348
- PreferredBackupWindow?: string;
349
- PreferredMaintenanceWindow?: string;
350
- ReplicationSourceIdentifier?: string;
351
- ReadReplicaIdentifiers?: string[];
352
- DBClusterMembers?: DBClusterMember[];
353
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
354
- HostedZoneId?: string;
355
- StorageEncrypted?: boolean;
356
- KmsKeyId?: string;
357
- DbClusterResourceId?: string;
358
- DBClusterArn?: string;
359
- AssociatedRoles?: DBClusterRole[];
360
- IAMDatabaseAuthenticationEnabled?: boolean;
361
- CloneGroupId?: string;
362
- ClusterCreateTime?: Date;
363
- CopyTagsToSnapshot?: boolean;
364
- EnabledCloudwatchLogsExports?: string[];
365
- PendingModifiedValues?: ClusterPendingModifiedValues;
366
- DeletionProtection?: boolean;
367
- CrossAccountClone?: boolean;
368
- AutomaticRestartTime?: Date;
369
- ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfigurationInfo;
370
- GlobalClusterIdentifier?: string;
371
- IOOptimizedNextAllowedModificationTime?: Date;
372
- StorageType?: string;
332
+ AllocatedStorage?: number | undefined;
333
+ AvailabilityZones?: string[] | undefined;
334
+ BackupRetentionPeriod?: number | undefined;
335
+ CharacterSetName?: string | undefined;
336
+ DatabaseName?: string | undefined;
337
+ DBClusterIdentifier?: string | undefined;
338
+ DBClusterParameterGroup?: string | undefined;
339
+ DBSubnetGroup?: string | undefined;
340
+ Status?: string | undefined;
341
+ PercentProgress?: string | undefined;
342
+ EarliestRestorableTime?: Date | undefined;
343
+ Endpoint?: string | undefined;
344
+ ReaderEndpoint?: string | undefined;
345
+ MultiAZ?: boolean | undefined;
346
+ Engine?: string | undefined;
347
+ EngineVersion?: string | undefined;
348
+ LatestRestorableTime?: Date | undefined;
349
+ Port?: number | undefined;
350
+ MasterUsername?: string | undefined;
351
+ DBClusterOptionGroupMemberships?: DBClusterOptionGroupStatus[] | undefined;
352
+ PreferredBackupWindow?: string | undefined;
353
+ PreferredMaintenanceWindow?: string | undefined;
354
+ ReplicationSourceIdentifier?: string | undefined;
355
+ ReadReplicaIdentifiers?: string[] | undefined;
356
+ DBClusterMembers?: DBClusterMember[] | undefined;
357
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
358
+ HostedZoneId?: string | undefined;
359
+ StorageEncrypted?: boolean | undefined;
360
+ KmsKeyId?: string | undefined;
361
+ DbClusterResourceId?: string | undefined;
362
+ DBClusterArn?: string | undefined;
363
+ AssociatedRoles?: DBClusterRole[] | undefined;
364
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
365
+ CloneGroupId?: string | undefined;
366
+ ClusterCreateTime?: Date | undefined;
367
+ CopyTagsToSnapshot?: boolean | undefined;
368
+ EnabledCloudwatchLogsExports?: string[] | undefined;
369
+ PendingModifiedValues?: ClusterPendingModifiedValues | undefined;
370
+ DeletionProtection?: boolean | undefined;
371
+ CrossAccountClone?: boolean | undefined;
372
+ AutomaticRestartTime?: Date | undefined;
373
+ ServerlessV2ScalingConfiguration?:
374
+ | ServerlessV2ScalingConfigurationInfo
375
+ | undefined;
376
+ GlobalClusterIdentifier?: string | undefined;
377
+ IOOptimizedNextAllowedModificationTime?: Date | undefined;
378
+ StorageType?: string | undefined;
373
379
  }
374
380
  export interface CreateDBClusterResult {
375
- DBCluster?: DBCluster;
381
+ DBCluster?: DBCluster | undefined;
376
382
  }
377
383
  export declare class DBClusterAlreadyExistsFault extends __BaseException {
378
384
  readonly name: "DBClusterAlreadyExistsFault";
@@ -476,21 +482,21 @@ export interface CreateDBClusterEndpointMessage {
476
482
  DBClusterIdentifier: string | undefined;
477
483
  DBClusterEndpointIdentifier: string | undefined;
478
484
  EndpointType: string | undefined;
479
- StaticMembers?: string[];
480
- ExcludedMembers?: string[];
481
- Tags?: Tag[];
485
+ StaticMembers?: string[] | undefined;
486
+ ExcludedMembers?: string[] | undefined;
487
+ Tags?: Tag[] | undefined;
482
488
  }
483
489
  export interface CreateDBClusterEndpointOutput {
484
- DBClusterEndpointIdentifier?: string;
485
- DBClusterIdentifier?: string;
486
- DBClusterEndpointResourceIdentifier?: string;
487
- Endpoint?: string;
488
- Status?: string;
489
- EndpointType?: string;
490
- CustomEndpointType?: string;
491
- StaticMembers?: string[];
492
- ExcludedMembers?: string[];
493
- DBClusterEndpointArn?: string;
490
+ DBClusterEndpointIdentifier?: string | undefined;
491
+ DBClusterIdentifier?: string | undefined;
492
+ DBClusterEndpointResourceIdentifier?: string | undefined;
493
+ Endpoint?: string | undefined;
494
+ Status?: string | undefined;
495
+ EndpointType?: string | undefined;
496
+ CustomEndpointType?: string | undefined;
497
+ StaticMembers?: string[] | undefined;
498
+ ExcludedMembers?: string[] | undefined;
499
+ DBClusterEndpointArn?: string | undefined;
494
500
  }
495
501
  export declare class DBClusterEndpointAlreadyExistsFault extends __BaseException {
496
502
  readonly name: "DBClusterEndpointAlreadyExistsFault";
@@ -516,18 +522,18 @@ export interface CreateDBClusterParameterGroupMessage {
516
522
  DBClusterParameterGroupName: string | undefined;
517
523
  DBParameterGroupFamily: string | undefined;
518
524
  Description: string | undefined;
519
- Tags?: Tag[];
525
+ Tags?: Tag[] | undefined;
520
526
  }
521
527
  export interface CreateDBClusterParameterGroupResult {
522
- DBClusterParameterGroup?: DBClusterParameterGroup;
528
+ DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
523
529
  }
524
530
  export interface CreateDBClusterSnapshotMessage {
525
531
  DBClusterSnapshotIdentifier: string | undefined;
526
532
  DBClusterIdentifier: string | undefined;
527
- Tags?: Tag[];
533
+ Tags?: Tag[] | undefined;
528
534
  }
529
535
  export interface CreateDBClusterSnapshotResult {
530
- DBClusterSnapshot?: DBClusterSnapshot;
536
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
531
537
  }
532
538
  export declare class AuthorizationNotFoundFault extends __BaseException {
533
539
  readonly name: "AuthorizationNotFoundFault";
@@ -537,168 +543,168 @@ export declare class AuthorizationNotFoundFault extends __BaseException {
537
543
  );
538
544
  }
539
545
  export interface CreateDBInstanceMessage {
540
- DBName?: string;
546
+ DBName?: string | undefined;
541
547
  DBInstanceIdentifier: string | undefined;
542
- AllocatedStorage?: number;
548
+ AllocatedStorage?: number | undefined;
543
549
  DBInstanceClass: string | undefined;
544
550
  Engine: string | undefined;
545
- MasterUsername?: string;
546
- MasterUserPassword?: string;
547
- DBSecurityGroups?: string[];
548
- VpcSecurityGroupIds?: string[];
549
- AvailabilityZone?: string;
550
- DBSubnetGroupName?: string;
551
- PreferredMaintenanceWindow?: string;
552
- DBParameterGroupName?: string;
553
- BackupRetentionPeriod?: number;
554
- PreferredBackupWindow?: string;
555
- Port?: number;
556
- MultiAZ?: boolean;
557
- EngineVersion?: string;
558
- AutoMinorVersionUpgrade?: boolean;
559
- LicenseModel?: string;
560
- Iops?: number;
561
- OptionGroupName?: string;
562
- CharacterSetName?: string;
563
- PubliclyAccessible?: boolean;
564
- Tags?: Tag[];
551
+ MasterUsername?: string | undefined;
552
+ MasterUserPassword?: string | undefined;
553
+ DBSecurityGroups?: string[] | undefined;
554
+ VpcSecurityGroupIds?: string[] | undefined;
555
+ AvailabilityZone?: string | undefined;
556
+ DBSubnetGroupName?: string | undefined;
557
+ PreferredMaintenanceWindow?: string | undefined;
558
+ DBParameterGroupName?: string | undefined;
559
+ BackupRetentionPeriod?: number | undefined;
560
+ PreferredBackupWindow?: string | undefined;
561
+ Port?: number | undefined;
562
+ MultiAZ?: boolean | undefined;
563
+ EngineVersion?: string | undefined;
564
+ AutoMinorVersionUpgrade?: boolean | undefined;
565
+ LicenseModel?: string | undefined;
566
+ Iops?: number | undefined;
567
+ OptionGroupName?: string | undefined;
568
+ CharacterSetName?: string | undefined;
569
+ PubliclyAccessible?: boolean | undefined;
570
+ Tags?: Tag[] | undefined;
565
571
  DBClusterIdentifier: string | undefined;
566
- StorageType?: string;
567
- TdeCredentialArn?: string;
568
- TdeCredentialPassword?: string;
569
- StorageEncrypted?: boolean;
570
- KmsKeyId?: string;
571
- Domain?: string;
572
- CopyTagsToSnapshot?: boolean;
573
- MonitoringInterval?: number;
574
- MonitoringRoleArn?: string;
575
- DomainIAMRoleName?: string;
576
- PromotionTier?: number;
577
- Timezone?: string;
578
- EnableIAMDatabaseAuthentication?: boolean;
579
- EnablePerformanceInsights?: boolean;
580
- PerformanceInsightsKMSKeyId?: string;
581
- EnableCloudwatchLogsExports?: string[];
582
- DeletionProtection?: boolean;
572
+ StorageType?: string | undefined;
573
+ TdeCredentialArn?: string | undefined;
574
+ TdeCredentialPassword?: string | undefined;
575
+ StorageEncrypted?: boolean | undefined;
576
+ KmsKeyId?: string | undefined;
577
+ Domain?: string | undefined;
578
+ CopyTagsToSnapshot?: boolean | undefined;
579
+ MonitoringInterval?: number | undefined;
580
+ MonitoringRoleArn?: string | undefined;
581
+ DomainIAMRoleName?: string | undefined;
582
+ PromotionTier?: number | undefined;
583
+ Timezone?: string | undefined;
584
+ EnableIAMDatabaseAuthentication?: boolean | undefined;
585
+ EnablePerformanceInsights?: boolean | undefined;
586
+ PerformanceInsightsKMSKeyId?: string | undefined;
587
+ EnableCloudwatchLogsExports?: string[] | undefined;
588
+ DeletionProtection?: boolean | undefined;
583
589
  }
584
590
  export interface DBParameterGroupStatus {
585
- DBParameterGroupName?: string;
586
- ParameterApplyStatus?: string;
591
+ DBParameterGroupName?: string | undefined;
592
+ ParameterApplyStatus?: string | undefined;
587
593
  }
588
594
  export interface DBSecurityGroupMembership {
589
- DBSecurityGroupName?: string;
590
- Status?: string;
595
+ DBSecurityGroupName?: string | undefined;
596
+ Status?: string | undefined;
591
597
  }
592
598
  export interface AvailabilityZone {
593
- Name?: string;
599
+ Name?: string | undefined;
594
600
  }
595
601
  export interface Subnet {
596
- SubnetIdentifier?: string;
597
- SubnetAvailabilityZone?: AvailabilityZone;
598
- SubnetStatus?: string;
602
+ SubnetIdentifier?: string | undefined;
603
+ SubnetAvailabilityZone?: AvailabilityZone | undefined;
604
+ SubnetStatus?: string | undefined;
599
605
  }
600
606
  export interface DBSubnetGroup {
601
- DBSubnetGroupName?: string;
602
- DBSubnetGroupDescription?: string;
603
- VpcId?: string;
604
- SubnetGroupStatus?: string;
605
- Subnets?: Subnet[];
606
- DBSubnetGroupArn?: string;
607
+ DBSubnetGroupName?: string | undefined;
608
+ DBSubnetGroupDescription?: string | undefined;
609
+ VpcId?: string | undefined;
610
+ SubnetGroupStatus?: string | undefined;
611
+ Subnets?: Subnet[] | undefined;
612
+ DBSubnetGroupArn?: string | undefined;
607
613
  }
608
614
  export interface DomainMembership {
609
- Domain?: string;
610
- Status?: string;
611
- FQDN?: string;
612
- IAMRoleName?: string;
615
+ Domain?: string | undefined;
616
+ Status?: string | undefined;
617
+ FQDN?: string | undefined;
618
+ IAMRoleName?: string | undefined;
613
619
  }
614
620
  export interface Endpoint {
615
- Address?: string;
616
- Port?: number;
617
- HostedZoneId?: string;
621
+ Address?: string | undefined;
622
+ Port?: number | undefined;
623
+ HostedZoneId?: string | undefined;
618
624
  }
619
625
  export interface OptionGroupMembership {
620
- OptionGroupName?: string;
621
- Status?: string;
626
+ OptionGroupName?: string | undefined;
627
+ Status?: string | undefined;
622
628
  }
623
629
  export interface PendingModifiedValues {
624
- DBInstanceClass?: string;
625
- AllocatedStorage?: number;
626
- MasterUserPassword?: string;
627
- Port?: number;
628
- BackupRetentionPeriod?: number;
629
- MultiAZ?: boolean;
630
- EngineVersion?: string;
631
- LicenseModel?: string;
632
- Iops?: number;
633
- DBInstanceIdentifier?: string;
634
- StorageType?: string;
635
- CACertificateIdentifier?: string;
636
- DBSubnetGroupName?: string;
637
- PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
630
+ DBInstanceClass?: string | undefined;
631
+ AllocatedStorage?: number | undefined;
632
+ MasterUserPassword?: string | undefined;
633
+ Port?: number | undefined;
634
+ BackupRetentionPeriod?: number | undefined;
635
+ MultiAZ?: boolean | undefined;
636
+ EngineVersion?: string | undefined;
637
+ LicenseModel?: string | undefined;
638
+ Iops?: number | undefined;
639
+ DBInstanceIdentifier?: string | undefined;
640
+ StorageType?: string | undefined;
641
+ CACertificateIdentifier?: string | undefined;
642
+ DBSubnetGroupName?: string | undefined;
643
+ PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports | undefined;
638
644
  }
639
645
  export interface DBInstanceStatusInfo {
640
- StatusType?: string;
641
- Normal?: boolean;
642
- Status?: string;
643
- Message?: string;
646
+ StatusType?: string | undefined;
647
+ Normal?: boolean | undefined;
648
+ Status?: string | undefined;
649
+ Message?: string | undefined;
644
650
  }
645
651
  export interface DBInstance {
646
- DBInstanceIdentifier?: string;
647
- DBInstanceClass?: string;
648
- Engine?: string;
649
- DBInstanceStatus?: string;
650
- MasterUsername?: string;
651
- DBName?: string;
652
- Endpoint?: Endpoint;
653
- AllocatedStorage?: number;
654
- InstanceCreateTime?: Date;
655
- PreferredBackupWindow?: string;
656
- BackupRetentionPeriod?: number;
657
- DBSecurityGroups?: DBSecurityGroupMembership[];
658
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
659
- DBParameterGroups?: DBParameterGroupStatus[];
660
- AvailabilityZone?: string;
661
- DBSubnetGroup?: DBSubnetGroup;
662
- PreferredMaintenanceWindow?: string;
663
- PendingModifiedValues?: PendingModifiedValues;
664
- LatestRestorableTime?: Date;
665
- MultiAZ?: boolean;
666
- EngineVersion?: string;
667
- AutoMinorVersionUpgrade?: boolean;
668
- ReadReplicaSourceDBInstanceIdentifier?: string;
669
- ReadReplicaDBInstanceIdentifiers?: string[];
670
- ReadReplicaDBClusterIdentifiers?: string[];
671
- LicenseModel?: string;
672
- Iops?: number;
673
- OptionGroupMemberships?: OptionGroupMembership[];
674
- CharacterSetName?: string;
675
- SecondaryAvailabilityZone?: string;
676
- PubliclyAccessible?: boolean;
677
- StatusInfos?: DBInstanceStatusInfo[];
678
- StorageType?: string;
679
- TdeCredentialArn?: string;
680
- DbInstancePort?: number;
681
- DBClusterIdentifier?: string;
682
- StorageEncrypted?: boolean;
683
- KmsKeyId?: string;
684
- DbiResourceId?: string;
685
- CACertificateIdentifier?: string;
686
- DomainMemberships?: DomainMembership[];
687
- CopyTagsToSnapshot?: boolean;
688
- MonitoringInterval?: number;
689
- EnhancedMonitoringResourceArn?: string;
690
- MonitoringRoleArn?: string;
691
- PromotionTier?: number;
692
- DBInstanceArn?: string;
693
- Timezone?: string;
694
- IAMDatabaseAuthenticationEnabled?: boolean;
695
- PerformanceInsightsEnabled?: boolean;
696
- PerformanceInsightsKMSKeyId?: string;
697
- EnabledCloudwatchLogsExports?: string[];
698
- DeletionProtection?: boolean;
652
+ DBInstanceIdentifier?: string | undefined;
653
+ DBInstanceClass?: string | undefined;
654
+ Engine?: string | undefined;
655
+ DBInstanceStatus?: string | undefined;
656
+ MasterUsername?: string | undefined;
657
+ DBName?: string | undefined;
658
+ Endpoint?: Endpoint | undefined;
659
+ AllocatedStorage?: number | undefined;
660
+ InstanceCreateTime?: Date | undefined;
661
+ PreferredBackupWindow?: string | undefined;
662
+ BackupRetentionPeriod?: number | undefined;
663
+ DBSecurityGroups?: DBSecurityGroupMembership[] | undefined;
664
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
665
+ DBParameterGroups?: DBParameterGroupStatus[] | undefined;
666
+ AvailabilityZone?: string | undefined;
667
+ DBSubnetGroup?: DBSubnetGroup | undefined;
668
+ PreferredMaintenanceWindow?: string | undefined;
669
+ PendingModifiedValues?: PendingModifiedValues | undefined;
670
+ LatestRestorableTime?: Date | undefined;
671
+ MultiAZ?: boolean | undefined;
672
+ EngineVersion?: string | undefined;
673
+ AutoMinorVersionUpgrade?: boolean | undefined;
674
+ ReadReplicaSourceDBInstanceIdentifier?: string | undefined;
675
+ ReadReplicaDBInstanceIdentifiers?: string[] | undefined;
676
+ ReadReplicaDBClusterIdentifiers?: string[] | undefined;
677
+ LicenseModel?: string | undefined;
678
+ Iops?: number | undefined;
679
+ OptionGroupMemberships?: OptionGroupMembership[] | undefined;
680
+ CharacterSetName?: string | undefined;
681
+ SecondaryAvailabilityZone?: string | undefined;
682
+ PubliclyAccessible?: boolean | undefined;
683
+ StatusInfos?: DBInstanceStatusInfo[] | undefined;
684
+ StorageType?: string | undefined;
685
+ TdeCredentialArn?: string | undefined;
686
+ DbInstancePort?: number | undefined;
687
+ DBClusterIdentifier?: string | undefined;
688
+ StorageEncrypted?: boolean | undefined;
689
+ KmsKeyId?: string | undefined;
690
+ DbiResourceId?: string | undefined;
691
+ CACertificateIdentifier?: string | undefined;
692
+ DomainMemberships?: DomainMembership[] | undefined;
693
+ CopyTagsToSnapshot?: boolean | undefined;
694
+ MonitoringInterval?: number | undefined;
695
+ EnhancedMonitoringResourceArn?: string | undefined;
696
+ MonitoringRoleArn?: string | undefined;
697
+ PromotionTier?: number | undefined;
698
+ DBInstanceArn?: string | undefined;
699
+ Timezone?: string | undefined;
700
+ IAMDatabaseAuthenticationEnabled?: boolean | undefined;
701
+ PerformanceInsightsEnabled?: boolean | undefined;
702
+ PerformanceInsightsKMSKeyId?: string | undefined;
703
+ EnabledCloudwatchLogsExports?: string[] | undefined;
704
+ DeletionProtection?: boolean | undefined;
699
705
  }
700
706
  export interface CreateDBInstanceResult {
701
- DBInstance?: DBInstance;
707
+ DBInstance?: DBInstance | undefined;
702
708
  }
703
709
  export declare class DBInstanceAlreadyExistsFault extends __BaseException {
704
710
  readonly name: "DBInstanceAlreadyExistsFault";
@@ -766,19 +772,19 @@ export interface CreateDBParameterGroupMessage {
766
772
  DBParameterGroupName: string | undefined;
767
773
  DBParameterGroupFamily: string | undefined;
768
774
  Description: string | undefined;
769
- Tags?: Tag[];
775
+ Tags?: Tag[] | undefined;
770
776
  }
771
777
  export interface CreateDBParameterGroupResult {
772
- DBParameterGroup?: DBParameterGroup;
778
+ DBParameterGroup?: DBParameterGroup | undefined;
773
779
  }
774
780
  export interface CreateDBSubnetGroupMessage {
775
781
  DBSubnetGroupName: string | undefined;
776
782
  DBSubnetGroupDescription: string | undefined;
777
783
  SubnetIds: string[] | undefined;
778
- Tags?: Tag[];
784
+ Tags?: Tag[] | undefined;
779
785
  }
780
786
  export interface CreateDBSubnetGroupResult {
781
- DBSubnetGroup?: DBSubnetGroup;
787
+ DBSubnetGroup?: DBSubnetGroup | undefined;
782
788
  }
783
789
  export declare class DBSubnetGroupAlreadyExistsFault extends __BaseException {
784
790
  readonly name: "DBSubnetGroupAlreadyExistsFault";
@@ -810,14 +816,14 @@ export declare class DBSubnetQuotaExceededFault extends __BaseException {
810
816
  export interface CreateEventSubscriptionMessage {
811
817
  SubscriptionName: string | undefined;
812
818
  SnsTopicArn: string | undefined;
813
- SourceType?: string;
814
- EventCategories?: string[];
815
- SourceIds?: string[];
816
- Enabled?: boolean;
817
- Tags?: Tag[];
819
+ SourceType?: string | undefined;
820
+ EventCategories?: string[] | undefined;
821
+ SourceIds?: string[] | undefined;
822
+ Enabled?: boolean | undefined;
823
+ Tags?: Tag[] | undefined;
818
824
  }
819
825
  export interface CreateEventSubscriptionResult {
820
- EventSubscription?: EventSubscription;
826
+ EventSubscription?: EventSubscription | undefined;
821
827
  }
822
828
  export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
823
829
  readonly name: "EventSubscriptionQuotaExceededFault";
@@ -869,30 +875,30 @@ export declare class SubscriptionCategoryNotFoundFault extends __BaseException {
869
875
  }
870
876
  export interface CreateGlobalClusterMessage {
871
877
  GlobalClusterIdentifier: string | undefined;
872
- SourceDBClusterIdentifier?: string;
873
- Engine?: string;
874
- EngineVersion?: string;
875
- DeletionProtection?: boolean;
876
- StorageEncrypted?: boolean;
878
+ SourceDBClusterIdentifier?: string | undefined;
879
+ Engine?: string | undefined;
880
+ EngineVersion?: string | undefined;
881
+ DeletionProtection?: boolean | undefined;
882
+ StorageEncrypted?: boolean | undefined;
877
883
  }
878
884
  export interface GlobalClusterMember {
879
- DBClusterArn?: string;
880
- Readers?: string[];
881
- IsWriter?: boolean;
885
+ DBClusterArn?: string | undefined;
886
+ Readers?: string[] | undefined;
887
+ IsWriter?: boolean | undefined;
882
888
  }
883
889
  export interface GlobalCluster {
884
- GlobalClusterIdentifier?: string;
885
- GlobalClusterResourceId?: string;
886
- GlobalClusterArn?: string;
887
- Status?: string;
888
- Engine?: string;
889
- EngineVersion?: string;
890
- StorageEncrypted?: boolean;
891
- DeletionProtection?: boolean;
892
- GlobalClusterMembers?: GlobalClusterMember[];
890
+ GlobalClusterIdentifier?: string | undefined;
891
+ GlobalClusterResourceId?: string | undefined;
892
+ GlobalClusterArn?: string | undefined;
893
+ Status?: string | undefined;
894
+ Engine?: string | undefined;
895
+ EngineVersion?: string | undefined;
896
+ StorageEncrypted?: boolean | undefined;
897
+ DeletionProtection?: boolean | undefined;
898
+ GlobalClusterMembers?: GlobalClusterMember[] | undefined;
893
899
  }
894
900
  export interface CreateGlobalClusterResult {
895
- GlobalCluster?: GlobalCluster;
901
+ GlobalCluster?: GlobalCluster | undefined;
896
902
  }
897
903
  export declare class GlobalClusterAlreadyExistsFault extends __BaseException {
898
904
  readonly name: "GlobalClusterAlreadyExistsFault";
@@ -916,11 +922,11 @@ export declare class GlobalClusterQuotaExceededFault extends __BaseException {
916
922
  }
917
923
  export interface DeleteDBClusterMessage {
918
924
  DBClusterIdentifier: string | undefined;
919
- SkipFinalSnapshot?: boolean;
920
- FinalDBSnapshotIdentifier?: string;
925
+ SkipFinalSnapshot?: boolean | undefined;
926
+ FinalDBSnapshotIdentifier?: string | undefined;
921
927
  }
922
928
  export interface DeleteDBClusterResult {
923
- DBCluster?: DBCluster;
929
+ DBCluster?: DBCluster | undefined;
924
930
  }
925
931
  export declare class DBClusterEndpointNotFoundFault extends __BaseException {
926
932
  readonly name: "DBClusterEndpointNotFoundFault";
@@ -933,16 +939,16 @@ export interface DeleteDBClusterEndpointMessage {
933
939
  DBClusterEndpointIdentifier: string | undefined;
934
940
  }
935
941
  export interface DeleteDBClusterEndpointOutput {
936
- DBClusterEndpointIdentifier?: string;
937
- DBClusterIdentifier?: string;
938
- DBClusterEndpointResourceIdentifier?: string;
939
- Endpoint?: string;
940
- Status?: string;
941
- EndpointType?: string;
942
- CustomEndpointType?: string;
943
- StaticMembers?: string[];
944
- ExcludedMembers?: string[];
945
- DBClusterEndpointArn?: string;
942
+ DBClusterEndpointIdentifier?: string | undefined;
943
+ DBClusterIdentifier?: string | undefined;
944
+ DBClusterEndpointResourceIdentifier?: string | undefined;
945
+ Endpoint?: string | undefined;
946
+ Status?: string | undefined;
947
+ EndpointType?: string | undefined;
948
+ CustomEndpointType?: string | undefined;
949
+ StaticMembers?: string[] | undefined;
950
+ ExcludedMembers?: string[] | undefined;
951
+ DBClusterEndpointArn?: string | undefined;
946
952
  }
947
953
  export declare class InvalidDBClusterEndpointStateFault extends __BaseException {
948
954
  readonly name: "InvalidDBClusterEndpointStateFault";
@@ -971,7 +977,7 @@ export interface DeleteDBClusterSnapshotMessage {
971
977
  DBClusterSnapshotIdentifier: string | undefined;
972
978
  }
973
979
  export interface DeleteDBClusterSnapshotResult {
974
- DBClusterSnapshot?: DBClusterSnapshot;
980
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
975
981
  }
976
982
  export declare class DBSnapshotAlreadyExistsFault extends __BaseException {
977
983
  readonly name: "DBSnapshotAlreadyExistsFault";
@@ -982,11 +988,11 @@ export declare class DBSnapshotAlreadyExistsFault extends __BaseException {
982
988
  }
983
989
  export interface DeleteDBInstanceMessage {
984
990
  DBInstanceIdentifier: string | undefined;
985
- SkipFinalSnapshot?: boolean;
986
- FinalDBSnapshotIdentifier?: string;
991
+ SkipFinalSnapshot?: boolean | undefined;
992
+ FinalDBSnapshotIdentifier?: string | undefined;
987
993
  }
988
994
  export interface DeleteDBInstanceResult {
989
- DBInstance?: DBInstance;
995
+ DBInstance?: DBInstance | undefined;
990
996
  }
991
997
  export interface DeleteDBParameterGroupMessage {
992
998
  DBParameterGroupName: string | undefined;
@@ -1005,7 +1011,7 @@ export interface DeleteEventSubscriptionMessage {
1005
1011
  SubscriptionName: string | undefined;
1006
1012
  }
1007
1013
  export interface DeleteEventSubscriptionResult {
1008
- EventSubscription?: EventSubscription;
1014
+ EventSubscription?: EventSubscription | undefined;
1009
1015
  }
1010
1016
  export declare class InvalidEventSubscriptionStateFault extends __BaseException {
1011
1017
  readonly name: "InvalidEventSubscriptionStateFault";
@@ -1021,44 +1027,44 @@ export interface DeleteGlobalClusterMessage {
1021
1027
  GlobalClusterIdentifier: string | undefined;
1022
1028
  }
1023
1029
  export interface DeleteGlobalClusterResult {
1024
- GlobalCluster?: GlobalCluster;
1030
+ GlobalCluster?: GlobalCluster | undefined;
1025
1031
  }
1026
1032
  export interface DBClusterEndpoint {
1027
- DBClusterEndpointIdentifier?: string;
1028
- DBClusterIdentifier?: string;
1029
- DBClusterEndpointResourceIdentifier?: string;
1030
- Endpoint?: string;
1031
- Status?: string;
1032
- EndpointType?: string;
1033
- CustomEndpointType?: string;
1034
- StaticMembers?: string[];
1035
- ExcludedMembers?: string[];
1036
- DBClusterEndpointArn?: string;
1033
+ DBClusterEndpointIdentifier?: string | undefined;
1034
+ DBClusterIdentifier?: string | undefined;
1035
+ DBClusterEndpointResourceIdentifier?: string | undefined;
1036
+ Endpoint?: string | undefined;
1037
+ Status?: string | undefined;
1038
+ EndpointType?: string | undefined;
1039
+ CustomEndpointType?: string | undefined;
1040
+ StaticMembers?: string[] | undefined;
1041
+ ExcludedMembers?: string[] | undefined;
1042
+ DBClusterEndpointArn?: string | undefined;
1037
1043
  }
1038
1044
  export interface DBClusterEndpointMessage {
1039
- Marker?: string;
1040
- DBClusterEndpoints?: DBClusterEndpoint[];
1045
+ Marker?: string | undefined;
1046
+ DBClusterEndpoints?: DBClusterEndpoint[] | undefined;
1041
1047
  }
1042
1048
  export interface Filter {
1043
1049
  Name: string | undefined;
1044
1050
  Values: string[] | undefined;
1045
1051
  }
1046
1052
  export interface DescribeDBClusterEndpointsMessage {
1047
- DBClusterIdentifier?: string;
1048
- DBClusterEndpointIdentifier?: string;
1049
- Filters?: Filter[];
1050
- MaxRecords?: number;
1051
- Marker?: string;
1053
+ DBClusterIdentifier?: string | undefined;
1054
+ DBClusterEndpointIdentifier?: string | undefined;
1055
+ Filters?: Filter[] | undefined;
1056
+ MaxRecords?: number | undefined;
1057
+ Marker?: string | undefined;
1052
1058
  }
1053
1059
  export interface DBClusterParameterGroupsMessage {
1054
- Marker?: string;
1055
- DBClusterParameterGroups?: DBClusterParameterGroup[];
1060
+ Marker?: string | undefined;
1061
+ DBClusterParameterGroups?: DBClusterParameterGroup[] | undefined;
1056
1062
  }
1057
1063
  export interface DescribeDBClusterParameterGroupsMessage {
1058
- DBClusterParameterGroupName?: string;
1059
- Filters?: Filter[];
1060
- MaxRecords?: number;
1061
- Marker?: string;
1064
+ DBClusterParameterGroupName?: string | undefined;
1065
+ Filters?: Filter[] | undefined;
1066
+ MaxRecords?: number | undefined;
1067
+ Marker?: string | undefined;
1062
1068
  }
1063
1069
  export declare const ApplyMethod: {
1064
1070
  readonly immediate: "immediate";
@@ -1066,185 +1072,187 @@ export declare const ApplyMethod: {
1066
1072
  };
1067
1073
  export type ApplyMethod = (typeof ApplyMethod)[keyof typeof ApplyMethod];
1068
1074
  export interface Parameter {
1069
- ParameterName?: string;
1070
- ParameterValue?: string;
1071
- Description?: string;
1072
- Source?: string;
1073
- ApplyType?: string;
1074
- DataType?: string;
1075
- AllowedValues?: string;
1076
- IsModifiable?: boolean;
1077
- MinimumEngineVersion?: string;
1078
- ApplyMethod?: ApplyMethod;
1075
+ ParameterName?: string | undefined;
1076
+ ParameterValue?: string | undefined;
1077
+ Description?: string | undefined;
1078
+ Source?: string | undefined;
1079
+ ApplyType?: string | undefined;
1080
+ DataType?: string | undefined;
1081
+ AllowedValues?: string | undefined;
1082
+ IsModifiable?: boolean | undefined;
1083
+ MinimumEngineVersion?: string | undefined;
1084
+ ApplyMethod?: ApplyMethod | undefined;
1079
1085
  }
1080
1086
  export interface DBClusterParameterGroupDetails {
1081
- Parameters?: Parameter[];
1082
- Marker?: string;
1087
+ Parameters?: Parameter[] | undefined;
1088
+ Marker?: string | undefined;
1083
1089
  }
1084
1090
  export interface DescribeDBClusterParametersMessage {
1085
1091
  DBClusterParameterGroupName: string | undefined;
1086
- Source?: string;
1087
- Filters?: Filter[];
1088
- MaxRecords?: number;
1089
- Marker?: string;
1092
+ Source?: string | undefined;
1093
+ Filters?: Filter[] | undefined;
1094
+ MaxRecords?: number | undefined;
1095
+ Marker?: string | undefined;
1090
1096
  }
1091
1097
  export interface DBClusterMessage {
1092
- Marker?: string;
1093
- DBClusters?: DBCluster[];
1098
+ Marker?: string | undefined;
1099
+ DBClusters?: DBCluster[] | undefined;
1094
1100
  }
1095
1101
  export interface DescribeDBClustersMessage {
1096
- DBClusterIdentifier?: string;
1097
- Filters?: Filter[];
1098
- MaxRecords?: number;
1099
- Marker?: string;
1102
+ DBClusterIdentifier?: string | undefined;
1103
+ Filters?: Filter[] | undefined;
1104
+ MaxRecords?: number | undefined;
1105
+ Marker?: string | undefined;
1100
1106
  }
1101
1107
  export interface DescribeDBClusterSnapshotAttributesMessage {
1102
1108
  DBClusterSnapshotIdentifier: string | undefined;
1103
1109
  }
1104
1110
  export interface DBClusterSnapshotAttribute {
1105
- AttributeName?: string;
1106
- AttributeValues?: string[];
1111
+ AttributeName?: string | undefined;
1112
+ AttributeValues?: string[] | undefined;
1107
1113
  }
1108
1114
  export interface DBClusterSnapshotAttributesResult {
1109
- DBClusterSnapshotIdentifier?: string;
1110
- DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[];
1115
+ DBClusterSnapshotIdentifier?: string | undefined;
1116
+ DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[] | undefined;
1111
1117
  }
1112
1118
  export interface DescribeDBClusterSnapshotAttributesResult {
1113
- DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
1119
+ DBClusterSnapshotAttributesResult?:
1120
+ | DBClusterSnapshotAttributesResult
1121
+ | undefined;
1114
1122
  }
1115
1123
  export interface DBClusterSnapshotMessage {
1116
- Marker?: string;
1117
- DBClusterSnapshots?: DBClusterSnapshot[];
1124
+ Marker?: string | undefined;
1125
+ DBClusterSnapshots?: DBClusterSnapshot[] | undefined;
1118
1126
  }
1119
1127
  export interface DescribeDBClusterSnapshotsMessage {
1120
- DBClusterIdentifier?: string;
1121
- DBClusterSnapshotIdentifier?: string;
1122
- SnapshotType?: string;
1123
- Filters?: Filter[];
1124
- MaxRecords?: number;
1125
- Marker?: string;
1126
- IncludeShared?: boolean;
1127
- IncludePublic?: boolean;
1128
+ DBClusterIdentifier?: string | undefined;
1129
+ DBClusterSnapshotIdentifier?: string | undefined;
1130
+ SnapshotType?: string | undefined;
1131
+ Filters?: Filter[] | undefined;
1132
+ MaxRecords?: number | undefined;
1133
+ Marker?: string | undefined;
1134
+ IncludeShared?: boolean | undefined;
1135
+ IncludePublic?: boolean | undefined;
1128
1136
  }
1129
1137
  export interface CharacterSet {
1130
- CharacterSetName?: string;
1131
- CharacterSetDescription?: string;
1138
+ CharacterSetName?: string | undefined;
1139
+ CharacterSetDescription?: string | undefined;
1132
1140
  }
1133
1141
  export interface Timezone {
1134
- TimezoneName?: string;
1142
+ TimezoneName?: string | undefined;
1135
1143
  }
1136
1144
  export interface UpgradeTarget {
1137
- Engine?: string;
1138
- EngineVersion?: string;
1139
- Description?: string;
1140
- AutoUpgrade?: boolean;
1141
- IsMajorVersionUpgrade?: boolean;
1142
- SupportsGlobalDatabases?: boolean;
1145
+ Engine?: string | undefined;
1146
+ EngineVersion?: string | undefined;
1147
+ Description?: string | undefined;
1148
+ AutoUpgrade?: boolean | undefined;
1149
+ IsMajorVersionUpgrade?: boolean | undefined;
1150
+ SupportsGlobalDatabases?: boolean | undefined;
1143
1151
  }
1144
1152
  export interface DBEngineVersion {
1145
- Engine?: string;
1146
- EngineVersion?: string;
1147
- DBParameterGroupFamily?: string;
1148
- DBEngineDescription?: string;
1149
- DBEngineVersionDescription?: string;
1150
- DefaultCharacterSet?: CharacterSet;
1151
- SupportedCharacterSets?: CharacterSet[];
1152
- ValidUpgradeTarget?: UpgradeTarget[];
1153
- SupportedTimezones?: Timezone[];
1154
- ExportableLogTypes?: string[];
1155
- SupportsLogExportsToCloudwatchLogs?: boolean;
1156
- SupportsReadReplica?: boolean;
1157
- SupportsGlobalDatabases?: boolean;
1153
+ Engine?: string | undefined;
1154
+ EngineVersion?: string | undefined;
1155
+ DBParameterGroupFamily?: string | undefined;
1156
+ DBEngineDescription?: string | undefined;
1157
+ DBEngineVersionDescription?: string | undefined;
1158
+ DefaultCharacterSet?: CharacterSet | undefined;
1159
+ SupportedCharacterSets?: CharacterSet[] | undefined;
1160
+ ValidUpgradeTarget?: UpgradeTarget[] | undefined;
1161
+ SupportedTimezones?: Timezone[] | undefined;
1162
+ ExportableLogTypes?: string[] | undefined;
1163
+ SupportsLogExportsToCloudwatchLogs?: boolean | undefined;
1164
+ SupportsReadReplica?: boolean | undefined;
1165
+ SupportsGlobalDatabases?: boolean | undefined;
1158
1166
  }
1159
1167
  export interface DBEngineVersionMessage {
1160
- Marker?: string;
1161
- DBEngineVersions?: DBEngineVersion[];
1168
+ Marker?: string | undefined;
1169
+ DBEngineVersions?: DBEngineVersion[] | undefined;
1162
1170
  }
1163
1171
  export interface DescribeDBEngineVersionsMessage {
1164
- Engine?: string;
1165
- EngineVersion?: string;
1166
- DBParameterGroupFamily?: string;
1167
- Filters?: Filter[];
1168
- MaxRecords?: number;
1169
- Marker?: string;
1170
- DefaultOnly?: boolean;
1171
- ListSupportedCharacterSets?: boolean;
1172
- ListSupportedTimezones?: boolean;
1172
+ Engine?: string | undefined;
1173
+ EngineVersion?: string | undefined;
1174
+ DBParameterGroupFamily?: string | undefined;
1175
+ Filters?: Filter[] | undefined;
1176
+ MaxRecords?: number | undefined;
1177
+ Marker?: string | undefined;
1178
+ DefaultOnly?: boolean | undefined;
1179
+ ListSupportedCharacterSets?: boolean | undefined;
1180
+ ListSupportedTimezones?: boolean | undefined;
1173
1181
  }
1174
1182
  export interface DBInstanceMessage {
1175
- Marker?: string;
1176
- DBInstances?: DBInstance[];
1183
+ Marker?: string | undefined;
1184
+ DBInstances?: DBInstance[] | undefined;
1177
1185
  }
1178
1186
  export interface DescribeDBInstancesMessage {
1179
- DBInstanceIdentifier?: string;
1180
- Filters?: Filter[];
1181
- MaxRecords?: number;
1182
- Marker?: string;
1187
+ DBInstanceIdentifier?: string | undefined;
1188
+ Filters?: Filter[] | undefined;
1189
+ MaxRecords?: number | undefined;
1190
+ Marker?: string | undefined;
1183
1191
  }
1184
1192
  export interface DBParameterGroupsMessage {
1185
- Marker?: string;
1186
- DBParameterGroups?: DBParameterGroup[];
1193
+ Marker?: string | undefined;
1194
+ DBParameterGroups?: DBParameterGroup[] | undefined;
1187
1195
  }
1188
1196
  export interface DescribeDBParameterGroupsMessage {
1189
- DBParameterGroupName?: string;
1190
- Filters?: Filter[];
1191
- MaxRecords?: number;
1192
- Marker?: string;
1197
+ DBParameterGroupName?: string | undefined;
1198
+ Filters?: Filter[] | undefined;
1199
+ MaxRecords?: number | undefined;
1200
+ Marker?: string | undefined;
1193
1201
  }
1194
1202
  export interface DBParameterGroupDetails {
1195
- Parameters?: Parameter[];
1196
- Marker?: string;
1203
+ Parameters?: Parameter[] | undefined;
1204
+ Marker?: string | undefined;
1197
1205
  }
1198
1206
  export interface DescribeDBParametersMessage {
1199
1207
  DBParameterGroupName: string | undefined;
1200
- Source?: string;
1201
- Filters?: Filter[];
1202
- MaxRecords?: number;
1203
- Marker?: string;
1208
+ Source?: string | undefined;
1209
+ Filters?: Filter[] | undefined;
1210
+ MaxRecords?: number | undefined;
1211
+ Marker?: string | undefined;
1204
1212
  }
1205
1213
  export interface DBSubnetGroupMessage {
1206
- Marker?: string;
1207
- DBSubnetGroups?: DBSubnetGroup[];
1214
+ Marker?: string | undefined;
1215
+ DBSubnetGroups?: DBSubnetGroup[] | undefined;
1208
1216
  }
1209
1217
  export interface DescribeDBSubnetGroupsMessage {
1210
- DBSubnetGroupName?: string;
1211
- Filters?: Filter[];
1212
- MaxRecords?: number;
1213
- Marker?: string;
1218
+ DBSubnetGroupName?: string | undefined;
1219
+ Filters?: Filter[] | undefined;
1220
+ MaxRecords?: number | undefined;
1221
+ Marker?: string | undefined;
1214
1222
  }
1215
1223
  export interface DescribeEngineDefaultClusterParametersMessage {
1216
1224
  DBParameterGroupFamily: string | undefined;
1217
- Filters?: Filter[];
1218
- MaxRecords?: number;
1219
- Marker?: string;
1225
+ Filters?: Filter[] | undefined;
1226
+ MaxRecords?: number | undefined;
1227
+ Marker?: string | undefined;
1220
1228
  }
1221
1229
  export interface EngineDefaults {
1222
- DBParameterGroupFamily?: string;
1223
- Marker?: string;
1224
- Parameters?: Parameter[];
1230
+ DBParameterGroupFamily?: string | undefined;
1231
+ Marker?: string | undefined;
1232
+ Parameters?: Parameter[] | undefined;
1225
1233
  }
1226
1234
  export interface DescribeEngineDefaultClusterParametersResult {
1227
- EngineDefaults?: EngineDefaults;
1235
+ EngineDefaults?: EngineDefaults | undefined;
1228
1236
  }
1229
1237
  export interface DescribeEngineDefaultParametersMessage {
1230
1238
  DBParameterGroupFamily: string | undefined;
1231
- Filters?: Filter[];
1232
- MaxRecords?: number;
1233
- Marker?: string;
1239
+ Filters?: Filter[] | undefined;
1240
+ MaxRecords?: number | undefined;
1241
+ Marker?: string | undefined;
1234
1242
  }
1235
1243
  export interface DescribeEngineDefaultParametersResult {
1236
- EngineDefaults?: EngineDefaults;
1244
+ EngineDefaults?: EngineDefaults | undefined;
1237
1245
  }
1238
1246
  export interface DescribeEventCategoriesMessage {
1239
- SourceType?: string;
1240
- Filters?: Filter[];
1247
+ SourceType?: string | undefined;
1248
+ Filters?: Filter[] | undefined;
1241
1249
  }
1242
1250
  export interface EventCategoriesMap {
1243
- SourceType?: string;
1244
- EventCategories?: string[];
1251
+ SourceType?: string | undefined;
1252
+ EventCategories?: string[] | undefined;
1245
1253
  }
1246
1254
  export interface EventCategoriesMessage {
1247
- EventCategoriesMapList?: EventCategoriesMap[];
1255
+ EventCategoriesMapList?: EventCategoriesMap[] | undefined;
1248
1256
  }
1249
1257
  export declare const SourceType: {
1250
1258
  readonly db_cluster: "db-cluster";
@@ -1256,138 +1264,140 @@ export declare const SourceType: {
1256
1264
  };
1257
1265
  export type SourceType = (typeof SourceType)[keyof typeof SourceType];
1258
1266
  export interface DescribeEventsMessage {
1259
- SourceIdentifier?: string;
1260
- SourceType?: SourceType;
1261
- StartTime?: Date;
1262
- EndTime?: Date;
1263
- Duration?: number;
1264
- EventCategories?: string[];
1265
- Filters?: Filter[];
1266
- MaxRecords?: number;
1267
- Marker?: string;
1267
+ SourceIdentifier?: string | undefined;
1268
+ SourceType?: SourceType | undefined;
1269
+ StartTime?: Date | undefined;
1270
+ EndTime?: Date | undefined;
1271
+ Duration?: number | undefined;
1272
+ EventCategories?: string[] | undefined;
1273
+ Filters?: Filter[] | undefined;
1274
+ MaxRecords?: number | undefined;
1275
+ Marker?: string | undefined;
1268
1276
  }
1269
1277
  export interface Event {
1270
- SourceIdentifier?: string;
1271
- SourceType?: SourceType;
1272
- Message?: string;
1273
- EventCategories?: string[];
1274
- Date?: Date;
1275
- SourceArn?: string;
1278
+ SourceIdentifier?: string | undefined;
1279
+ SourceType?: SourceType | undefined;
1280
+ Message?: string | undefined;
1281
+ EventCategories?: string[] | undefined;
1282
+ Date?: Date | undefined;
1283
+ SourceArn?: string | undefined;
1276
1284
  }
1277
1285
  export interface EventsMessage {
1278
- Marker?: string;
1279
- Events?: Event[];
1286
+ Marker?: string | undefined;
1287
+ Events?: Event[] | undefined;
1280
1288
  }
1281
1289
  export interface DescribeEventSubscriptionsMessage {
1282
- SubscriptionName?: string;
1283
- Filters?: Filter[];
1284
- MaxRecords?: number;
1285
- Marker?: string;
1290
+ SubscriptionName?: string | undefined;
1291
+ Filters?: Filter[] | undefined;
1292
+ MaxRecords?: number | undefined;
1293
+ Marker?: string | undefined;
1286
1294
  }
1287
1295
  export interface EventSubscriptionsMessage {
1288
- Marker?: string;
1289
- EventSubscriptionsList?: EventSubscription[];
1296
+ Marker?: string | undefined;
1297
+ EventSubscriptionsList?: EventSubscription[] | undefined;
1290
1298
  }
1291
1299
  export interface DescribeGlobalClustersMessage {
1292
- GlobalClusterIdentifier?: string;
1293
- MaxRecords?: number;
1294
- Marker?: string;
1300
+ GlobalClusterIdentifier?: string | undefined;
1301
+ MaxRecords?: number | undefined;
1302
+ Marker?: string | undefined;
1295
1303
  }
1296
1304
  export interface GlobalClustersMessage {
1297
- Marker?: string;
1298
- GlobalClusters?: GlobalCluster[];
1305
+ Marker?: string | undefined;
1306
+ GlobalClusters?: GlobalCluster[] | undefined;
1299
1307
  }
1300
1308
  export interface DescribeOrderableDBInstanceOptionsMessage {
1301
1309
  Engine: string | undefined;
1302
- EngineVersion?: string;
1303
- DBInstanceClass?: string;
1304
- LicenseModel?: string;
1305
- Vpc?: boolean;
1306
- Filters?: Filter[];
1307
- MaxRecords?: number;
1308
- Marker?: string;
1310
+ EngineVersion?: string | undefined;
1311
+ DBInstanceClass?: string | undefined;
1312
+ LicenseModel?: string | undefined;
1313
+ Vpc?: boolean | undefined;
1314
+ Filters?: Filter[] | undefined;
1315
+ MaxRecords?: number | undefined;
1316
+ Marker?: string | undefined;
1309
1317
  }
1310
1318
  export interface OrderableDBInstanceOption {
1311
- Engine?: string;
1312
- EngineVersion?: string;
1313
- DBInstanceClass?: string;
1314
- LicenseModel?: string;
1315
- AvailabilityZones?: AvailabilityZone[];
1316
- MultiAZCapable?: boolean;
1317
- ReadReplicaCapable?: boolean;
1318
- Vpc?: boolean;
1319
- SupportsStorageEncryption?: boolean;
1320
- StorageType?: string;
1321
- SupportsIops?: boolean;
1322
- SupportsEnhancedMonitoring?: boolean;
1323
- SupportsIAMDatabaseAuthentication?: boolean;
1324
- SupportsPerformanceInsights?: boolean;
1325
- MinStorageSize?: number;
1326
- MaxStorageSize?: number;
1327
- MinIopsPerDbInstance?: number;
1328
- MaxIopsPerDbInstance?: number;
1329
- MinIopsPerGib?: number;
1330
- MaxIopsPerGib?: number;
1331
- SupportsGlobalDatabases?: boolean;
1319
+ Engine?: string | undefined;
1320
+ EngineVersion?: string | undefined;
1321
+ DBInstanceClass?: string | undefined;
1322
+ LicenseModel?: string | undefined;
1323
+ AvailabilityZones?: AvailabilityZone[] | undefined;
1324
+ MultiAZCapable?: boolean | undefined;
1325
+ ReadReplicaCapable?: boolean | undefined;
1326
+ Vpc?: boolean | undefined;
1327
+ SupportsStorageEncryption?: boolean | undefined;
1328
+ StorageType?: string | undefined;
1329
+ SupportsIops?: boolean | undefined;
1330
+ SupportsEnhancedMonitoring?: boolean | undefined;
1331
+ SupportsIAMDatabaseAuthentication?: boolean | undefined;
1332
+ SupportsPerformanceInsights?: boolean | undefined;
1333
+ MinStorageSize?: number | undefined;
1334
+ MaxStorageSize?: number | undefined;
1335
+ MinIopsPerDbInstance?: number | undefined;
1336
+ MaxIopsPerDbInstance?: number | undefined;
1337
+ MinIopsPerGib?: number | undefined;
1338
+ MaxIopsPerGib?: number | undefined;
1339
+ SupportsGlobalDatabases?: boolean | undefined;
1332
1340
  }
1333
1341
  export interface OrderableDBInstanceOptionsMessage {
1334
- OrderableDBInstanceOptions?: OrderableDBInstanceOption[];
1335
- Marker?: string;
1342
+ OrderableDBInstanceOptions?: OrderableDBInstanceOption[] | undefined;
1343
+ Marker?: string | undefined;
1336
1344
  }
1337
1345
  export interface DescribePendingMaintenanceActionsMessage {
1338
- ResourceIdentifier?: string;
1339
- Filters?: Filter[];
1340
- Marker?: string;
1341
- MaxRecords?: number;
1346
+ ResourceIdentifier?: string | undefined;
1347
+ Filters?: Filter[] | undefined;
1348
+ Marker?: string | undefined;
1349
+ MaxRecords?: number | undefined;
1342
1350
  }
1343
1351
  export interface PendingMaintenanceActionsMessage {
1344
- PendingMaintenanceActions?: ResourcePendingMaintenanceActions[];
1345
- Marker?: string;
1352
+ PendingMaintenanceActions?: ResourcePendingMaintenanceActions[] | undefined;
1353
+ Marker?: string | undefined;
1346
1354
  }
1347
1355
  export interface DescribeValidDBInstanceModificationsMessage {
1348
1356
  DBInstanceIdentifier: string | undefined;
1349
1357
  }
1350
1358
  export interface DoubleRange {
1351
- From?: number;
1352
- To?: number;
1359
+ From?: number | undefined;
1360
+ To?: number | undefined;
1353
1361
  }
1354
1362
  export interface Range {
1355
- From?: number;
1356
- To?: number;
1357
- Step?: number;
1363
+ From?: number | undefined;
1364
+ To?: number | undefined;
1365
+ Step?: number | undefined;
1358
1366
  }
1359
1367
  export interface ValidStorageOptions {
1360
- StorageType?: string;
1361
- StorageSize?: Range[];
1362
- ProvisionedIops?: Range[];
1363
- IopsToStorageRatio?: DoubleRange[];
1368
+ StorageType?: string | undefined;
1369
+ StorageSize?: Range[] | undefined;
1370
+ ProvisionedIops?: Range[] | undefined;
1371
+ IopsToStorageRatio?: DoubleRange[] | undefined;
1364
1372
  }
1365
1373
  export interface ValidDBInstanceModificationsMessage {
1366
- Storage?: ValidStorageOptions[];
1374
+ Storage?: ValidStorageOptions[] | undefined;
1367
1375
  }
1368
1376
  export interface DescribeValidDBInstanceModificationsResult {
1369
- ValidDBInstanceModificationsMessage?: ValidDBInstanceModificationsMessage;
1377
+ ValidDBInstanceModificationsMessage?:
1378
+ | ValidDBInstanceModificationsMessage
1379
+ | undefined;
1370
1380
  }
1371
1381
  export interface FailoverDBClusterMessage {
1372
- DBClusterIdentifier?: string;
1373
- TargetDBInstanceIdentifier?: string;
1382
+ DBClusterIdentifier?: string | undefined;
1383
+ TargetDBInstanceIdentifier?: string | undefined;
1374
1384
  }
1375
1385
  export interface FailoverDBClusterResult {
1376
- DBCluster?: DBCluster;
1386
+ DBCluster?: DBCluster | undefined;
1377
1387
  }
1378
1388
  export interface FailoverGlobalClusterMessage {
1379
1389
  GlobalClusterIdentifier: string | undefined;
1380
1390
  TargetDbClusterIdentifier: string | undefined;
1381
1391
  }
1382
1392
  export interface FailoverGlobalClusterResult {
1383
- GlobalCluster?: GlobalCluster;
1393
+ GlobalCluster?: GlobalCluster | undefined;
1384
1394
  }
1385
1395
  export interface ListTagsForResourceMessage {
1386
1396
  ResourceName: string | undefined;
1387
- Filters?: Filter[];
1397
+ Filters?: Filter[] | undefined;
1388
1398
  }
1389
1399
  export interface TagListMessage {
1390
- TagList?: Tag[];
1400
+ TagList?: Tag[] | undefined;
1391
1401
  }
1392
1402
  export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
1393
1403
  readonly name: "InvalidDBSecurityGroupStateFault";
@@ -1400,54 +1410,58 @@ export declare class InvalidDBSecurityGroupStateFault extends __BaseException {
1400
1410
  );
1401
1411
  }
1402
1412
  export interface CloudwatchLogsExportConfiguration {
1403
- EnableLogTypes?: string[];
1404
- DisableLogTypes?: string[];
1413
+ EnableLogTypes?: string[] | undefined;
1414
+ DisableLogTypes?: string[] | undefined;
1405
1415
  }
1406
1416
  export interface ModifyDBClusterMessage {
1407
1417
  DBClusterIdentifier: string | undefined;
1408
- NewDBClusterIdentifier?: string;
1409
- ApplyImmediately?: boolean;
1410
- BackupRetentionPeriod?: number;
1411
- DBClusterParameterGroupName?: string;
1412
- VpcSecurityGroupIds?: string[];
1413
- Port?: number;
1414
- MasterUserPassword?: string;
1415
- OptionGroupName?: string;
1416
- PreferredBackupWindow?: string;
1417
- PreferredMaintenanceWindow?: string;
1418
- EnableIAMDatabaseAuthentication?: boolean;
1419
- CloudwatchLogsExportConfiguration?: CloudwatchLogsExportConfiguration;
1420
- EngineVersion?: string;
1421
- AllowMajorVersionUpgrade?: boolean;
1422
- DBInstanceParameterGroupName?: string;
1423
- DeletionProtection?: boolean;
1424
- CopyTagsToSnapshot?: boolean;
1425
- ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1426
- StorageType?: string;
1418
+ NewDBClusterIdentifier?: string | undefined;
1419
+ ApplyImmediately?: boolean | undefined;
1420
+ BackupRetentionPeriod?: number | undefined;
1421
+ DBClusterParameterGroupName?: string | undefined;
1422
+ VpcSecurityGroupIds?: string[] | undefined;
1423
+ Port?: number | undefined;
1424
+ MasterUserPassword?: string | undefined;
1425
+ OptionGroupName?: string | undefined;
1426
+ PreferredBackupWindow?: string | undefined;
1427
+ PreferredMaintenanceWindow?: string | undefined;
1428
+ EnableIAMDatabaseAuthentication?: boolean | undefined;
1429
+ CloudwatchLogsExportConfiguration?:
1430
+ | CloudwatchLogsExportConfiguration
1431
+ | undefined;
1432
+ EngineVersion?: string | undefined;
1433
+ AllowMajorVersionUpgrade?: boolean | undefined;
1434
+ DBInstanceParameterGroupName?: string | undefined;
1435
+ DeletionProtection?: boolean | undefined;
1436
+ CopyTagsToSnapshot?: boolean | undefined;
1437
+ ServerlessV2ScalingConfiguration?:
1438
+ | ServerlessV2ScalingConfiguration
1439
+ | undefined;
1440
+ StorageType?: string | undefined;
1427
1441
  }
1428
1442
  export interface ModifyDBClusterResult {
1429
- DBCluster?: DBCluster;
1443
+ DBCluster?: DBCluster | undefined;
1430
1444
  }
1431
1445
  export interface ModifyDBClusterEndpointMessage {
1432
1446
  DBClusterEndpointIdentifier: string | undefined;
1433
- EndpointType?: string;
1434
- StaticMembers?: string[];
1435
- ExcludedMembers?: string[];
1447
+ EndpointType?: string | undefined;
1448
+ StaticMembers?: string[] | undefined;
1449
+ ExcludedMembers?: string[] | undefined;
1436
1450
  }
1437
1451
  export interface ModifyDBClusterEndpointOutput {
1438
- DBClusterEndpointIdentifier?: string;
1439
- DBClusterIdentifier?: string;
1440
- DBClusterEndpointResourceIdentifier?: string;
1441
- Endpoint?: string;
1442
- Status?: string;
1443
- EndpointType?: string;
1444
- CustomEndpointType?: string;
1445
- StaticMembers?: string[];
1446
- ExcludedMembers?: string[];
1447
- DBClusterEndpointArn?: string;
1452
+ DBClusterEndpointIdentifier?: string | undefined;
1453
+ DBClusterIdentifier?: string | undefined;
1454
+ DBClusterEndpointResourceIdentifier?: string | undefined;
1455
+ Endpoint?: string | undefined;
1456
+ Status?: string | undefined;
1457
+ EndpointType?: string | undefined;
1458
+ CustomEndpointType?: string | undefined;
1459
+ StaticMembers?: string[] | undefined;
1460
+ ExcludedMembers?: string[] | undefined;
1461
+ DBClusterEndpointArn?: string | undefined;
1448
1462
  }
1449
1463
  export interface DBClusterParameterGroupNameMessage {
1450
- DBClusterParameterGroupName?: string;
1464
+ DBClusterParameterGroupName?: string | undefined;
1451
1465
  }
1452
1466
  export interface ModifyDBClusterParameterGroupMessage {
1453
1467
  DBClusterParameterGroupName: string | undefined;
@@ -1456,11 +1470,13 @@ export interface ModifyDBClusterParameterGroupMessage {
1456
1470
  export interface ModifyDBClusterSnapshotAttributeMessage {
1457
1471
  DBClusterSnapshotIdentifier: string | undefined;
1458
1472
  AttributeName: string | undefined;
1459
- ValuesToAdd?: string[];
1460
- ValuesToRemove?: string[];
1473
+ ValuesToAdd?: string[] | undefined;
1474
+ ValuesToRemove?: string[] | undefined;
1461
1475
  }
1462
1476
  export interface ModifyDBClusterSnapshotAttributeResult {
1463
- DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
1477
+ DBClusterSnapshotAttributesResult?:
1478
+ | DBClusterSnapshotAttributesResult
1479
+ | undefined;
1464
1480
  }
1465
1481
  export declare class SharedSnapshotQuotaExceededFault extends __BaseException {
1466
1482
  readonly name: "SharedSnapshotQuotaExceededFault";
@@ -1491,48 +1507,50 @@ export declare class DBUpgradeDependencyFailureFault extends __BaseException {
1491
1507
  }
1492
1508
  export interface ModifyDBInstanceMessage {
1493
1509
  DBInstanceIdentifier: string | undefined;
1494
- AllocatedStorage?: number;
1495
- DBInstanceClass?: string;
1496
- DBSubnetGroupName?: string;
1497
- DBSecurityGroups?: string[];
1498
- VpcSecurityGroupIds?: string[];
1499
- ApplyImmediately?: boolean;
1500
- MasterUserPassword?: string;
1501
- DBParameterGroupName?: string;
1502
- BackupRetentionPeriod?: number;
1503
- PreferredBackupWindow?: string;
1504
- PreferredMaintenanceWindow?: string;
1505
- MultiAZ?: boolean;
1506
- EngineVersion?: string;
1507
- AllowMajorVersionUpgrade?: boolean;
1508
- AutoMinorVersionUpgrade?: boolean;
1509
- LicenseModel?: string;
1510
- Iops?: number;
1511
- OptionGroupName?: string;
1512
- NewDBInstanceIdentifier?: string;
1513
- StorageType?: string;
1514
- TdeCredentialArn?: string;
1515
- TdeCredentialPassword?: string;
1516
- CACertificateIdentifier?: string;
1517
- Domain?: string;
1518
- CopyTagsToSnapshot?: boolean;
1519
- MonitoringInterval?: number;
1520
- DBPortNumber?: number;
1521
- PubliclyAccessible?: boolean;
1522
- MonitoringRoleArn?: string;
1523
- DomainIAMRoleName?: string;
1524
- PromotionTier?: number;
1525
- EnableIAMDatabaseAuthentication?: boolean;
1526
- EnablePerformanceInsights?: boolean;
1527
- PerformanceInsightsKMSKeyId?: string;
1528
- CloudwatchLogsExportConfiguration?: CloudwatchLogsExportConfiguration;
1529
- DeletionProtection?: boolean;
1510
+ AllocatedStorage?: number | undefined;
1511
+ DBInstanceClass?: string | undefined;
1512
+ DBSubnetGroupName?: string | undefined;
1513
+ DBSecurityGroups?: string[] | undefined;
1514
+ VpcSecurityGroupIds?: string[] | undefined;
1515
+ ApplyImmediately?: boolean | undefined;
1516
+ MasterUserPassword?: string | undefined;
1517
+ DBParameterGroupName?: string | undefined;
1518
+ BackupRetentionPeriod?: number | undefined;
1519
+ PreferredBackupWindow?: string | undefined;
1520
+ PreferredMaintenanceWindow?: string | undefined;
1521
+ MultiAZ?: boolean | undefined;
1522
+ EngineVersion?: string | undefined;
1523
+ AllowMajorVersionUpgrade?: boolean | undefined;
1524
+ AutoMinorVersionUpgrade?: boolean | undefined;
1525
+ LicenseModel?: string | undefined;
1526
+ Iops?: number | undefined;
1527
+ OptionGroupName?: string | undefined;
1528
+ NewDBInstanceIdentifier?: string | undefined;
1529
+ StorageType?: string | undefined;
1530
+ TdeCredentialArn?: string | undefined;
1531
+ TdeCredentialPassword?: string | undefined;
1532
+ CACertificateIdentifier?: string | undefined;
1533
+ Domain?: string | undefined;
1534
+ CopyTagsToSnapshot?: boolean | undefined;
1535
+ MonitoringInterval?: number | undefined;
1536
+ DBPortNumber?: number | undefined;
1537
+ PubliclyAccessible?: boolean | undefined;
1538
+ MonitoringRoleArn?: string | undefined;
1539
+ DomainIAMRoleName?: string | undefined;
1540
+ PromotionTier?: number | undefined;
1541
+ EnableIAMDatabaseAuthentication?: boolean | undefined;
1542
+ EnablePerformanceInsights?: boolean | undefined;
1543
+ PerformanceInsightsKMSKeyId?: string | undefined;
1544
+ CloudwatchLogsExportConfiguration?:
1545
+ | CloudwatchLogsExportConfiguration
1546
+ | undefined;
1547
+ DeletionProtection?: boolean | undefined;
1530
1548
  }
1531
1549
  export interface ModifyDBInstanceResult {
1532
- DBInstance?: DBInstance;
1550
+ DBInstance?: DBInstance | undefined;
1533
1551
  }
1534
1552
  export interface DBParameterGroupNameMessage {
1535
- DBParameterGroupName?: string;
1553
+ DBParameterGroupName?: string | undefined;
1536
1554
  }
1537
1555
  export interface ModifyDBParameterGroupMessage {
1538
1556
  DBParameterGroupName: string | undefined;
@@ -1540,11 +1558,11 @@ export interface ModifyDBParameterGroupMessage {
1540
1558
  }
1541
1559
  export interface ModifyDBSubnetGroupMessage {
1542
1560
  DBSubnetGroupName: string | undefined;
1543
- DBSubnetGroupDescription?: string;
1561
+ DBSubnetGroupDescription?: string | undefined;
1544
1562
  SubnetIds: string[] | undefined;
1545
1563
  }
1546
1564
  export interface ModifyDBSubnetGroupResult {
1547
- DBSubnetGroup?: DBSubnetGroup;
1565
+ DBSubnetGroup?: DBSubnetGroup | undefined;
1548
1566
  }
1549
1567
  export declare class SubnetAlreadyInUse extends __BaseException {
1550
1568
  readonly name: "SubnetAlreadyInUse";
@@ -1553,43 +1571,43 @@ export declare class SubnetAlreadyInUse extends __BaseException {
1553
1571
  }
1554
1572
  export interface ModifyEventSubscriptionMessage {
1555
1573
  SubscriptionName: string | undefined;
1556
- SnsTopicArn?: string;
1557
- SourceType?: string;
1558
- EventCategories?: string[];
1559
- Enabled?: boolean;
1574
+ SnsTopicArn?: string | undefined;
1575
+ SourceType?: string | undefined;
1576
+ EventCategories?: string[] | undefined;
1577
+ Enabled?: boolean | undefined;
1560
1578
  }
1561
1579
  export interface ModifyEventSubscriptionResult {
1562
- EventSubscription?: EventSubscription;
1580
+ EventSubscription?: EventSubscription | undefined;
1563
1581
  }
1564
1582
  export interface ModifyGlobalClusterMessage {
1565
1583
  GlobalClusterIdentifier: string | undefined;
1566
- NewGlobalClusterIdentifier?: string;
1567
- DeletionProtection?: boolean;
1568
- EngineVersion?: string;
1569
- AllowMajorVersionUpgrade?: boolean;
1584
+ NewGlobalClusterIdentifier?: string | undefined;
1585
+ DeletionProtection?: boolean | undefined;
1586
+ EngineVersion?: string | undefined;
1587
+ AllowMajorVersionUpgrade?: boolean | undefined;
1570
1588
  }
1571
1589
  export interface ModifyGlobalClusterResult {
1572
- GlobalCluster?: GlobalCluster;
1590
+ GlobalCluster?: GlobalCluster | undefined;
1573
1591
  }
1574
1592
  export interface PromoteReadReplicaDBClusterMessage {
1575
1593
  DBClusterIdentifier: string | undefined;
1576
1594
  }
1577
1595
  export interface PromoteReadReplicaDBClusterResult {
1578
- DBCluster?: DBCluster;
1596
+ DBCluster?: DBCluster | undefined;
1579
1597
  }
1580
1598
  export interface RebootDBInstanceMessage {
1581
1599
  DBInstanceIdentifier: string | undefined;
1582
- ForceFailover?: boolean;
1600
+ ForceFailover?: boolean | undefined;
1583
1601
  }
1584
1602
  export interface RebootDBInstanceResult {
1585
- DBInstance?: DBInstance;
1603
+ DBInstance?: DBInstance | undefined;
1586
1604
  }
1587
1605
  export interface RemoveFromGlobalClusterMessage {
1588
1606
  GlobalClusterIdentifier: string | undefined;
1589
1607
  DbClusterIdentifier: string | undefined;
1590
1608
  }
1591
1609
  export interface RemoveFromGlobalClusterResult {
1592
- GlobalCluster?: GlobalCluster;
1610
+ GlobalCluster?: GlobalCluster | undefined;
1593
1611
  }
1594
1612
  export declare class DBClusterRoleNotFoundFault extends __BaseException {
1595
1613
  readonly name: "DBClusterRoleNotFoundFault";
@@ -1601,14 +1619,14 @@ export declare class DBClusterRoleNotFoundFault extends __BaseException {
1601
1619
  export interface RemoveRoleFromDBClusterMessage {
1602
1620
  DBClusterIdentifier: string | undefined;
1603
1621
  RoleArn: string | undefined;
1604
- FeatureName?: string;
1622
+ FeatureName?: string | undefined;
1605
1623
  }
1606
1624
  export interface RemoveSourceIdentifierFromSubscriptionMessage {
1607
1625
  SubscriptionName: string | undefined;
1608
1626
  SourceIdentifier: string | undefined;
1609
1627
  }
1610
1628
  export interface RemoveSourceIdentifierFromSubscriptionResult {
1611
- EventSubscription?: EventSubscription;
1629
+ EventSubscription?: EventSubscription | undefined;
1612
1630
  }
1613
1631
  export interface RemoveTagsFromResourceMessage {
1614
1632
  ResourceName: string | undefined;
@@ -1616,13 +1634,13 @@ export interface RemoveTagsFromResourceMessage {
1616
1634
  }
1617
1635
  export interface ResetDBClusterParameterGroupMessage {
1618
1636
  DBClusterParameterGroupName: string | undefined;
1619
- ResetAllParameters?: boolean;
1620
- Parameters?: Parameter[];
1637
+ ResetAllParameters?: boolean | undefined;
1638
+ Parameters?: Parameter[] | undefined;
1621
1639
  }
1622
1640
  export interface ResetDBParameterGroupMessage {
1623
1641
  DBParameterGroupName: string | undefined;
1624
- ResetAllParameters?: boolean;
1625
- Parameters?: Parameter[];
1642
+ ResetAllParameters?: boolean | undefined;
1643
+ Parameters?: Parameter[] | undefined;
1626
1644
  }
1627
1645
  export declare class InsufficientDBClusterCapacityFault extends __BaseException {
1628
1646
  readonly name: "InsufficientDBClusterCapacityFault";
@@ -1649,62 +1667,66 @@ export declare class InvalidRestoreFault extends __BaseException {
1649
1667
  );
1650
1668
  }
1651
1669
  export interface RestoreDBClusterFromSnapshotMessage {
1652
- AvailabilityZones?: string[];
1670
+ AvailabilityZones?: string[] | undefined;
1653
1671
  DBClusterIdentifier: string | undefined;
1654
1672
  SnapshotIdentifier: string | undefined;
1655
1673
  Engine: string | undefined;
1656
- EngineVersion?: string;
1657
- Port?: number;
1658
- DBSubnetGroupName?: string;
1659
- DatabaseName?: string;
1660
- OptionGroupName?: string;
1661
- VpcSecurityGroupIds?: string[];
1662
- Tags?: Tag[];
1663
- KmsKeyId?: string;
1664
- EnableIAMDatabaseAuthentication?: boolean;
1665
- EnableCloudwatchLogsExports?: string[];
1666
- DBClusterParameterGroupName?: string;
1667
- DeletionProtection?: boolean;
1668
- CopyTagsToSnapshot?: boolean;
1669
- ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1670
- StorageType?: string;
1674
+ EngineVersion?: string | undefined;
1675
+ Port?: number | undefined;
1676
+ DBSubnetGroupName?: string | undefined;
1677
+ DatabaseName?: string | undefined;
1678
+ OptionGroupName?: string | undefined;
1679
+ VpcSecurityGroupIds?: string[] | undefined;
1680
+ Tags?: Tag[] | undefined;
1681
+ KmsKeyId?: string | undefined;
1682
+ EnableIAMDatabaseAuthentication?: boolean | undefined;
1683
+ EnableCloudwatchLogsExports?: string[] | undefined;
1684
+ DBClusterParameterGroupName?: string | undefined;
1685
+ DeletionProtection?: boolean | undefined;
1686
+ CopyTagsToSnapshot?: boolean | undefined;
1687
+ ServerlessV2ScalingConfiguration?:
1688
+ | ServerlessV2ScalingConfiguration
1689
+ | undefined;
1690
+ StorageType?: string | undefined;
1671
1691
  }
1672
1692
  export interface RestoreDBClusterFromSnapshotResult {
1673
- DBCluster?: DBCluster;
1693
+ DBCluster?: DBCluster | undefined;
1674
1694
  }
1675
1695
  export interface RestoreDBClusterToPointInTimeMessage {
1676
1696
  DBClusterIdentifier: string | undefined;
1677
- RestoreType?: string;
1697
+ RestoreType?: string | undefined;
1678
1698
  SourceDBClusterIdentifier: string | undefined;
1679
- RestoreToTime?: Date;
1680
- UseLatestRestorableTime?: boolean;
1681
- Port?: number;
1682
- DBSubnetGroupName?: string;
1683
- OptionGroupName?: string;
1684
- VpcSecurityGroupIds?: string[];
1685
- Tags?: Tag[];
1686
- KmsKeyId?: string;
1687
- EnableIAMDatabaseAuthentication?: boolean;
1688
- EnableCloudwatchLogsExports?: string[];
1689
- DBClusterParameterGroupName?: string;
1690
- DeletionProtection?: boolean;
1691
- ServerlessV2ScalingConfiguration?: ServerlessV2ScalingConfiguration;
1692
- StorageType?: string;
1699
+ RestoreToTime?: Date | undefined;
1700
+ UseLatestRestorableTime?: boolean | undefined;
1701
+ Port?: number | undefined;
1702
+ DBSubnetGroupName?: string | undefined;
1703
+ OptionGroupName?: string | undefined;
1704
+ VpcSecurityGroupIds?: string[] | undefined;
1705
+ Tags?: Tag[] | undefined;
1706
+ KmsKeyId?: string | undefined;
1707
+ EnableIAMDatabaseAuthentication?: boolean | undefined;
1708
+ EnableCloudwatchLogsExports?: string[] | undefined;
1709
+ DBClusterParameterGroupName?: string | undefined;
1710
+ DeletionProtection?: boolean | undefined;
1711
+ ServerlessV2ScalingConfiguration?:
1712
+ | ServerlessV2ScalingConfiguration
1713
+ | undefined;
1714
+ StorageType?: string | undefined;
1693
1715
  }
1694
1716
  export interface RestoreDBClusterToPointInTimeResult {
1695
- DBCluster?: DBCluster;
1717
+ DBCluster?: DBCluster | undefined;
1696
1718
  }
1697
1719
  export interface StartDBClusterMessage {
1698
1720
  DBClusterIdentifier: string | undefined;
1699
1721
  }
1700
1722
  export interface StartDBClusterResult {
1701
- DBCluster?: DBCluster;
1723
+ DBCluster?: DBCluster | undefined;
1702
1724
  }
1703
1725
  export interface StopDBClusterMessage {
1704
1726
  DBClusterIdentifier: string | undefined;
1705
1727
  }
1706
1728
  export interface StopDBClusterResult {
1707
- DBCluster?: DBCluster;
1729
+ DBCluster?: DBCluster | undefined;
1708
1730
  }
1709
1731
  export declare const CreateDBInstanceMessageFilterSensitiveLog: (
1710
1732
  obj: CreateDBInstanceMessage