@aws-sdk/client-redshift 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,8 +5,8 @@ export interface AcceptReservedNodeExchangeInputMessage {
5
5
  TargetReservedNodeOfferingId: string | undefined;
6
6
  }
7
7
  export interface RecurringCharge {
8
- RecurringChargeAmount?: number;
9
- RecurringChargeFrequency?: string;
8
+ RecurringChargeAmount?: number | undefined;
9
+ RecurringChargeFrequency?: string | undefined;
10
10
  }
11
11
  export declare const ReservedNodeOfferingType: {
12
12
  readonly Regular: "Regular";
@@ -15,22 +15,22 @@ export declare const ReservedNodeOfferingType: {
15
15
  export type ReservedNodeOfferingType =
16
16
  (typeof ReservedNodeOfferingType)[keyof typeof ReservedNodeOfferingType];
17
17
  export interface ReservedNode {
18
- ReservedNodeId?: string;
19
- ReservedNodeOfferingId?: string;
20
- NodeType?: string;
21
- StartTime?: Date;
22
- Duration?: number;
23
- FixedPrice?: number;
24
- UsagePrice?: number;
25
- CurrencyCode?: string;
26
- NodeCount?: number;
27
- State?: string;
28
- OfferingType?: string;
29
- RecurringCharges?: RecurringCharge[];
30
- ReservedNodeOfferingType?: ReservedNodeOfferingType;
18
+ ReservedNodeId?: string | undefined;
19
+ ReservedNodeOfferingId?: string | undefined;
20
+ NodeType?: string | undefined;
21
+ StartTime?: Date | undefined;
22
+ Duration?: number | undefined;
23
+ FixedPrice?: number | undefined;
24
+ UsagePrice?: number | undefined;
25
+ CurrencyCode?: string | undefined;
26
+ NodeCount?: number | undefined;
27
+ State?: string | undefined;
28
+ OfferingType?: string | undefined;
29
+ RecurringCharges?: RecurringCharge[] | undefined;
30
+ ReservedNodeOfferingType?: ReservedNodeOfferingType | undefined;
31
31
  }
32
32
  export interface AcceptReservedNodeExchangeOutputMessage {
33
- ExchangedReservedNode?: ReservedNode;
33
+ ExchangedReservedNode?: ReservedNode | undefined;
34
34
  }
35
35
  export declare class DependentServiceUnavailableFault extends __BaseException {
36
36
  readonly name: "DependentServiceUnavailableFault";
@@ -105,18 +105,18 @@ export declare class AccessToSnapshotDeniedFault extends __BaseException {
105
105
  );
106
106
  }
107
107
  export interface AttributeValueTarget {
108
- AttributeValue?: string;
108
+ AttributeValue?: string | undefined;
109
109
  }
110
110
  export interface AccountAttribute {
111
- AttributeName?: string;
112
- AttributeValues?: AttributeValueTarget[];
111
+ AttributeName?: string | undefined;
112
+ AttributeValues?: AttributeValueTarget[] | undefined;
113
113
  }
114
114
  export interface AccountAttributeList {
115
- AccountAttributes?: AccountAttribute[];
115
+ AccountAttributes?: AccountAttribute[] | undefined;
116
116
  }
117
117
  export interface AccountWithRestoreAccess {
118
- AccountId?: string;
119
- AccountAlias?: string;
118
+ AccountId?: string | undefined;
119
+ AccountAlias?: string | undefined;
120
120
  }
121
121
  export declare const ActionType: {
122
122
  readonly RECOMMEND_NODE_CONFIG: "recommend-node-config";
@@ -138,8 +138,8 @@ export interface PartnerIntegrationInputMessage {
138
138
  PartnerName: string | undefined;
139
139
  }
140
140
  export interface PartnerIntegrationOutputMessage {
141
- DatabaseName?: string;
142
- PartnerName?: string;
141
+ DatabaseName?: string | undefined;
142
+ PartnerName?: string | undefined;
143
143
  }
144
144
  export declare class PartnerNotFoundFault extends __BaseException {
145
145
  readonly name: "PartnerNotFoundFault";
@@ -172,15 +172,15 @@ export declare const AquaStatus: {
172
172
  };
173
173
  export type AquaStatus = (typeof AquaStatus)[keyof typeof AquaStatus];
174
174
  export interface AquaConfiguration {
175
- AquaStatus?: AquaStatus;
176
- AquaConfigurationStatus?: AquaConfigurationStatus;
175
+ AquaStatus?: AquaStatus | undefined;
176
+ AquaConfigurationStatus?: AquaConfigurationStatus | undefined;
177
177
  }
178
178
  export interface AssociateDataShareConsumerMessage {
179
179
  DataShareArn: string | undefined;
180
- AssociateEntireAccount?: boolean;
181
- ConsumerArn?: string;
182
- ConsumerRegion?: string;
183
- AllowWrites?: boolean;
180
+ AssociateEntireAccount?: boolean | undefined;
181
+ ConsumerArn?: string | undefined;
182
+ ConsumerRegion?: string | undefined;
183
+ AllowWrites?: boolean | undefined;
184
184
  }
185
185
  export declare const DataShareStatus: {
186
186
  readonly ACTIVE: "ACTIVE";
@@ -193,20 +193,20 @@ export declare const DataShareStatus: {
193
193
  export type DataShareStatus =
194
194
  (typeof DataShareStatus)[keyof typeof DataShareStatus];
195
195
  export interface DataShareAssociation {
196
- ConsumerIdentifier?: string;
197
- Status?: DataShareStatus;
198
- ConsumerRegion?: string;
199
- CreatedDate?: Date;
200
- StatusChangeDate?: Date;
201
- ProducerAllowedWrites?: boolean;
202
- ConsumerAcceptedWrites?: boolean;
196
+ ConsumerIdentifier?: string | undefined;
197
+ Status?: DataShareStatus | undefined;
198
+ ConsumerRegion?: string | undefined;
199
+ CreatedDate?: Date | undefined;
200
+ StatusChangeDate?: Date | undefined;
201
+ ProducerAllowedWrites?: boolean | undefined;
202
+ ConsumerAcceptedWrites?: boolean | undefined;
203
203
  }
204
204
  export interface DataShare {
205
- DataShareArn?: string;
206
- ProducerArn?: string;
207
- AllowPubliclyAccessibleConsumers?: boolean;
208
- DataShareAssociations?: DataShareAssociation[];
209
- ManagedBy?: string;
205
+ DataShareArn?: string | undefined;
206
+ ProducerArn?: string | undefined;
207
+ AllowPubliclyAccessibleConsumers?: boolean | undefined;
208
+ DataShareAssociations?: DataShareAssociation[] | undefined;
209
+ ManagedBy?: string | undefined;
210
210
  }
211
211
  export declare class InvalidDataShareFault extends __BaseException {
212
212
  readonly name: "InvalidDataShareFault";
@@ -229,21 +229,21 @@ export declare const ScheduleState: {
229
229
  };
230
230
  export type ScheduleState = (typeof ScheduleState)[keyof typeof ScheduleState];
231
231
  export interface ClusterAssociatedToSchedule {
232
- ClusterIdentifier?: string;
233
- ScheduleAssociationState?: ScheduleState;
232
+ ClusterIdentifier?: string | undefined;
233
+ ScheduleAssociationState?: ScheduleState | undefined;
234
234
  }
235
235
  export interface CertificateAssociation {
236
- CustomDomainName?: string;
237
- ClusterIdentifier?: string;
236
+ CustomDomainName?: string | undefined;
237
+ ClusterIdentifier?: string | undefined;
238
238
  }
239
239
  export interface Association {
240
- CustomDomainCertificateArn?: string;
241
- CustomDomainCertificateExpiryDate?: Date;
242
- CertificateAssociations?: CertificateAssociation[];
240
+ CustomDomainCertificateArn?: string | undefined;
241
+ CustomDomainCertificateExpiryDate?: Date | undefined;
242
+ CertificateAssociations?: CertificateAssociation[] | undefined;
243
243
  }
244
244
  export interface AuthenticationProfile {
245
- AuthenticationProfileName?: string;
246
- AuthenticationProfileContent?: string;
245
+ AuthenticationProfileName?: string | undefined;
246
+ AuthenticationProfileContent?: string | undefined;
247
247
  }
248
248
  export declare class AuthenticationProfileAlreadyExistsFault extends __BaseException {
249
249
  readonly name: "AuthenticationProfileAlreadyExistsFault";
@@ -310,34 +310,34 @@ export type AuthorizationStatus =
310
310
  (typeof AuthorizationStatus)[keyof typeof AuthorizationStatus];
311
311
  export interface AuthorizeClusterSecurityGroupIngressMessage {
312
312
  ClusterSecurityGroupName: string | undefined;
313
- CIDRIP?: string;
314
- EC2SecurityGroupName?: string;
315
- EC2SecurityGroupOwnerId?: string;
313
+ CIDRIP?: string | undefined;
314
+ EC2SecurityGroupName?: string | undefined;
315
+ EC2SecurityGroupOwnerId?: string | undefined;
316
316
  }
317
317
  export interface Tag {
318
- Key?: string;
319
- Value?: string;
318
+ Key?: string | undefined;
319
+ Value?: string | undefined;
320
320
  }
321
321
  export interface EC2SecurityGroup {
322
- Status?: string;
323
- EC2SecurityGroupName?: string;
324
- EC2SecurityGroupOwnerId?: string;
325
- Tags?: Tag[];
322
+ Status?: string | undefined;
323
+ EC2SecurityGroupName?: string | undefined;
324
+ EC2SecurityGroupOwnerId?: string | undefined;
325
+ Tags?: Tag[] | undefined;
326
326
  }
327
327
  export interface IPRange {
328
- Status?: string;
329
- CIDRIP?: string;
330
- Tags?: Tag[];
328
+ Status?: string | undefined;
329
+ CIDRIP?: string | undefined;
330
+ Tags?: Tag[] | undefined;
331
331
  }
332
332
  export interface ClusterSecurityGroup {
333
- ClusterSecurityGroupName?: string;
334
- Description?: string;
335
- EC2SecurityGroups?: EC2SecurityGroup[];
336
- IPRanges?: IPRange[];
337
- Tags?: Tag[];
333
+ ClusterSecurityGroupName?: string | undefined;
334
+ Description?: string | undefined;
335
+ EC2SecurityGroups?: EC2SecurityGroup[] | undefined;
336
+ IPRanges?: IPRange[] | undefined;
337
+ Tags?: Tag[] | undefined;
338
338
  }
339
339
  export interface AuthorizeClusterSecurityGroupIngressResult {
340
- ClusterSecurityGroup?: ClusterSecurityGroup;
340
+ ClusterSecurityGroup?: ClusterSecurityGroup | undefined;
341
341
  }
342
342
  export declare class ClusterSecurityGroupNotFoundFault extends __BaseException {
343
343
  readonly name: "ClusterSecurityGroupNotFoundFault";
@@ -362,27 +362,27 @@ export declare class InvalidClusterSecurityGroupStateFault extends __BaseExcepti
362
362
  export interface AuthorizeDataShareMessage {
363
363
  DataShareArn: string | undefined;
364
364
  ConsumerIdentifier: string | undefined;
365
- AllowWrites?: boolean;
365
+ AllowWrites?: boolean | undefined;
366
366
  }
367
367
  export interface AuthorizedTokenIssuer {
368
- TrustedTokenIssuerArn?: string;
369
- AuthorizedAudiencesList?: string[];
368
+ TrustedTokenIssuerArn?: string | undefined;
369
+ AuthorizedAudiencesList?: string[] | undefined;
370
370
  }
371
371
  export interface AuthorizeEndpointAccessMessage {
372
- ClusterIdentifier?: string;
372
+ ClusterIdentifier?: string | undefined;
373
373
  Account: string | undefined;
374
- VpcIds?: string[];
374
+ VpcIds?: string[] | undefined;
375
375
  }
376
376
  export interface EndpointAuthorization {
377
- Grantor?: string;
378
- Grantee?: string;
379
- ClusterIdentifier?: string;
380
- AuthorizeTime?: Date;
381
- ClusterStatus?: string;
382
- Status?: AuthorizationStatus;
383
- AllowedAllVPCs?: boolean;
384
- AllowedVPCs?: string[];
385
- EndpointCount?: number;
377
+ Grantor?: string | undefined;
378
+ Grantee?: string | undefined;
379
+ ClusterIdentifier?: string | undefined;
380
+ AuthorizeTime?: Date | undefined;
381
+ ClusterStatus?: string | undefined;
382
+ Status?: AuthorizationStatus | undefined;
383
+ AllowedAllVPCs?: boolean | undefined;
384
+ AllowedVPCs?: string[] | undefined;
385
+ EndpointCount?: number | undefined;
386
386
  }
387
387
  export declare class EndpointAuthorizationAlreadyExistsFault extends __BaseException {
388
388
  readonly name: "EndpointAuthorizationAlreadyExistsFault";
@@ -419,52 +419,52 @@ export declare class InvalidClusterStateFault extends __BaseException {
419
419
  );
420
420
  }
421
421
  export interface AuthorizeSnapshotAccessMessage {
422
- SnapshotIdentifier?: string;
423
- SnapshotArn?: string;
424
- SnapshotClusterIdentifier?: string;
422
+ SnapshotIdentifier?: string | undefined;
423
+ SnapshotArn?: string | undefined;
424
+ SnapshotClusterIdentifier?: string | undefined;
425
425
  AccountWithRestoreAccess: string | undefined;
426
426
  }
427
427
  export interface Snapshot {
428
- SnapshotIdentifier?: string;
429
- ClusterIdentifier?: string;
430
- SnapshotCreateTime?: Date;
431
- Status?: string;
432
- Port?: number;
433
- AvailabilityZone?: string;
434
- ClusterCreateTime?: Date;
435
- MasterUsername?: string;
436
- ClusterVersion?: string;
437
- EngineFullVersion?: string;
438
- SnapshotType?: string;
439
- NodeType?: string;
440
- NumberOfNodes?: number;
441
- DBName?: string;
442
- VpcId?: string;
443
- Encrypted?: boolean;
444
- KmsKeyId?: string;
445
- EncryptedWithHSM?: boolean;
446
- AccountsWithRestoreAccess?: AccountWithRestoreAccess[];
447
- OwnerAccount?: string;
448
- TotalBackupSizeInMegaBytes?: number;
449
- ActualIncrementalBackupSizeInMegaBytes?: number;
450
- BackupProgressInMegaBytes?: number;
451
- CurrentBackupRateInMegaBytesPerSecond?: number;
452
- EstimatedSecondsToCompletion?: number;
453
- ElapsedTimeInSeconds?: number;
454
- SourceRegion?: string;
455
- Tags?: Tag[];
456
- RestorableNodeTypes?: string[];
457
- EnhancedVpcRouting?: boolean;
458
- MaintenanceTrackName?: string;
459
- ManualSnapshotRetentionPeriod?: number;
460
- ManualSnapshotRemainingDays?: number;
461
- SnapshotRetentionStartTime?: Date;
462
- MasterPasswordSecretArn?: string;
463
- MasterPasswordSecretKmsKeyId?: string;
464
- SnapshotArn?: string;
428
+ SnapshotIdentifier?: string | undefined;
429
+ ClusterIdentifier?: string | undefined;
430
+ SnapshotCreateTime?: Date | undefined;
431
+ Status?: string | undefined;
432
+ Port?: number | undefined;
433
+ AvailabilityZone?: string | undefined;
434
+ ClusterCreateTime?: Date | undefined;
435
+ MasterUsername?: string | undefined;
436
+ ClusterVersion?: string | undefined;
437
+ EngineFullVersion?: string | undefined;
438
+ SnapshotType?: string | undefined;
439
+ NodeType?: string | undefined;
440
+ NumberOfNodes?: number | undefined;
441
+ DBName?: string | undefined;
442
+ VpcId?: string | undefined;
443
+ Encrypted?: boolean | undefined;
444
+ KmsKeyId?: string | undefined;
445
+ EncryptedWithHSM?: boolean | undefined;
446
+ AccountsWithRestoreAccess?: AccountWithRestoreAccess[] | undefined;
447
+ OwnerAccount?: string | undefined;
448
+ TotalBackupSizeInMegaBytes?: number | undefined;
449
+ ActualIncrementalBackupSizeInMegaBytes?: number | undefined;
450
+ BackupProgressInMegaBytes?: number | undefined;
451
+ CurrentBackupRateInMegaBytesPerSecond?: number | undefined;
452
+ EstimatedSecondsToCompletion?: number | undefined;
453
+ ElapsedTimeInSeconds?: number | undefined;
454
+ SourceRegion?: string | undefined;
455
+ Tags?: Tag[] | undefined;
456
+ RestorableNodeTypes?: string[] | undefined;
457
+ EnhancedVpcRouting?: boolean | undefined;
458
+ MaintenanceTrackName?: string | undefined;
459
+ ManualSnapshotRetentionPeriod?: number | undefined;
460
+ ManualSnapshotRemainingDays?: number | undefined;
461
+ SnapshotRetentionStartTime?: Date | undefined;
462
+ MasterPasswordSecretArn?: string | undefined;
463
+ MasterPasswordSecretKmsKeyId?: string | undefined;
464
+ SnapshotArn?: string | undefined;
465
465
  }
466
466
  export interface AuthorizeSnapshotAccessResult {
467
- Snapshot?: Snapshot;
467
+ Snapshot?: Snapshot | undefined;
468
468
  }
469
469
  export declare class ClusterSnapshotNotFoundFault extends __BaseException {
470
470
  readonly name: "ClusterSnapshotNotFoundFault";
@@ -499,28 +499,28 @@ export declare class LimitExceededFault extends __BaseException {
499
499
  constructor(opts: __ExceptionOptionType<LimitExceededFault, __BaseException>);
500
500
  }
501
501
  export interface SupportedPlatform {
502
- Name?: string;
502
+ Name?: string | undefined;
503
503
  }
504
504
  export interface AvailabilityZone {
505
- Name?: string;
506
- SupportedPlatforms?: SupportedPlatform[];
505
+ Name?: string | undefined;
506
+ SupportedPlatforms?: SupportedPlatform[] | undefined;
507
507
  }
508
508
  export interface DeleteClusterSnapshotMessage {
509
509
  SnapshotIdentifier: string | undefined;
510
- SnapshotClusterIdentifier?: string;
510
+ SnapshotClusterIdentifier?: string | undefined;
511
511
  }
512
512
  export interface BatchDeleteClusterSnapshotsRequest {
513
513
  Identifiers: DeleteClusterSnapshotMessage[] | undefined;
514
514
  }
515
515
  export interface SnapshotErrorMessage {
516
- SnapshotIdentifier?: string;
517
- SnapshotClusterIdentifier?: string;
518
- FailureCode?: string;
519
- FailureReason?: string;
516
+ SnapshotIdentifier?: string | undefined;
517
+ SnapshotClusterIdentifier?: string | undefined;
518
+ FailureCode?: string | undefined;
519
+ FailureReason?: string | undefined;
520
520
  }
521
521
  export interface BatchDeleteClusterSnapshotsResult {
522
- Resources?: string[];
523
- Errors?: SnapshotErrorMessage[];
522
+ Resources?: string[] | undefined;
523
+ Errors?: SnapshotErrorMessage[] | undefined;
524
524
  }
525
525
  export declare class BatchDeleteRequestSizeExceededFault extends __BaseException {
526
526
  readonly name: "BatchDeleteRequestSizeExceededFault";
@@ -544,12 +544,12 @@ export declare class BatchModifyClusterSnapshotsLimitExceededFault extends __Bas
544
544
  }
545
545
  export interface BatchModifyClusterSnapshotsMessage {
546
546
  SnapshotIdentifierList: string[] | undefined;
547
- ManualSnapshotRetentionPeriod?: number;
548
- Force?: boolean;
547
+ ManualSnapshotRetentionPeriod?: number | undefined;
548
+ Force?: boolean | undefined;
549
549
  }
550
550
  export interface BatchModifyClusterSnapshotsOutputMessage {
551
- Resources?: string[];
552
- Errors?: SnapshotErrorMessage[];
551
+ Resources?: string[] | undefined;
552
+ Errors?: SnapshotErrorMessage[] | undefined;
553
553
  }
554
554
  export declare class InvalidRetentionPeriodFault extends __BaseException {
555
555
  readonly name: "InvalidRetentionPeriodFault";
@@ -576,107 +576,107 @@ export declare class ResizeNotFoundFault extends __BaseException {
576
576
  );
577
577
  }
578
578
  export interface ResizeProgressMessage {
579
- TargetNodeType?: string;
580
- TargetNumberOfNodes?: number;
581
- TargetClusterType?: string;
582
- Status?: string;
583
- ImportTablesCompleted?: string[];
584
- ImportTablesInProgress?: string[];
585
- ImportTablesNotStarted?: string[];
586
- AvgResizeRateInMegaBytesPerSecond?: number;
587
- TotalResizeDataInMegaBytes?: number;
588
- ProgressInMegaBytes?: number;
589
- ElapsedTimeInSeconds?: number;
590
- EstimatedTimeToCompletionInSeconds?: number;
591
- ResizeType?: string;
592
- Message?: string;
593
- TargetEncryptionType?: string;
594
- DataTransferProgressPercent?: number;
579
+ TargetNodeType?: string | undefined;
580
+ TargetNumberOfNodes?: number | undefined;
581
+ TargetClusterType?: string | undefined;
582
+ Status?: string | undefined;
583
+ ImportTablesCompleted?: string[] | undefined;
584
+ ImportTablesInProgress?: string[] | undefined;
585
+ ImportTablesNotStarted?: string[] | undefined;
586
+ AvgResizeRateInMegaBytesPerSecond?: number | undefined;
587
+ TotalResizeDataInMegaBytes?: number | undefined;
588
+ ProgressInMegaBytes?: number | undefined;
589
+ ElapsedTimeInSeconds?: number | undefined;
590
+ EstimatedTimeToCompletionInSeconds?: number | undefined;
591
+ ResizeType?: string | undefined;
592
+ Message?: string | undefined;
593
+ TargetEncryptionType?: string | undefined;
594
+ DataTransferProgressPercent?: number | undefined;
595
595
  }
596
596
  export interface ClusterNode {
597
- NodeRole?: string;
598
- PrivateIPAddress?: string;
599
- PublicIPAddress?: string;
597
+ NodeRole?: string | undefined;
598
+ PrivateIPAddress?: string | undefined;
599
+ PublicIPAddress?: string | undefined;
600
600
  }
601
601
  export interface ClusterParameterStatus {
602
- ParameterName?: string;
603
- ParameterApplyStatus?: string;
604
- ParameterApplyErrorDescription?: string;
602
+ ParameterName?: string | undefined;
603
+ ParameterApplyStatus?: string | undefined;
604
+ ParameterApplyErrorDescription?: string | undefined;
605
605
  }
606
606
  export interface ClusterParameterGroupStatus {
607
- ParameterGroupName?: string;
608
- ParameterApplyStatus?: string;
609
- ClusterParameterStatusList?: ClusterParameterStatus[];
607
+ ParameterGroupName?: string | undefined;
608
+ ParameterApplyStatus?: string | undefined;
609
+ ClusterParameterStatusList?: ClusterParameterStatus[] | undefined;
610
610
  }
611
611
  export interface ClusterSecurityGroupMembership {
612
- ClusterSecurityGroupName?: string;
613
- Status?: string;
612
+ ClusterSecurityGroupName?: string | undefined;
613
+ Status?: string | undefined;
614
614
  }
615
615
  export interface ClusterSnapshotCopyStatus {
616
- DestinationRegion?: string;
617
- RetentionPeriod?: number;
618
- ManualSnapshotRetentionPeriod?: number;
619
- SnapshotCopyGrantName?: string;
616
+ DestinationRegion?: string | undefined;
617
+ RetentionPeriod?: number | undefined;
618
+ ManualSnapshotRetentionPeriod?: number | undefined;
619
+ SnapshotCopyGrantName?: string | undefined;
620
620
  }
621
621
  export interface DataTransferProgress {
622
- Status?: string;
623
- CurrentRateInMegaBytesPerSecond?: number;
624
- TotalDataInMegaBytes?: number;
625
- DataTransferredInMegaBytes?: number;
626
- EstimatedTimeToCompletionInSeconds?: number;
627
- ElapsedTimeInSeconds?: number;
622
+ Status?: string | undefined;
623
+ CurrentRateInMegaBytesPerSecond?: number | undefined;
624
+ TotalDataInMegaBytes?: number | undefined;
625
+ DataTransferredInMegaBytes?: number | undefined;
626
+ EstimatedTimeToCompletionInSeconds?: number | undefined;
627
+ ElapsedTimeInSeconds?: number | undefined;
628
628
  }
629
629
  export interface DeferredMaintenanceWindow {
630
- DeferMaintenanceIdentifier?: string;
631
- DeferMaintenanceStartTime?: Date;
632
- DeferMaintenanceEndTime?: Date;
630
+ DeferMaintenanceIdentifier?: string | undefined;
631
+ DeferMaintenanceStartTime?: Date | undefined;
632
+ DeferMaintenanceEndTime?: Date | undefined;
633
633
  }
634
634
  export interface ElasticIpStatus {
635
- ElasticIp?: string;
636
- Status?: string;
635
+ ElasticIp?: string | undefined;
636
+ Status?: string | undefined;
637
637
  }
638
638
  export interface NetworkInterface {
639
- NetworkInterfaceId?: string;
640
- SubnetId?: string;
641
- PrivateIpAddress?: string;
642
- AvailabilityZone?: string;
643
- Ipv6Address?: string;
639
+ NetworkInterfaceId?: string | undefined;
640
+ SubnetId?: string | undefined;
641
+ PrivateIpAddress?: string | undefined;
642
+ AvailabilityZone?: string | undefined;
643
+ Ipv6Address?: string | undefined;
644
644
  }
645
645
  export interface VpcEndpoint {
646
- VpcEndpointId?: string;
647
- VpcId?: string;
648
- NetworkInterfaces?: NetworkInterface[];
646
+ VpcEndpointId?: string | undefined;
647
+ VpcId?: string | undefined;
648
+ NetworkInterfaces?: NetworkInterface[] | undefined;
649
649
  }
650
650
  export interface Endpoint {
651
- Address?: string;
652
- Port?: number;
653
- VpcEndpoints?: VpcEndpoint[];
651
+ Address?: string | undefined;
652
+ Port?: number | undefined;
653
+ VpcEndpoints?: VpcEndpoint[] | undefined;
654
654
  }
655
655
  export interface HsmStatus {
656
- HsmClientCertificateIdentifier?: string;
657
- HsmConfigurationIdentifier?: string;
658
- Status?: string;
656
+ HsmClientCertificateIdentifier?: string | undefined;
657
+ HsmConfigurationIdentifier?: string | undefined;
658
+ Status?: string | undefined;
659
659
  }
660
660
  export interface ClusterIamRole {
661
- IamRoleArn?: string;
662
- ApplyStatus?: string;
661
+ IamRoleArn?: string | undefined;
662
+ ApplyStatus?: string | undefined;
663
663
  }
664
664
  export interface SecondaryClusterInfo {
665
- AvailabilityZone?: string;
666
- ClusterNodes?: ClusterNode[];
665
+ AvailabilityZone?: string | undefined;
666
+ ClusterNodes?: ClusterNode[] | undefined;
667
667
  }
668
668
  export interface PendingModifiedValues {
669
- MasterUserPassword?: string;
670
- NodeType?: string;
671
- NumberOfNodes?: number;
672
- ClusterType?: string;
673
- ClusterVersion?: string;
674
- AutomatedSnapshotRetentionPeriod?: number;
675
- ClusterIdentifier?: string;
676
- PubliclyAccessible?: boolean;
677
- EnhancedVpcRouting?: boolean;
678
- MaintenanceTrackName?: string;
679
- EncryptionType?: string;
669
+ MasterUserPassword?: string | undefined;
670
+ NodeType?: string | undefined;
671
+ NumberOfNodes?: number | undefined;
672
+ ClusterType?: string | undefined;
673
+ ClusterVersion?: string | undefined;
674
+ AutomatedSnapshotRetentionPeriod?: number | undefined;
675
+ ClusterIdentifier?: string | undefined;
676
+ PubliclyAccessible?: boolean | undefined;
677
+ EnhancedVpcRouting?: boolean | undefined;
678
+ MaintenanceTrackName?: string | undefined;
679
+ EncryptionType?: string | undefined;
680
680
  }
681
681
  export declare const ReservedNodeExchangeStatusType: {
682
682
  readonly FAILED: "FAILED";
@@ -689,93 +689,93 @@ export declare const ReservedNodeExchangeStatusType: {
689
689
  export type ReservedNodeExchangeStatusType =
690
690
  (typeof ReservedNodeExchangeStatusType)[keyof typeof ReservedNodeExchangeStatusType];
691
691
  export interface ReservedNodeExchangeStatus {
692
- ReservedNodeExchangeRequestId?: string;
693
- Status?: ReservedNodeExchangeStatusType;
694
- RequestTime?: Date;
695
- SourceReservedNodeId?: string;
696
- SourceReservedNodeType?: string;
697
- SourceReservedNodeCount?: number;
698
- TargetReservedNodeOfferingId?: string;
699
- TargetReservedNodeType?: string;
700
- TargetReservedNodeCount?: number;
692
+ ReservedNodeExchangeRequestId?: string | undefined;
693
+ Status?: ReservedNodeExchangeStatusType | undefined;
694
+ RequestTime?: Date | undefined;
695
+ SourceReservedNodeId?: string | undefined;
696
+ SourceReservedNodeType?: string | undefined;
697
+ SourceReservedNodeCount?: number | undefined;
698
+ TargetReservedNodeOfferingId?: string | undefined;
699
+ TargetReservedNodeType?: string | undefined;
700
+ TargetReservedNodeCount?: number | undefined;
701
701
  }
702
702
  export interface ResizeInfo {
703
- ResizeType?: string;
704
- AllowCancelResize?: boolean;
703
+ ResizeType?: string | undefined;
704
+ AllowCancelResize?: boolean | undefined;
705
705
  }
706
706
  export interface RestoreStatus {
707
- Status?: string;
708
- CurrentRestoreRateInMegaBytesPerSecond?: number;
709
- SnapshotSizeInMegaBytes?: number;
710
- ProgressInMegaBytes?: number;
711
- ElapsedTimeInSeconds?: number;
712
- EstimatedTimeToCompletionInSeconds?: number;
707
+ Status?: string | undefined;
708
+ CurrentRestoreRateInMegaBytesPerSecond?: number | undefined;
709
+ SnapshotSizeInMegaBytes?: number | undefined;
710
+ ProgressInMegaBytes?: number | undefined;
711
+ ElapsedTimeInSeconds?: number | undefined;
712
+ EstimatedTimeToCompletionInSeconds?: number | undefined;
713
713
  }
714
714
  export interface VpcSecurityGroupMembership {
715
- VpcSecurityGroupId?: string;
716
- Status?: string;
715
+ VpcSecurityGroupId?: string | undefined;
716
+ Status?: string | undefined;
717
717
  }
718
718
  export interface Cluster {
719
- ClusterIdentifier?: string;
720
- NodeType?: string;
721
- ClusterStatus?: string;
722
- ClusterAvailabilityStatus?: string;
723
- ModifyStatus?: string;
724
- MasterUsername?: string;
725
- DBName?: string;
726
- Endpoint?: Endpoint;
727
- ClusterCreateTime?: Date;
728
- AutomatedSnapshotRetentionPeriod?: number;
729
- ManualSnapshotRetentionPeriod?: number;
730
- ClusterSecurityGroups?: ClusterSecurityGroupMembership[];
731
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
732
- ClusterParameterGroups?: ClusterParameterGroupStatus[];
733
- ClusterSubnetGroupName?: string;
734
- VpcId?: string;
735
- AvailabilityZone?: string;
736
- PreferredMaintenanceWindow?: string;
737
- PendingModifiedValues?: PendingModifiedValues;
738
- ClusterVersion?: string;
739
- AllowVersionUpgrade?: boolean;
740
- NumberOfNodes?: number;
741
- PubliclyAccessible?: boolean;
742
- Encrypted?: boolean;
743
- RestoreStatus?: RestoreStatus;
744
- DataTransferProgress?: DataTransferProgress;
745
- HsmStatus?: HsmStatus;
746
- ClusterSnapshotCopyStatus?: ClusterSnapshotCopyStatus;
747
- ClusterPublicKey?: string;
748
- ClusterNodes?: ClusterNode[];
749
- ElasticIpStatus?: ElasticIpStatus;
750
- ClusterRevisionNumber?: string;
751
- Tags?: Tag[];
752
- KmsKeyId?: string;
753
- EnhancedVpcRouting?: boolean;
754
- IamRoles?: ClusterIamRole[];
755
- PendingActions?: string[];
756
- MaintenanceTrackName?: string;
757
- ElasticResizeNumberOfNodeOptions?: string;
758
- DeferredMaintenanceWindows?: DeferredMaintenanceWindow[];
759
- SnapshotScheduleIdentifier?: string;
760
- SnapshotScheduleState?: ScheduleState;
761
- ExpectedNextSnapshotScheduleTime?: Date;
762
- ExpectedNextSnapshotScheduleTimeStatus?: string;
763
- NextMaintenanceWindowStartTime?: Date;
764
- ResizeInfo?: ResizeInfo;
765
- AvailabilityZoneRelocationStatus?: string;
766
- ClusterNamespaceArn?: string;
767
- TotalStorageCapacityInMegaBytes?: number;
768
- AquaConfiguration?: AquaConfiguration;
769
- DefaultIamRoleArn?: string;
770
- ReservedNodeExchangeStatus?: ReservedNodeExchangeStatus;
771
- CustomDomainName?: string;
772
- CustomDomainCertificateArn?: string;
773
- CustomDomainCertificateExpiryDate?: Date;
774
- MasterPasswordSecretArn?: string;
775
- MasterPasswordSecretKmsKeyId?: string;
776
- IpAddressType?: string;
777
- MultiAZ?: string;
778
- MultiAZSecondary?: SecondaryClusterInfo;
719
+ ClusterIdentifier?: string | undefined;
720
+ NodeType?: string | undefined;
721
+ ClusterStatus?: string | undefined;
722
+ ClusterAvailabilityStatus?: string | undefined;
723
+ ModifyStatus?: string | undefined;
724
+ MasterUsername?: string | undefined;
725
+ DBName?: string | undefined;
726
+ Endpoint?: Endpoint | undefined;
727
+ ClusterCreateTime?: Date | undefined;
728
+ AutomatedSnapshotRetentionPeriod?: number | undefined;
729
+ ManualSnapshotRetentionPeriod?: number | undefined;
730
+ ClusterSecurityGroups?: ClusterSecurityGroupMembership[] | undefined;
731
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
732
+ ClusterParameterGroups?: ClusterParameterGroupStatus[] | undefined;
733
+ ClusterSubnetGroupName?: string | undefined;
734
+ VpcId?: string | undefined;
735
+ AvailabilityZone?: string | undefined;
736
+ PreferredMaintenanceWindow?: string | undefined;
737
+ PendingModifiedValues?: PendingModifiedValues | undefined;
738
+ ClusterVersion?: string | undefined;
739
+ AllowVersionUpgrade?: boolean | undefined;
740
+ NumberOfNodes?: number | undefined;
741
+ PubliclyAccessible?: boolean | undefined;
742
+ Encrypted?: boolean | undefined;
743
+ RestoreStatus?: RestoreStatus | undefined;
744
+ DataTransferProgress?: DataTransferProgress | undefined;
745
+ HsmStatus?: HsmStatus | undefined;
746
+ ClusterSnapshotCopyStatus?: ClusterSnapshotCopyStatus | undefined;
747
+ ClusterPublicKey?: string | undefined;
748
+ ClusterNodes?: ClusterNode[] | undefined;
749
+ ElasticIpStatus?: ElasticIpStatus | undefined;
750
+ ClusterRevisionNumber?: string | undefined;
751
+ Tags?: Tag[] | undefined;
752
+ KmsKeyId?: string | undefined;
753
+ EnhancedVpcRouting?: boolean | undefined;
754
+ IamRoles?: ClusterIamRole[] | undefined;
755
+ PendingActions?: string[] | undefined;
756
+ MaintenanceTrackName?: string | undefined;
757
+ ElasticResizeNumberOfNodeOptions?: string | undefined;
758
+ DeferredMaintenanceWindows?: DeferredMaintenanceWindow[] | undefined;
759
+ SnapshotScheduleIdentifier?: string | undefined;
760
+ SnapshotScheduleState?: ScheduleState | undefined;
761
+ ExpectedNextSnapshotScheduleTime?: Date | undefined;
762
+ ExpectedNextSnapshotScheduleTimeStatus?: string | undefined;
763
+ NextMaintenanceWindowStartTime?: Date | undefined;
764
+ ResizeInfo?: ResizeInfo | undefined;
765
+ AvailabilityZoneRelocationStatus?: string | undefined;
766
+ ClusterNamespaceArn?: string | undefined;
767
+ TotalStorageCapacityInMegaBytes?: number | undefined;
768
+ AquaConfiguration?: AquaConfiguration | undefined;
769
+ DefaultIamRoleArn?: string | undefined;
770
+ ReservedNodeExchangeStatus?: ReservedNodeExchangeStatus | undefined;
771
+ CustomDomainName?: string | undefined;
772
+ CustomDomainCertificateArn?: string | undefined;
773
+ CustomDomainCertificateExpiryDate?: Date | undefined;
774
+ MasterPasswordSecretArn?: string | undefined;
775
+ MasterPasswordSecretKmsKeyId?: string | undefined;
776
+ IpAddressType?: string | undefined;
777
+ MultiAZ?: string | undefined;
778
+ MultiAZSecondary?: SecondaryClusterInfo | undefined;
779
779
  }
780
780
  export declare class ClusterAlreadyExistsFault extends __BaseException {
781
781
  readonly name: "ClusterAlreadyExistsFault";
@@ -785,30 +785,30 @@ export declare class ClusterAlreadyExistsFault extends __BaseException {
785
785
  );
786
786
  }
787
787
  export interface ClusterCredentials {
788
- DbUser?: string;
789
- DbPassword?: string;
790
- Expiration?: Date;
788
+ DbUser?: string | undefined;
789
+ DbPassword?: string | undefined;
790
+ Expiration?: Date | undefined;
791
791
  }
792
792
  export interface RevisionTarget {
793
- DatabaseRevision?: string;
794
- Description?: string;
795
- DatabaseRevisionReleaseDate?: Date;
793
+ DatabaseRevision?: string | undefined;
794
+ Description?: string | undefined;
795
+ DatabaseRevisionReleaseDate?: Date | undefined;
796
796
  }
797
797
  export interface ClusterDbRevision {
798
- ClusterIdentifier?: string;
799
- CurrentDatabaseRevision?: string;
800
- DatabaseRevisionReleaseDate?: Date;
801
- RevisionTargets?: RevisionTarget[];
798
+ ClusterIdentifier?: string | undefined;
799
+ CurrentDatabaseRevision?: string | undefined;
800
+ DatabaseRevisionReleaseDate?: Date | undefined;
801
+ RevisionTargets?: RevisionTarget[] | undefined;
802
802
  }
803
803
  export interface ClusterDbRevisionsMessage {
804
- Marker?: string;
805
- ClusterDbRevisions?: ClusterDbRevision[];
804
+ Marker?: string | undefined;
805
+ ClusterDbRevisions?: ClusterDbRevision[] | undefined;
806
806
  }
807
807
  export interface ClusterExtendedCredentials {
808
- DbUser?: string;
809
- DbPassword?: string;
810
- Expiration?: Date;
811
- NextRefreshTime?: Date;
808
+ DbUser?: string | undefined;
809
+ DbPassword?: string | undefined;
810
+ Expiration?: Date | undefined;
811
+ NextRefreshTime?: Date | undefined;
812
812
  }
813
813
  export declare class ClusterOnLatestRevisionFault extends __BaseException {
814
814
  readonly name: "ClusterOnLatestRevisionFault";
@@ -818,10 +818,10 @@ export declare class ClusterOnLatestRevisionFault extends __BaseException {
818
818
  );
819
819
  }
820
820
  export interface ClusterParameterGroup {
821
- ParameterGroupName?: string;
822
- ParameterGroupFamily?: string;
823
- Description?: string;
824
- Tags?: Tag[];
821
+ ParameterGroupName?: string | undefined;
822
+ ParameterGroupFamily?: string | undefined;
823
+ Description?: string | undefined;
824
+ Tags?: Tag[] | undefined;
825
825
  }
826
826
  export declare class ClusterParameterGroupAlreadyExistsFault extends __BaseException {
827
827
  readonly name: "ClusterParameterGroupAlreadyExistsFault";
@@ -840,23 +840,23 @@ export declare const ParameterApplyType: {
840
840
  export type ParameterApplyType =
841
841
  (typeof ParameterApplyType)[keyof typeof ParameterApplyType];
842
842
  export interface Parameter {
843
- ParameterName?: string;
844
- ParameterValue?: string;
845
- Description?: string;
846
- Source?: string;
847
- DataType?: string;
848
- AllowedValues?: string;
849
- ApplyType?: ParameterApplyType;
850
- IsModifiable?: boolean;
851
- MinimumEngineVersion?: string;
843
+ ParameterName?: string | undefined;
844
+ ParameterValue?: string | undefined;
845
+ Description?: string | undefined;
846
+ Source?: string | undefined;
847
+ DataType?: string | undefined;
848
+ AllowedValues?: string | undefined;
849
+ ApplyType?: ParameterApplyType | undefined;
850
+ IsModifiable?: boolean | undefined;
851
+ MinimumEngineVersion?: string | undefined;
852
852
  }
853
853
  export interface ClusterParameterGroupDetails {
854
- Parameters?: Parameter[];
855
- Marker?: string;
854
+ Parameters?: Parameter[] | undefined;
855
+ Marker?: string | undefined;
856
856
  }
857
857
  export interface ClusterParameterGroupNameMessage {
858
- ParameterGroupName?: string;
859
- ParameterGroupStatus?: string;
858
+ ParameterGroupName?: string | undefined;
859
+ ParameterGroupStatus?: string | undefined;
860
860
  }
861
861
  export declare class ClusterParameterGroupNotFoundFault extends __BaseException {
862
862
  readonly name: "ClusterParameterGroupNotFoundFault";
@@ -879,8 +879,8 @@ export declare class ClusterParameterGroupQuotaExceededFault extends __BaseExcep
879
879
  );
880
880
  }
881
881
  export interface ClusterParameterGroupsMessage {
882
- Marker?: string;
883
- ParameterGroups?: ClusterParameterGroup[];
882
+ Marker?: string | undefined;
883
+ ParameterGroups?: ClusterParameterGroup[] | undefined;
884
884
  }
885
885
  export declare class ClusterQuotaExceededFault extends __BaseException {
886
886
  readonly name: "ClusterQuotaExceededFault";
@@ -900,8 +900,8 @@ export declare class ClusterSecurityGroupAlreadyExistsFault extends __BaseExcept
900
900
  );
901
901
  }
902
902
  export interface ClusterSecurityGroupMessage {
903
- Marker?: string;
904
- ClusterSecurityGroups?: ClusterSecurityGroup[];
903
+ Marker?: string | undefined;
904
+ ClusterSecurityGroups?: ClusterSecurityGroup[] | undefined;
905
905
  }
906
906
  export declare class ClusterSecurityGroupQuotaExceededFault extends __BaseException {
907
907
  readonly name: "ClusterSecurityGroupQuotaExceededFault";
@@ -914,8 +914,8 @@ export declare class ClusterSecurityGroupQuotaExceededFault extends __BaseExcept
914
914
  );
915
915
  }
916
916
  export interface ClustersMessage {
917
- Marker?: string;
918
- Clusters?: Cluster[];
917
+ Marker?: string | undefined;
918
+ Clusters?: Cluster[] | undefined;
919
919
  }
920
920
  export declare class ClusterSnapshotAlreadyExistsFault extends __BaseException {
921
921
  readonly name: "ClusterSnapshotAlreadyExistsFault";
@@ -938,18 +938,18 @@ export declare class ClusterSnapshotQuotaExceededFault extends __BaseException {
938
938
  );
939
939
  }
940
940
  export interface Subnet {
941
- SubnetIdentifier?: string;
942
- SubnetAvailabilityZone?: AvailabilityZone;
943
- SubnetStatus?: string;
941
+ SubnetIdentifier?: string | undefined;
942
+ SubnetAvailabilityZone?: AvailabilityZone | undefined;
943
+ SubnetStatus?: string | undefined;
944
944
  }
945
945
  export interface ClusterSubnetGroup {
946
- ClusterSubnetGroupName?: string;
947
- Description?: string;
948
- VpcId?: string;
949
- SubnetGroupStatus?: string;
950
- Subnets?: Subnet[];
951
- Tags?: Tag[];
952
- SupportedClusterIpAddressTypes?: string[];
946
+ ClusterSubnetGroupName?: string | undefined;
947
+ Description?: string | undefined;
948
+ VpcId?: string | undefined;
949
+ SubnetGroupStatus?: string | undefined;
950
+ Subnets?: Subnet[] | undefined;
951
+ Tags?: Tag[] | undefined;
952
+ SupportedClusterIpAddressTypes?: string[] | undefined;
953
953
  }
954
954
  export declare class ClusterSubnetGroupAlreadyExistsFault extends __BaseException {
955
955
  readonly name: "ClusterSubnetGroupAlreadyExistsFault";
@@ -962,8 +962,8 @@ export declare class ClusterSubnetGroupAlreadyExistsFault extends __BaseExceptio
962
962
  );
963
963
  }
964
964
  export interface ClusterSubnetGroupMessage {
965
- Marker?: string;
966
- ClusterSubnetGroups?: ClusterSubnetGroup[];
965
+ Marker?: string | undefined;
966
+ ClusterSubnetGroups?: ClusterSubnetGroup[] | undefined;
967
967
  }
968
968
  export declare class ClusterSubnetGroupNotFoundFault extends __BaseException {
969
969
  readonly name: "ClusterSubnetGroupNotFoundFault";
@@ -996,13 +996,13 @@ export declare class ClusterSubnetQuotaExceededFault extends __BaseException {
996
996
  );
997
997
  }
998
998
  export interface ClusterVersion {
999
- ClusterVersion?: string;
1000
- ClusterParameterGroupFamily?: string;
1001
- Description?: string;
999
+ ClusterVersion?: string | undefined;
1000
+ ClusterParameterGroupFamily?: string | undefined;
1001
+ Description?: string | undefined;
1002
1002
  }
1003
1003
  export interface ClusterVersionsMessage {
1004
- Marker?: string;
1005
- ClusterVersions?: ClusterVersion[];
1004
+ Marker?: string | undefined;
1005
+ ClusterVersions?: ClusterVersion[] | undefined;
1006
1006
  }
1007
1007
  export declare class ConflictPolicyUpdateFault extends __BaseException {
1008
1008
  readonly name: "ConflictPolicyUpdateFault";
@@ -1013,12 +1013,12 @@ export declare class ConflictPolicyUpdateFault extends __BaseException {
1013
1013
  }
1014
1014
  export interface CopyClusterSnapshotMessage {
1015
1015
  SourceSnapshotIdentifier: string | undefined;
1016
- SourceSnapshotClusterIdentifier?: string;
1016
+ SourceSnapshotClusterIdentifier?: string | undefined;
1017
1017
  TargetSnapshotIdentifier: string | undefined;
1018
- ManualSnapshotRetentionPeriod?: number;
1018
+ ManualSnapshotRetentionPeriod?: number | undefined;
1019
1019
  }
1020
1020
  export interface CopyClusterSnapshotResult {
1021
- Snapshot?: Snapshot;
1021
+ Snapshot?: Snapshot | undefined;
1022
1022
  }
1023
1023
  export declare class CopyToRegionDisabledFault extends __BaseException {
1024
1024
  readonly name: "CopyToRegionDisabledFault";
@@ -1032,8 +1032,8 @@ export interface CreateAuthenticationProfileMessage {
1032
1032
  AuthenticationProfileContent: string | undefined;
1033
1033
  }
1034
1034
  export interface CreateAuthenticationProfileResult {
1035
- AuthenticationProfileName?: string;
1036
- AuthenticationProfileContent?: string;
1035
+ AuthenticationProfileName?: string | undefined;
1036
+ AuthenticationProfileContent?: string | undefined;
1037
1037
  }
1038
1038
  export declare class InvalidAuthenticationProfileRequestFault extends __BaseException {
1039
1039
  readonly name: "InvalidAuthenticationProfileRequestFault";
@@ -1046,48 +1046,48 @@ export declare class InvalidAuthenticationProfileRequestFault extends __BaseExce
1046
1046
  );
1047
1047
  }
1048
1048
  export interface CreateClusterMessage {
1049
- DBName?: string;
1049
+ DBName?: string | undefined;
1050
1050
  ClusterIdentifier: string | undefined;
1051
- ClusterType?: string;
1051
+ ClusterType?: string | undefined;
1052
1052
  NodeType: string | undefined;
1053
1053
  MasterUsername: string | undefined;
1054
- MasterUserPassword?: string;
1055
- ClusterSecurityGroups?: string[];
1056
- VpcSecurityGroupIds?: string[];
1057
- ClusterSubnetGroupName?: string;
1058
- AvailabilityZone?: string;
1059
- PreferredMaintenanceWindow?: string;
1060
- ClusterParameterGroupName?: string;
1061
- AutomatedSnapshotRetentionPeriod?: number;
1062
- ManualSnapshotRetentionPeriod?: number;
1063
- Port?: number;
1064
- ClusterVersion?: string;
1065
- AllowVersionUpgrade?: boolean;
1066
- NumberOfNodes?: number;
1067
- PubliclyAccessible?: boolean;
1068
- Encrypted?: boolean;
1069
- HsmClientCertificateIdentifier?: string;
1070
- HsmConfigurationIdentifier?: string;
1071
- ElasticIp?: string;
1072
- Tags?: Tag[];
1073
- KmsKeyId?: string;
1074
- EnhancedVpcRouting?: boolean;
1075
- AdditionalInfo?: string;
1076
- IamRoles?: string[];
1077
- MaintenanceTrackName?: string;
1078
- SnapshotScheduleIdentifier?: string;
1079
- AvailabilityZoneRelocation?: boolean;
1080
- AquaConfigurationStatus?: AquaConfigurationStatus;
1081
- DefaultIamRoleArn?: string;
1082
- LoadSampleData?: string;
1083
- ManageMasterPassword?: boolean;
1084
- MasterPasswordSecretKmsKeyId?: string;
1085
- IpAddressType?: string;
1086
- MultiAZ?: boolean;
1087
- RedshiftIdcApplicationArn?: string;
1054
+ MasterUserPassword?: string | undefined;
1055
+ ClusterSecurityGroups?: string[] | undefined;
1056
+ VpcSecurityGroupIds?: string[] | undefined;
1057
+ ClusterSubnetGroupName?: string | undefined;
1058
+ AvailabilityZone?: string | undefined;
1059
+ PreferredMaintenanceWindow?: string | undefined;
1060
+ ClusterParameterGroupName?: string | undefined;
1061
+ AutomatedSnapshotRetentionPeriod?: number | undefined;
1062
+ ManualSnapshotRetentionPeriod?: number | undefined;
1063
+ Port?: number | undefined;
1064
+ ClusterVersion?: string | undefined;
1065
+ AllowVersionUpgrade?: boolean | undefined;
1066
+ NumberOfNodes?: number | undefined;
1067
+ PubliclyAccessible?: boolean | undefined;
1068
+ Encrypted?: boolean | undefined;
1069
+ HsmClientCertificateIdentifier?: string | undefined;
1070
+ HsmConfigurationIdentifier?: string | undefined;
1071
+ ElasticIp?: string | undefined;
1072
+ Tags?: Tag[] | undefined;
1073
+ KmsKeyId?: string | undefined;
1074
+ EnhancedVpcRouting?: boolean | undefined;
1075
+ AdditionalInfo?: string | undefined;
1076
+ IamRoles?: string[] | undefined;
1077
+ MaintenanceTrackName?: string | undefined;
1078
+ SnapshotScheduleIdentifier?: string | undefined;
1079
+ AvailabilityZoneRelocation?: boolean | undefined;
1080
+ AquaConfigurationStatus?: AquaConfigurationStatus | undefined;
1081
+ DefaultIamRoleArn?: string | undefined;
1082
+ LoadSampleData?: string | undefined;
1083
+ ManageMasterPassword?: boolean | undefined;
1084
+ MasterPasswordSecretKmsKeyId?: string | undefined;
1085
+ IpAddressType?: string | undefined;
1086
+ MultiAZ?: boolean | undefined;
1087
+ RedshiftIdcApplicationArn?: string | undefined;
1088
1088
  }
1089
1089
  export interface CreateClusterResult {
1090
- Cluster?: Cluster;
1090
+ Cluster?: Cluster | undefined;
1091
1091
  }
1092
1092
  export declare class HsmClientCertificateNotFoundFault extends __BaseException {
1093
1093
  readonly name: "HsmClientCertificateNotFoundFault";
@@ -1219,36 +1219,36 @@ export interface CreateClusterParameterGroupMessage {
1219
1219
  ParameterGroupName: string | undefined;
1220
1220
  ParameterGroupFamily: string | undefined;
1221
1221
  Description: string | undefined;
1222
- Tags?: Tag[];
1222
+ Tags?: Tag[] | undefined;
1223
1223
  }
1224
1224
  export interface CreateClusterParameterGroupResult {
1225
- ClusterParameterGroup?: ClusterParameterGroup;
1225
+ ClusterParameterGroup?: ClusterParameterGroup | undefined;
1226
1226
  }
1227
1227
  export interface CreateClusterSecurityGroupMessage {
1228
1228
  ClusterSecurityGroupName: string | undefined;
1229
1229
  Description: string | undefined;
1230
- Tags?: Tag[];
1230
+ Tags?: Tag[] | undefined;
1231
1231
  }
1232
1232
  export interface CreateClusterSecurityGroupResult {
1233
- ClusterSecurityGroup?: ClusterSecurityGroup;
1233
+ ClusterSecurityGroup?: ClusterSecurityGroup | undefined;
1234
1234
  }
1235
1235
  export interface CreateClusterSnapshotMessage {
1236
1236
  SnapshotIdentifier: string | undefined;
1237
1237
  ClusterIdentifier: string | undefined;
1238
- ManualSnapshotRetentionPeriod?: number;
1239
- Tags?: Tag[];
1238
+ ManualSnapshotRetentionPeriod?: number | undefined;
1239
+ Tags?: Tag[] | undefined;
1240
1240
  }
1241
1241
  export interface CreateClusterSnapshotResult {
1242
- Snapshot?: Snapshot;
1242
+ Snapshot?: Snapshot | undefined;
1243
1243
  }
1244
1244
  export interface CreateClusterSubnetGroupMessage {
1245
1245
  ClusterSubnetGroupName: string | undefined;
1246
1246
  Description: string | undefined;
1247
1247
  SubnetIds: string[] | undefined;
1248
- Tags?: Tag[];
1248
+ Tags?: Tag[] | undefined;
1249
1249
  }
1250
1250
  export interface CreateClusterSubnetGroupResult {
1251
- ClusterSubnetGroup?: ClusterSubnetGroup;
1251
+ ClusterSubnetGroup?: ClusterSubnetGroup | undefined;
1252
1252
  }
1253
1253
  export interface CreateCustomDomainAssociationMessage {
1254
1254
  CustomDomainName: string | undefined;
@@ -1256,10 +1256,10 @@ export interface CreateCustomDomainAssociationMessage {
1256
1256
  ClusterIdentifier: string | undefined;
1257
1257
  }
1258
1258
  export interface CreateCustomDomainAssociationResult {
1259
- CustomDomainName?: string;
1260
- CustomDomainCertificateArn?: string;
1261
- ClusterIdentifier?: string;
1262
- CustomDomainCertExpiryTime?: string;
1259
+ CustomDomainName?: string | undefined;
1260
+ CustomDomainCertificateArn?: string | undefined;
1261
+ ClusterIdentifier?: string | undefined;
1262
+ CustomDomainCertExpiryTime?: string | undefined;
1263
1263
  }
1264
1264
  export declare class CustomCnameAssociationFault extends __BaseException {
1265
1265
  readonly name: "CustomCnameAssociationFault";
@@ -1269,23 +1269,23 @@ export declare class CustomCnameAssociationFault extends __BaseException {
1269
1269
  );
1270
1270
  }
1271
1271
  export interface CreateEndpointAccessMessage {
1272
- ClusterIdentifier?: string;
1273
- ResourceOwner?: string;
1272
+ ClusterIdentifier?: string | undefined;
1273
+ ResourceOwner?: string | undefined;
1274
1274
  EndpointName: string | undefined;
1275
1275
  SubnetGroupName: string | undefined;
1276
- VpcSecurityGroupIds?: string[];
1276
+ VpcSecurityGroupIds?: string[] | undefined;
1277
1277
  }
1278
1278
  export interface EndpointAccess {
1279
- ClusterIdentifier?: string;
1280
- ResourceOwner?: string;
1281
- SubnetGroupName?: string;
1282
- EndpointStatus?: string;
1283
- EndpointName?: string;
1284
- EndpointCreateTime?: Date;
1285
- Port?: number;
1286
- Address?: string;
1287
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
1288
- VpcEndpoint?: VpcEndpoint;
1279
+ ClusterIdentifier?: string | undefined;
1280
+ ResourceOwner?: string | undefined;
1281
+ SubnetGroupName?: string | undefined;
1282
+ EndpointStatus?: string | undefined;
1283
+ EndpointName?: string | undefined;
1284
+ EndpointCreateTime?: Date | undefined;
1285
+ Port?: number | undefined;
1286
+ Address?: string | undefined;
1287
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
1288
+ VpcEndpoint?: VpcEndpoint | undefined;
1289
1289
  }
1290
1290
  export declare class EndpointAlreadyExistsFault extends __BaseException {
1291
1291
  readonly name: "EndpointAlreadyExistsFault";
@@ -1317,28 +1317,28 @@ export declare class EndpointsPerClusterLimitExceededFault extends __BaseExcepti
1317
1317
  export interface CreateEventSubscriptionMessage {
1318
1318
  SubscriptionName: string | undefined;
1319
1319
  SnsTopicArn: string | undefined;
1320
- SourceType?: string;
1321
- SourceIds?: string[];
1322
- EventCategories?: string[];
1323
- Severity?: string;
1324
- Enabled?: boolean;
1325
- Tags?: Tag[];
1320
+ SourceType?: string | undefined;
1321
+ SourceIds?: string[] | undefined;
1322
+ EventCategories?: string[] | undefined;
1323
+ Severity?: string | undefined;
1324
+ Enabled?: boolean | undefined;
1325
+ Tags?: Tag[] | undefined;
1326
1326
  }
1327
1327
  export interface EventSubscription {
1328
- CustomerAwsId?: string;
1329
- CustSubscriptionId?: string;
1330
- SnsTopicArn?: string;
1331
- Status?: string;
1332
- SubscriptionCreationTime?: Date;
1333
- SourceType?: string;
1334
- SourceIdsList?: string[];
1335
- EventCategoriesList?: string[];
1336
- Severity?: string;
1337
- Enabled?: boolean;
1338
- Tags?: Tag[];
1328
+ CustomerAwsId?: string | undefined;
1329
+ CustSubscriptionId?: string | undefined;
1330
+ SnsTopicArn?: string | undefined;
1331
+ Status?: string | undefined;
1332
+ SubscriptionCreationTime?: Date | undefined;
1333
+ SourceType?: string | undefined;
1334
+ SourceIdsList?: string[] | undefined;
1335
+ EventCategoriesList?: string[] | undefined;
1336
+ Severity?: string | undefined;
1337
+ Enabled?: boolean | undefined;
1338
+ Tags?: Tag[] | undefined;
1339
1339
  }
1340
1340
  export interface CreateEventSubscriptionResult {
1341
- EventSubscription?: EventSubscription;
1341
+ EventSubscription?: EventSubscription | undefined;
1342
1342
  }
1343
1343
  export declare class EventSubscriptionQuotaExceededFault extends __BaseException {
1344
1344
  readonly name: "EventSubscriptionQuotaExceededFault";
@@ -1417,15 +1417,15 @@ export declare class SubscriptionSeverityNotFoundFault extends __BaseException {
1417
1417
  }
1418
1418
  export interface CreateHsmClientCertificateMessage {
1419
1419
  HsmClientCertificateIdentifier: string | undefined;
1420
- Tags?: Tag[];
1420
+ Tags?: Tag[] | undefined;
1421
1421
  }
1422
1422
  export interface HsmClientCertificate {
1423
- HsmClientCertificateIdentifier?: string;
1424
- HsmClientCertificatePublicKey?: string;
1425
- Tags?: Tag[];
1423
+ HsmClientCertificateIdentifier?: string | undefined;
1424
+ HsmClientCertificatePublicKey?: string | undefined;
1425
+ Tags?: Tag[] | undefined;
1426
1426
  }
1427
1427
  export interface CreateHsmClientCertificateResult {
1428
- HsmClientCertificate?: HsmClientCertificate;
1428
+ HsmClientCertificate?: HsmClientCertificate | undefined;
1429
1429
  }
1430
1430
  export declare class HsmClientCertificateAlreadyExistsFault extends __BaseException {
1431
1431
  readonly name: "HsmClientCertificateAlreadyExistsFault";
@@ -1454,17 +1454,17 @@ export interface CreateHsmConfigurationMessage {
1454
1454
  HsmPartitionName: string | undefined;
1455
1455
  HsmPartitionPassword: string | undefined;
1456
1456
  HsmServerPublicCertificate: string | undefined;
1457
- Tags?: Tag[];
1457
+ Tags?: Tag[] | undefined;
1458
1458
  }
1459
1459
  export interface HsmConfiguration {
1460
- HsmConfigurationIdentifier?: string;
1461
- Description?: string;
1462
- HsmIpAddress?: string;
1463
- HsmPartitionName?: string;
1464
- Tags?: Tag[];
1460
+ HsmConfigurationIdentifier?: string | undefined;
1461
+ Description?: string | undefined;
1462
+ HsmIpAddress?: string | undefined;
1463
+ HsmPartitionName?: string | undefined;
1464
+ Tags?: Tag[] | undefined;
1465
1465
  }
1466
1466
  export interface CreateHsmConfigurationResult {
1467
- HsmConfiguration?: HsmConfiguration;
1467
+ HsmConfiguration?: HsmConfiguration | undefined;
1468
1468
  }
1469
1469
  export declare class HsmConfigurationAlreadyExistsFault extends __BaseException {
1470
1470
  readonly name: "HsmConfigurationAlreadyExistsFault";
@@ -1490,14 +1490,14 @@ export interface CreateIntegrationMessage {
1490
1490
  SourceArn: string | undefined;
1491
1491
  TargetArn: string | undefined;
1492
1492
  IntegrationName: string | undefined;
1493
- KMSKeyId?: string;
1494
- TagList?: Tag[];
1495
- AdditionalEncryptionContext?: Record<string, string>;
1496
- Description?: string;
1493
+ KMSKeyId?: string | undefined;
1494
+ TagList?: Tag[] | undefined;
1495
+ AdditionalEncryptionContext?: Record<string, string> | undefined;
1496
+ Description?: string | undefined;
1497
1497
  }
1498
1498
  export interface IntegrationError {
1499
1499
  ErrorCode: string | undefined;
1500
- ErrorMessage?: string;
1500
+ ErrorMessage?: string | undefined;
1501
1501
  }
1502
1502
  export declare const ZeroETLIntegrationStatus: {
1503
1503
  readonly ACTIVE: "active";
@@ -1511,17 +1511,17 @@ export declare const ZeroETLIntegrationStatus: {
1511
1511
  export type ZeroETLIntegrationStatus =
1512
1512
  (typeof ZeroETLIntegrationStatus)[keyof typeof ZeroETLIntegrationStatus];
1513
1513
  export interface Integration {
1514
- IntegrationArn?: string;
1515
- IntegrationName?: string;
1516
- SourceArn?: string;
1517
- TargetArn?: string;
1518
- Status?: ZeroETLIntegrationStatus;
1519
- Errors?: IntegrationError[];
1520
- CreateTime?: Date;
1521
- Description?: string;
1522
- KMSKeyId?: string;
1523
- AdditionalEncryptionContext?: Record<string, string>;
1524
- Tags?: Tag[];
1514
+ IntegrationArn?: string | undefined;
1515
+ IntegrationName?: string | undefined;
1516
+ SourceArn?: string | undefined;
1517
+ TargetArn?: string | undefined;
1518
+ Status?: ZeroETLIntegrationStatus | undefined;
1519
+ Errors?: IntegrationError[] | undefined;
1520
+ CreateTime?: Date | undefined;
1521
+ Description?: string | undefined;
1522
+ KMSKeyId?: string | undefined;
1523
+ AdditionalEncryptionContext?: Record<string, string> | undefined;
1524
+ Tags?: Tag[] | undefined;
1525
1525
  }
1526
1526
  export declare class IntegrationAlreadyExistsFault extends __BaseException {
1527
1527
  readonly name: "IntegrationAlreadyExistsFault";
@@ -1588,20 +1588,50 @@ export declare namespace LakeFormationScopeUnion {
1588
1588
  }
1589
1589
  const visit: <T>(value: LakeFormationScopeUnion, visitor: Visitor<T>) => T;
1590
1590
  }
1591
+ export interface ReadWriteAccess {
1592
+ Authorization: ServiceAuthorization | undefined;
1593
+ }
1594
+ export type S3AccessGrantsScopeUnion =
1595
+ | S3AccessGrantsScopeUnion.ReadWriteAccessMember
1596
+ | S3AccessGrantsScopeUnion.$UnknownMember;
1597
+ export declare namespace S3AccessGrantsScopeUnion {
1598
+ interface ReadWriteAccessMember {
1599
+ ReadWriteAccess: ReadWriteAccess;
1600
+ $unknown?: never;
1601
+ }
1602
+ interface $UnknownMember {
1603
+ ReadWriteAccess?: never;
1604
+ $unknown: [string, any];
1605
+ }
1606
+ interface Visitor<T> {
1607
+ ReadWriteAccess: (value: ReadWriteAccess) => T;
1608
+ _: (name: string, value: any) => T;
1609
+ }
1610
+ const visit: <T>(value: S3AccessGrantsScopeUnion, visitor: Visitor<T>) => T;
1611
+ }
1591
1612
  export type ServiceIntegrationsUnion =
1592
1613
  | ServiceIntegrationsUnion.LakeFormationMember
1614
+ | ServiceIntegrationsUnion.S3AccessGrantsMember
1593
1615
  | ServiceIntegrationsUnion.$UnknownMember;
1594
1616
  export declare namespace ServiceIntegrationsUnion {
1595
1617
  interface LakeFormationMember {
1596
1618
  LakeFormation: LakeFormationScopeUnion[];
1619
+ S3AccessGrants?: never;
1620
+ $unknown?: never;
1621
+ }
1622
+ interface S3AccessGrantsMember {
1623
+ LakeFormation?: never;
1624
+ S3AccessGrants: S3AccessGrantsScopeUnion[];
1597
1625
  $unknown?: never;
1598
1626
  }
1599
1627
  interface $UnknownMember {
1600
1628
  LakeFormation?: never;
1629
+ S3AccessGrants?: never;
1601
1630
  $unknown: [string, any];
1602
1631
  }
1603
1632
  interface Visitor<T> {
1604
1633
  LakeFormation: (value: LakeFormationScopeUnion[]) => T;
1634
+ S3AccessGrants: (value: S3AccessGrantsScopeUnion[]) => T;
1605
1635
  _: (name: string, value: any) => T;
1606
1636
  }
1607
1637
  const visit: <T>(value: ServiceIntegrationsUnion, visitor: Visitor<T>) => T;
@@ -1609,26 +1639,26 @@ export declare namespace ServiceIntegrationsUnion {
1609
1639
  export interface CreateRedshiftIdcApplicationMessage {
1610
1640
  IdcInstanceArn: string | undefined;
1611
1641
  RedshiftIdcApplicationName: string | undefined;
1612
- IdentityNamespace?: string;
1642
+ IdentityNamespace?: string | undefined;
1613
1643
  IdcDisplayName: string | undefined;
1614
1644
  IamRoleArn: string | undefined;
1615
- AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
1616
- ServiceIntegrations?: ServiceIntegrationsUnion[];
1645
+ AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
1646
+ ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
1617
1647
  }
1618
1648
  export interface RedshiftIdcApplication {
1619
- IdcInstanceArn?: string;
1620
- RedshiftIdcApplicationName?: string;
1621
- RedshiftIdcApplicationArn?: string;
1622
- IdentityNamespace?: string;
1623
- IdcDisplayName?: string;
1624
- IamRoleArn?: string;
1625
- IdcManagedApplicationArn?: string;
1626
- IdcOnboardStatus?: string;
1627
- AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[];
1628
- ServiceIntegrations?: ServiceIntegrationsUnion[];
1649
+ IdcInstanceArn?: string | undefined;
1650
+ RedshiftIdcApplicationName?: string | undefined;
1651
+ RedshiftIdcApplicationArn?: string | undefined;
1652
+ IdentityNamespace?: string | undefined;
1653
+ IdcDisplayName?: string | undefined;
1654
+ IamRoleArn?: string | undefined;
1655
+ IdcManagedApplicationArn?: string | undefined;
1656
+ IdcOnboardStatus?: string | undefined;
1657
+ AuthorizedTokenIssuerList?: AuthorizedTokenIssuer[] | undefined;
1658
+ ServiceIntegrations?: ServiceIntegrationsUnion[] | undefined;
1629
1659
  }
1630
1660
  export interface CreateRedshiftIdcApplicationResult {
1631
- RedshiftIdcApplication?: RedshiftIdcApplication;
1661
+ RedshiftIdcApplication?: RedshiftIdcApplication | undefined;
1632
1662
  }
1633
1663
  export declare class DependentServiceAccessDeniedFault extends __BaseException {
1634
1664
  readonly name: "DependentServiceAccessDeniedFault";
@@ -1665,30 +1695,30 @@ export interface PauseClusterMessage {
1665
1695
  }
1666
1696
  export interface ResizeClusterMessage {
1667
1697
  ClusterIdentifier: string | undefined;
1668
- ClusterType?: string;
1669
- NodeType?: string;
1670
- NumberOfNodes?: number;
1671
- Classic?: boolean;
1672
- ReservedNodeId?: string;
1673
- TargetReservedNodeOfferingId?: string;
1698
+ ClusterType?: string | undefined;
1699
+ NodeType?: string | undefined;
1700
+ NumberOfNodes?: number | undefined;
1701
+ Classic?: boolean | undefined;
1702
+ ReservedNodeId?: string | undefined;
1703
+ TargetReservedNodeOfferingId?: string | undefined;
1674
1704
  }
1675
1705
  export interface ResumeClusterMessage {
1676
1706
  ClusterIdentifier: string | undefined;
1677
1707
  }
1678
1708
  export interface ScheduledActionType {
1679
- ResizeCluster?: ResizeClusterMessage;
1680
- PauseCluster?: PauseClusterMessage;
1681
- ResumeCluster?: ResumeClusterMessage;
1709
+ ResizeCluster?: ResizeClusterMessage | undefined;
1710
+ PauseCluster?: PauseClusterMessage | undefined;
1711
+ ResumeCluster?: ResumeClusterMessage | undefined;
1682
1712
  }
1683
1713
  export interface CreateScheduledActionMessage {
1684
1714
  ScheduledActionName: string | undefined;
1685
1715
  TargetAction: ScheduledActionType | undefined;
1686
1716
  Schedule: string | undefined;
1687
1717
  IamRole: string | undefined;
1688
- ScheduledActionDescription?: string;
1689
- StartTime?: Date;
1690
- EndTime?: Date;
1691
- Enable?: boolean;
1718
+ ScheduledActionDescription?: string | undefined;
1719
+ StartTime?: Date | undefined;
1720
+ EndTime?: Date | undefined;
1721
+ Enable?: boolean | undefined;
1692
1722
  }
1693
1723
  export declare class InvalidScheduledActionFault extends __BaseException {
1694
1724
  readonly name: "InvalidScheduledActionFault";
@@ -1711,15 +1741,15 @@ export declare const ScheduledActionState: {
1711
1741
  export type ScheduledActionState =
1712
1742
  (typeof ScheduledActionState)[keyof typeof ScheduledActionState];
1713
1743
  export interface ScheduledAction {
1714
- ScheduledActionName?: string;
1715
- TargetAction?: ScheduledActionType;
1716
- Schedule?: string;
1717
- IamRole?: string;
1718
- ScheduledActionDescription?: string;
1719
- State?: ScheduledActionState;
1720
- NextInvocations?: Date[];
1721
- StartTime?: Date;
1722
- EndTime?: Date;
1744
+ ScheduledActionName?: string | undefined;
1745
+ TargetAction?: ScheduledActionType | undefined;
1746
+ Schedule?: string | undefined;
1747
+ IamRole?: string | undefined;
1748
+ ScheduledActionDescription?: string | undefined;
1749
+ State?: ScheduledActionState | undefined;
1750
+ NextInvocations?: Date[] | undefined;
1751
+ StartTime?: Date | undefined;
1752
+ EndTime?: Date | undefined;
1723
1753
  }
1724
1754
  export declare class ScheduledActionAlreadyExistsFault extends __BaseException {
1725
1755
  readonly name: "ScheduledActionAlreadyExistsFault";
@@ -1753,16 +1783,16 @@ export declare class ScheduledActionTypeUnsupportedFault extends __BaseException
1753
1783
  }
1754
1784
  export interface CreateSnapshotCopyGrantMessage {
1755
1785
  SnapshotCopyGrantName: string | undefined;
1756
- KmsKeyId?: string;
1757
- Tags?: Tag[];
1786
+ KmsKeyId?: string | undefined;
1787
+ Tags?: Tag[] | undefined;
1758
1788
  }
1759
1789
  export interface SnapshotCopyGrant {
1760
- SnapshotCopyGrantName?: string;
1761
- KmsKeyId?: string;
1762
- Tags?: Tag[];
1790
+ SnapshotCopyGrantName?: string | undefined;
1791
+ KmsKeyId?: string | undefined;
1792
+ Tags?: Tag[] | undefined;
1763
1793
  }
1764
1794
  export interface CreateSnapshotCopyGrantResult {
1765
- SnapshotCopyGrant?: SnapshotCopyGrant;
1795
+ SnapshotCopyGrant?: SnapshotCopyGrant | undefined;
1766
1796
  }
1767
1797
  export declare class SnapshotCopyGrantAlreadyExistsFault extends __BaseException {
1768
1798
  readonly name: "SnapshotCopyGrantAlreadyExistsFault";
@@ -1785,12 +1815,12 @@ export declare class SnapshotCopyGrantQuotaExceededFault extends __BaseException
1785
1815
  );
1786
1816
  }
1787
1817
  export interface CreateSnapshotScheduleMessage {
1788
- ScheduleDefinitions?: string[];
1789
- ScheduleIdentifier?: string;
1790
- ScheduleDescription?: string;
1791
- Tags?: Tag[];
1792
- DryRun?: boolean;
1793
- NextInvocations?: number;
1818
+ ScheduleDefinitions?: string[] | undefined;
1819
+ ScheduleIdentifier?: string | undefined;
1820
+ ScheduleDescription?: string | undefined;
1821
+ Tags?: Tag[] | undefined;
1822
+ DryRun?: boolean | undefined;
1823
+ NextInvocations?: number | undefined;
1794
1824
  }
1795
1825
  export declare class ScheduleDefinitionTypeUnsupportedFault extends __BaseException {
1796
1826
  readonly name: "ScheduleDefinitionTypeUnsupportedFault";
@@ -1803,13 +1833,13 @@ export declare class ScheduleDefinitionTypeUnsupportedFault extends __BaseExcept
1803
1833
  );
1804
1834
  }
1805
1835
  export interface SnapshotSchedule {
1806
- ScheduleDefinitions?: string[];
1807
- ScheduleIdentifier?: string;
1808
- ScheduleDescription?: string;
1809
- Tags?: Tag[];
1810
- NextInvocations?: Date[];
1811
- AssociatedClusterCount?: number;
1812
- AssociatedClusters?: ClusterAssociatedToSchedule[];
1836
+ ScheduleDefinitions?: string[] | undefined;
1837
+ ScheduleIdentifier?: string | undefined;
1838
+ ScheduleDescription?: string | undefined;
1839
+ Tags?: Tag[] | undefined;
1840
+ NextInvocations?: Date[] | undefined;
1841
+ AssociatedClusterCount?: number | undefined;
1842
+ AssociatedClusters?: ClusterAssociatedToSchedule[] | undefined;
1813
1843
  }
1814
1844
  export declare class SnapshotScheduleAlreadyExistsFault extends __BaseException {
1815
1845
  readonly name: "SnapshotScheduleAlreadyExistsFault";
@@ -1874,9 +1904,9 @@ export interface CreateUsageLimitMessage {
1874
1904
  FeatureType: UsageLimitFeatureType | undefined;
1875
1905
  LimitType: UsageLimitLimitType | undefined;
1876
1906
  Amount: number | undefined;
1877
- Period?: UsageLimitPeriod;
1878
- BreachAction?: UsageLimitBreachAction;
1879
- Tags?: Tag[];
1907
+ Period?: UsageLimitPeriod | undefined;
1908
+ BreachAction?: UsageLimitBreachAction | undefined;
1909
+ Tags?: Tag[] | undefined;
1880
1910
  }
1881
1911
  export declare class InvalidUsageLimitFault extends __BaseException {
1882
1912
  readonly name: "InvalidUsageLimitFault";
@@ -1886,14 +1916,14 @@ export declare class InvalidUsageLimitFault extends __BaseException {
1886
1916
  );
1887
1917
  }
1888
1918
  export interface UsageLimit {
1889
- UsageLimitId?: string;
1890
- ClusterIdentifier?: string;
1891
- FeatureType?: UsageLimitFeatureType;
1892
- LimitType?: UsageLimitLimitType;
1893
- Amount?: number;
1894
- Period?: UsageLimitPeriod;
1895
- BreachAction?: UsageLimitBreachAction;
1896
- Tags?: Tag[];
1919
+ UsageLimitId?: string | undefined;
1920
+ ClusterIdentifier?: string | undefined;
1921
+ FeatureType?: UsageLimitFeatureType | undefined;
1922
+ LimitType?: UsageLimitLimitType | undefined;
1923
+ Amount?: number | undefined;
1924
+ Period?: UsageLimitPeriod | undefined;
1925
+ BreachAction?: UsageLimitBreachAction | undefined;
1926
+ Tags?: Tag[] | undefined;
1897
1927
  }
1898
1928
  export declare class UsageLimitAlreadyExistsFault extends __BaseException {
1899
1929
  readonly name: "UsageLimitAlreadyExistsFault";
@@ -1913,12 +1943,12 @@ export declare class CustomDomainAssociationNotFoundFault extends __BaseExceptio
1913
1943
  );
1914
1944
  }
1915
1945
  export interface CustomDomainAssociationsMessage {
1916
- Marker?: string;
1917
- Associations?: Association[];
1946
+ Marker?: string | undefined;
1947
+ Associations?: Association[] | undefined;
1918
1948
  }
1919
1949
  export interface CustomerStorageMessage {
1920
- TotalBackupSizeInMegaBytes?: number;
1921
- TotalProvisionedStorageInMegaBytes?: number;
1950
+ TotalBackupSizeInMegaBytes?: number | undefined;
1951
+ TotalProvisionedStorageInMegaBytes?: number | undefined;
1922
1952
  }
1923
1953
  export declare const DataShareStatusForConsumer: {
1924
1954
  readonly ACTIVE: "ACTIVE";
@@ -1940,24 +1970,24 @@ export interface DeauthorizeDataShareMessage {
1940
1970
  ConsumerIdentifier: string | undefined;
1941
1971
  }
1942
1972
  export interface DefaultClusterParameters {
1943
- ParameterGroupFamily?: string;
1944
- Marker?: string;
1945
- Parameters?: Parameter[];
1973
+ ParameterGroupFamily?: string | undefined;
1974
+ Marker?: string | undefined;
1975
+ Parameters?: Parameter[] | undefined;
1946
1976
  }
1947
1977
  export interface DeleteAuthenticationProfileMessage {
1948
1978
  AuthenticationProfileName: string | undefined;
1949
1979
  }
1950
1980
  export interface DeleteAuthenticationProfileResult {
1951
- AuthenticationProfileName?: string;
1981
+ AuthenticationProfileName?: string | undefined;
1952
1982
  }
1953
1983
  export interface DeleteClusterMessage {
1954
1984
  ClusterIdentifier: string | undefined;
1955
- SkipFinalClusterSnapshot?: boolean;
1956
- FinalClusterSnapshotIdentifier?: string;
1957
- FinalClusterSnapshotRetentionPeriod?: number;
1985
+ SkipFinalClusterSnapshot?: boolean | undefined;
1986
+ FinalClusterSnapshotIdentifier?: string | undefined;
1987
+ FinalClusterSnapshotRetentionPeriod?: number | undefined;
1958
1988
  }
1959
1989
  export interface DeleteClusterResult {
1960
- Cluster?: Cluster;
1990
+ Cluster?: Cluster | undefined;
1961
1991
  }
1962
1992
  export interface DeleteClusterParameterGroupMessage {
1963
1993
  ParameterGroupName: string | undefined;
@@ -1976,7 +2006,7 @@ export interface DeleteClusterSecurityGroupMessage {
1976
2006
  ClusterSecurityGroupName: string | undefined;
1977
2007
  }
1978
2008
  export interface DeleteClusterSnapshotResult {
1979
- Snapshot?: Snapshot;
2009
+ Snapshot?: Snapshot | undefined;
1980
2010
  }
1981
2011
  export interface DeleteClusterSubnetGroupMessage {
1982
2012
  ClusterSubnetGroupName: string | undefined;
@@ -2133,38 +2163,25 @@ export declare class UsageLimitNotFoundFault extends __BaseException {
2133
2163
  );
2134
2164
  }
2135
2165
  export interface DescribeAccountAttributesMessage {
2136
- AttributeNames?: string[];
2166
+ AttributeNames?: string[] | undefined;
2137
2167
  }
2138
2168
  export interface DescribeAuthenticationProfilesMessage {
2139
- AuthenticationProfileName?: string;
2169
+ AuthenticationProfileName?: string | undefined;
2140
2170
  }
2141
2171
  export interface DescribeAuthenticationProfilesResult {
2142
- AuthenticationProfiles?: AuthenticationProfile[];
2172
+ AuthenticationProfiles?: AuthenticationProfile[] | undefined;
2143
2173
  }
2144
2174
  export interface DescribeClusterDbRevisionsMessage {
2145
- ClusterIdentifier?: string;
2146
- MaxRecords?: number;
2147
- Marker?: string;
2175
+ ClusterIdentifier?: string | undefined;
2176
+ MaxRecords?: number | undefined;
2177
+ Marker?: string | undefined;
2148
2178
  }
2149
2179
  export interface DescribeClusterParameterGroupsMessage {
2150
- ParameterGroupName?: string;
2151
- MaxRecords?: number;
2152
- Marker?: string;
2153
- TagKeys?: string[];
2154
- TagValues?: string[];
2155
- }
2156
- export interface DescribeClusterParametersMessage {
2157
- ParameterGroupName: string | undefined;
2158
- Source?: string;
2159
- MaxRecords?: number;
2160
- Marker?: string;
2161
- }
2162
- export interface DescribeClustersMessage {
2163
- ClusterIdentifier?: string;
2164
- MaxRecords?: number;
2165
- Marker?: string;
2166
- TagKeys?: string[];
2167
- TagValues?: string[];
2180
+ ParameterGroupName?: string | undefined;
2181
+ MaxRecords?: number | undefined;
2182
+ Marker?: string | undefined;
2183
+ TagKeys?: string[] | undefined;
2184
+ TagValues?: string[] | undefined;
2168
2185
  }
2169
2186
  export declare const PendingModifiedValuesFilterSensitiveLog: (
2170
2187
  obj: PendingModifiedValues