@aws-sdk/client-redshift 3.301.0 → 3.303.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.
@@ -33,11 +33,16 @@ export interface RecurringCharge {
33
33
  }
34
34
  /**
35
35
  * @public
36
+ * @enum
36
37
  */
37
- export declare enum ReservedNodeOfferingType {
38
- Regular = "Regular",
39
- Upgradable = "Upgradable"
40
- }
38
+ export declare const ReservedNodeOfferingType: {
39
+ readonly Regular: "Regular";
40
+ readonly Upgradable: "Upgradable";
41
+ };
42
+ /**
43
+ * @public
44
+ */
45
+ export type ReservedNodeOfferingType = (typeof ReservedNodeOfferingType)[keyof typeof ReservedNodeOfferingType];
41
46
  /**
42
47
  * @public
43
48
  * <p>Describes a reserved node. You can call the <a>DescribeReservedNodeOfferings</a> API to obtain the available reserved node
@@ -290,12 +295,17 @@ export interface AccountWithRestoreAccess {
290
295
  }
291
296
  /**
292
297
  * @public
298
+ * @enum
293
299
  */
294
- export declare enum ActionType {
295
- RECOMMEND_NODE_CONFIG = "recommend-node-config",
296
- RESIZE_CLUSTER = "resize-cluster",
297
- RESTORE_CLUSTER = "restore-cluster"
298
- }
300
+ export declare const ActionType: {
301
+ readonly RECOMMEND_NODE_CONFIG: "recommend-node-config";
302
+ readonly RESIZE_CLUSTER: "resize-cluster";
303
+ readonly RESTORE_CLUSTER: "restore-cluster";
304
+ };
305
+ /**
306
+ * @public
307
+ */
308
+ export type ActionType = (typeof ActionType)[keyof typeof ActionType];
299
309
  /**
300
310
  * @public
301
311
  * <p>The <code>ClusterIdentifier</code> parameter does not refer to an existing cluster.
@@ -369,20 +379,30 @@ export declare class UnauthorizedPartnerIntegrationFault extends __BaseException
369
379
  }
370
380
  /**
371
381
  * @public
382
+ * @enum
372
383
  */
373
- export declare enum AquaConfigurationStatus {
374
- AUTO = "auto",
375
- DISABLED = "disabled",
376
- ENABLED = "enabled"
377
- }
384
+ export declare const AquaConfigurationStatus: {
385
+ readonly AUTO: "auto";
386
+ readonly DISABLED: "disabled";
387
+ readonly ENABLED: "enabled";
388
+ };
378
389
  /**
379
390
  * @public
380
391
  */
381
- export declare enum AquaStatus {
382
- APPLYING = "applying",
383
- DISABLED = "disabled",
384
- ENABLED = "enabled"
385
- }
392
+ export type AquaConfigurationStatus = (typeof AquaConfigurationStatus)[keyof typeof AquaConfigurationStatus];
393
+ /**
394
+ * @public
395
+ * @enum
396
+ */
397
+ export declare const AquaStatus: {
398
+ readonly APPLYING: "applying";
399
+ readonly DISABLED: "disabled";
400
+ readonly ENABLED: "enabled";
401
+ };
402
+ /**
403
+ * @public
404
+ */
405
+ export type AquaStatus = (typeof AquaStatus)[keyof typeof AquaStatus];
386
406
  /**
387
407
  * @public
388
408
  * <p>The operation that uses this structure is retired. Amazon Redshift automatically determines whether to use AQUA (Advanced Query Accelerator).</p>
@@ -421,15 +441,20 @@ export interface AssociateDataShareConsumerMessage {
421
441
  }
422
442
  /**
423
443
  * @public
444
+ * @enum
424
445
  */
425
- export declare enum DataShareStatus {
426
- ACTIVE = "ACTIVE",
427
- AUTHORIZED = "AUTHORIZED",
428
- AVAILABLE = "AVAILABLE",
429
- DEAUTHORIZED = "DEAUTHORIZED",
430
- PENDING_AUTHORIZATION = "PENDING_AUTHORIZATION",
431
- REJECTED = "REJECTED"
432
- }
446
+ export declare const DataShareStatus: {
447
+ readonly ACTIVE: "ACTIVE";
448
+ readonly AUTHORIZED: "AUTHORIZED";
449
+ readonly AVAILABLE: "AVAILABLE";
450
+ readonly DEAUTHORIZED: "DEAUTHORIZED";
451
+ readonly PENDING_AUTHORIZATION: "PENDING_AUTHORIZATION";
452
+ readonly REJECTED: "REJECTED";
453
+ };
454
+ /**
455
+ * @public
456
+ */
457
+ export type DataShareStatus = (typeof DataShareStatus)[keyof typeof DataShareStatus];
433
458
  /**
434
459
  * @public
435
460
  * <p>The association of a datashare from a producer account with a data consumer.
@@ -510,12 +535,17 @@ export declare class InvalidNamespaceFault extends __BaseException {
510
535
  }
511
536
  /**
512
537
  * @public
538
+ * @enum
513
539
  */
514
- export declare enum ScheduleState {
515
- ACTIVE = "ACTIVE",
516
- FAILED = "FAILED",
517
- MODIFYING = "MODIFYING"
518
- }
540
+ export declare const ScheduleState: {
541
+ readonly ACTIVE: "ACTIVE";
542
+ readonly FAILED: "FAILED";
543
+ readonly MODIFYING: "MODIFYING";
544
+ };
545
+ /**
546
+ * @public
547
+ */
548
+ export type ScheduleState = (typeof ScheduleState)[keyof typeof ScheduleState];
519
549
  /**
520
550
  * @public
521
551
  * <p></p>
@@ -622,11 +652,16 @@ export declare class AuthorizationQuotaExceededFault extends __BaseException {
622
652
  }
623
653
  /**
624
654
  * @public
655
+ * @enum
625
656
  */
626
- export declare enum AuthorizationStatus {
627
- AUTHORIZED = "Authorized",
628
- REVOKING = "Revoking"
629
- }
657
+ export declare const AuthorizationStatus: {
658
+ readonly AUTHORIZED: "Authorized";
659
+ readonly REVOKING: "Revoking";
660
+ };
661
+ /**
662
+ * @public
663
+ */
664
+ export type AuthorizationStatus = (typeof AuthorizationStatus)[keyof typeof AuthorizationStatus];
630
665
  /**
631
666
  * @public
632
667
  * <p></p>
@@ -1830,15 +1865,20 @@ export interface PendingModifiedValues {
1830
1865
  }
1831
1866
  /**
1832
1867
  * @public
1868
+ * @enum
1833
1869
  */
1834
- export declare enum ReservedNodeExchangeStatusType {
1835
- FAILED = "FAILED",
1836
- IN_PROGRESS = "IN_PROGRESS",
1837
- PENDING = "PENDING",
1838
- REQUESTED = "REQUESTED",
1839
- RETRYING = "RETRYING",
1840
- SUCCEEDED = "SUCCEEDED"
1841
- }
1870
+ export declare const ReservedNodeExchangeStatusType: {
1871
+ readonly FAILED: "FAILED";
1872
+ readonly IN_PROGRESS: "IN_PROGRESS";
1873
+ readonly PENDING: "PENDING";
1874
+ readonly REQUESTED: "REQUESTED";
1875
+ readonly RETRYING: "RETRYING";
1876
+ readonly SUCCEEDED: "SUCCEEDED";
1877
+ };
1878
+ /**
1879
+ * @public
1880
+ */
1881
+ export type ReservedNodeExchangeStatusType = (typeof ReservedNodeExchangeStatusType)[keyof typeof ReservedNodeExchangeStatusType];
1842
1882
  /**
1843
1883
  * @public
1844
1884
  * <p>Reserved-node status details, such as the source reserved-node
@@ -2502,11 +2542,16 @@ export declare class ClusterParameterGroupAlreadyExistsFault extends __BaseExcep
2502
2542
  }
2503
2543
  /**
2504
2544
  * @public
2545
+ * @enum
2505
2546
  */
2506
- export declare enum ParameterApplyType {
2507
- dynamic = "dynamic",
2508
- static = "static"
2509
- }
2547
+ export declare const ParameterApplyType: {
2548
+ readonly dynamic: "dynamic";
2549
+ readonly static: "static";
2550
+ };
2551
+ /**
2552
+ * @public
2553
+ */
2554
+ export type ParameterApplyType = (typeof ParameterApplyType)[keyof typeof ParameterApplyType];
2510
2555
  /**
2511
2556
  * @public
2512
2557
  * <p>Describes a parameter in a cluster parameter group.</p>
@@ -4462,11 +4507,16 @@ export declare class InvalidScheduleFault extends __BaseException {
4462
4507
  }
4463
4508
  /**
4464
4509
  * @public
4510
+ * @enum
4465
4511
  */
4466
- export declare enum ScheduledActionState {
4467
- ACTIVE = "ACTIVE",
4468
- DISABLED = "DISABLED"
4469
- }
4512
+ export declare const ScheduledActionState: {
4513
+ readonly ACTIVE: "ACTIVE";
4514
+ readonly DISABLED: "DISABLED";
4515
+ };
4516
+ /**
4517
+ * @public
4518
+ */
4519
+ export type ScheduledActionState = (typeof ScheduledActionState)[keyof typeof ScheduledActionState];
4470
4520
  /**
4471
4521
  * @public
4472
4522
  * <p>Describes a scheduled action. You can use a scheduled action to trigger some Amazon Redshift API operations on a schedule.
@@ -4802,35 +4852,55 @@ export declare class ResourceNotFoundFault extends __BaseException {
4802
4852
  }
4803
4853
  /**
4804
4854
  * @public
4855
+ * @enum
4805
4856
  */
4806
- export declare enum UsageLimitBreachAction {
4807
- DISABLE = "disable",
4808
- EMIT_METRIC = "emit-metric",
4809
- LOG = "log"
4810
- }
4857
+ export declare const UsageLimitBreachAction: {
4858
+ readonly DISABLE: "disable";
4859
+ readonly EMIT_METRIC: "emit-metric";
4860
+ readonly LOG: "log";
4861
+ };
4811
4862
  /**
4812
4863
  * @public
4813
4864
  */
4814
- export declare enum UsageLimitFeatureType {
4815
- CONCURRENCY_SCALING = "concurrency-scaling",
4816
- CROSS_REGION_DATASHARING = "cross-region-datasharing",
4817
- SPECTRUM = "spectrum"
4818
- }
4865
+ export type UsageLimitBreachAction = (typeof UsageLimitBreachAction)[keyof typeof UsageLimitBreachAction];
4819
4866
  /**
4820
4867
  * @public
4868
+ * @enum
4821
4869
  */
4822
- export declare enum UsageLimitLimitType {
4823
- DATA_SCANNED = "data-scanned",
4824
- TIME = "time"
4825
- }
4870
+ export declare const UsageLimitFeatureType: {
4871
+ readonly CONCURRENCY_SCALING: "concurrency-scaling";
4872
+ readonly CROSS_REGION_DATASHARING: "cross-region-datasharing";
4873
+ readonly SPECTRUM: "spectrum";
4874
+ };
4826
4875
  /**
4827
4876
  * @public
4828
4877
  */
4829
- export declare enum UsageLimitPeriod {
4830
- DAILY = "daily",
4831
- MONTHLY = "monthly",
4832
- WEEKLY = "weekly"
4833
- }
4878
+ export type UsageLimitFeatureType = (typeof UsageLimitFeatureType)[keyof typeof UsageLimitFeatureType];
4879
+ /**
4880
+ * @public
4881
+ * @enum
4882
+ */
4883
+ export declare const UsageLimitLimitType: {
4884
+ readonly DATA_SCANNED: "data-scanned";
4885
+ readonly TIME: "time";
4886
+ };
4887
+ /**
4888
+ * @public
4889
+ */
4890
+ export type UsageLimitLimitType = (typeof UsageLimitLimitType)[keyof typeof UsageLimitLimitType];
4891
+ /**
4892
+ * @public
4893
+ * @enum
4894
+ */
4895
+ export declare const UsageLimitPeriod: {
4896
+ readonly DAILY: "daily";
4897
+ readonly MONTHLY: "monthly";
4898
+ readonly WEEKLY: "weekly";
4899
+ };
4900
+ /**
4901
+ * @public
4902
+ */
4903
+ export type UsageLimitPeriod = (typeof UsageLimitPeriod)[keyof typeof UsageLimitPeriod];
4834
4904
  /**
4835
4905
  * @public
4836
4906
  */
@@ -4963,21 +5033,31 @@ export interface CustomerStorageMessage {
4963
5033
  }
4964
5034
  /**
4965
5035
  * @public
5036
+ * @enum
4966
5037
  */
4967
- export declare enum DataShareStatusForConsumer {
4968
- ACTIVE = "ACTIVE",
4969
- AVAILABLE = "AVAILABLE"
4970
- }
5038
+ export declare const DataShareStatusForConsumer: {
5039
+ readonly ACTIVE: "ACTIVE";
5040
+ readonly AVAILABLE: "AVAILABLE";
5041
+ };
4971
5042
  /**
4972
5043
  * @public
4973
5044
  */
4974
- export declare enum DataShareStatusForProducer {
4975
- ACTIVE = "ACTIVE",
4976
- AUTHORIZED = "AUTHORIZED",
4977
- DEAUTHORIZED = "DEAUTHORIZED",
4978
- PENDING_AUTHORIZATION = "PENDING_AUTHORIZATION",
4979
- REJECTED = "REJECTED"
4980
- }
5045
+ export type DataShareStatusForConsumer = (typeof DataShareStatusForConsumer)[keyof typeof DataShareStatusForConsumer];
5046
+ /**
5047
+ * @public
5048
+ * @enum
5049
+ */
5050
+ export declare const DataShareStatusForProducer: {
5051
+ readonly ACTIVE: "ACTIVE";
5052
+ readonly AUTHORIZED: "AUTHORIZED";
5053
+ readonly DEAUTHORIZED: "DEAUTHORIZED";
5054
+ readonly PENDING_AUTHORIZATION: "PENDING_AUTHORIZATION";
5055
+ readonly REJECTED: "REJECTED";
5056
+ };
5057
+ /**
5058
+ * @public
5059
+ */
5060
+ export type DataShareStatusForProducer = (typeof DataShareStatusForProducer)[keyof typeof DataShareStatusForProducer];
4981
5061
  /**
4982
5062
  * @public
4983
5063
  */
@@ -5657,19 +5737,29 @@ export interface DescribeClusterSecurityGroupsMessage {
5657
5737
  }
5658
5738
  /**
5659
5739
  * @public
5740
+ * @enum
5660
5741
  */
5661
- export declare enum SnapshotAttributeToSortBy {
5662
- CREATE_TIME = "CREATE_TIME",
5663
- SOURCE_TYPE = "SOURCE_TYPE",
5664
- TOTAL_SIZE = "TOTAL_SIZE"
5665
- }
5742
+ export declare const SnapshotAttributeToSortBy: {
5743
+ readonly CREATE_TIME: "CREATE_TIME";
5744
+ readonly SOURCE_TYPE: "SOURCE_TYPE";
5745
+ readonly TOTAL_SIZE: "TOTAL_SIZE";
5746
+ };
5666
5747
  /**
5667
5748
  * @public
5668
5749
  */
5669
- export declare enum SortByOrder {
5670
- ASCENDING = "ASC",
5671
- DESCENDING = "DESC"
5672
- }
5750
+ export type SnapshotAttributeToSortBy = (typeof SnapshotAttributeToSortBy)[keyof typeof SnapshotAttributeToSortBy];
5751
+ /**
5752
+ * @public
5753
+ * @enum
5754
+ */
5755
+ export declare const SortByOrder: {
5756
+ readonly ASCENDING: "ASC";
5757
+ readonly DESCENDING: "DESC";
5758
+ };
5759
+ /**
5760
+ * @public
5761
+ */
5762
+ export type SortByOrder = (typeof SortByOrder)[keyof typeof SortByOrder];
5673
5763
  /**
5674
5764
  * @public
5675
5765
  * <p>Describes a sorting entity</p>
@@ -6336,14 +6426,19 @@ export interface EventCategoriesMessage {
6336
6426
  }
6337
6427
  /**
6338
6428
  * @public
6429
+ * @enum
6339
6430
  */
6340
- export declare enum SourceType {
6341
- cluster = "cluster",
6342
- cluster_parameter_group = "cluster-parameter-group",
6343
- cluster_security_group = "cluster-security-group",
6344
- cluster_snapshot = "cluster-snapshot",
6345
- scheduled_action = "scheduled-action"
6346
- }
6431
+ export declare const SourceType: {
6432
+ readonly cluster: "cluster";
6433
+ readonly cluster_parameter_group: "cluster-parameter-group";
6434
+ readonly cluster_security_group: "cluster-security-group";
6435
+ readonly cluster_snapshot: "cluster-snapshot";
6436
+ readonly scheduled_action: "scheduled-action";
6437
+ };
6438
+ /**
6439
+ * @public
6440
+ */
6441
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
6347
6442
  /**
6348
6443
  * @public
6349
6444
  * <p></p>
@@ -82,11 +82,16 @@ export interface DescribeLoggingStatusMessage {
82
82
  }
83
83
  /**
84
84
  * @public
85
+ * @enum
85
86
  */
86
- export declare enum LogDestinationType {
87
- CLOUDWATCH = "cloudwatch",
88
- S3 = "s3"
89
- }
87
+ export declare const LogDestinationType: {
88
+ readonly CLOUDWATCH: "cloudwatch";
89
+ readonly S3: "s3";
90
+ };
91
+ /**
92
+ * @public
93
+ */
94
+ export type LogDestinationType = (typeof LogDestinationType)[keyof typeof LogDestinationType];
90
95
  /**
91
96
  * @public
92
97
  * <p>Describes the status of logging for a cluster.</p>
@@ -129,25 +134,35 @@ export interface LoggingStatus {
129
134
  }
130
135
  /**
131
136
  * @public
137
+ * @enum
132
138
  */
133
- export declare enum NodeConfigurationOptionsFilterName {
134
- ESTIMATED_DISK_UTILIZATION_PERCENT = "EstimatedDiskUtilizationPercent",
135
- MODE = "Mode",
136
- NODE_TYPE = "NodeType",
137
- NUM_NODES = "NumberOfNodes"
138
- }
139
+ export declare const NodeConfigurationOptionsFilterName: {
140
+ readonly ESTIMATED_DISK_UTILIZATION_PERCENT: "EstimatedDiskUtilizationPercent";
141
+ readonly MODE: "Mode";
142
+ readonly NODE_TYPE: "NodeType";
143
+ readonly NUM_NODES: "NumberOfNodes";
144
+ };
139
145
  /**
140
146
  * @public
141
147
  */
142
- export declare enum OperatorType {
143
- BETWEEN = "between",
144
- EQ = "eq",
145
- GE = "ge",
146
- GT = "gt",
147
- IN = "in",
148
- LE = "le",
149
- LT = "lt"
150
- }
148
+ export type NodeConfigurationOptionsFilterName = (typeof NodeConfigurationOptionsFilterName)[keyof typeof NodeConfigurationOptionsFilterName];
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const OperatorType: {
154
+ readonly BETWEEN: "between";
155
+ readonly EQ: "eq";
156
+ readonly GE: "ge";
157
+ readonly GT: "gt";
158
+ readonly IN: "in";
159
+ readonly LE: "le";
160
+ readonly LT: "lt";
161
+ };
162
+ /**
163
+ * @public
164
+ */
165
+ export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
151
166
  /**
152
167
  * @public
153
168
  * <p>A set of elements to filter the returned node configurations.</p>
@@ -229,11 +244,16 @@ export interface DescribeNodeConfigurationOptionsMessage {
229
244
  }
230
245
  /**
231
246
  * @public
247
+ * @enum
232
248
  */
233
- export declare enum Mode {
234
- HIGH_PERFORMANCE = "high-performance",
235
- STANDARD = "standard"
236
- }
249
+ export declare const Mode: {
250
+ readonly HIGH_PERFORMANCE: "high-performance";
251
+ readonly STANDARD: "standard";
252
+ };
253
+ /**
254
+ * @public
255
+ */
256
+ export type Mode = (typeof Mode)[keyof typeof Mode];
237
257
  /**
238
258
  * @public
239
259
  * <p>A list of node configurations.</p>
@@ -375,13 +395,18 @@ export interface DescribePartnersInputMessage {
375
395
  }
376
396
  /**
377
397
  * @public
398
+ * @enum
378
399
  */
379
- export declare enum PartnerIntegrationStatus {
380
- Active = "Active",
381
- ConnectionFailure = "ConnectionFailure",
382
- Inactive = "Inactive",
383
- RuntimeFailure = "RuntimeFailure"
384
- }
400
+ export declare const PartnerIntegrationStatus: {
401
+ readonly Active: "Active";
402
+ readonly ConnectionFailure: "ConnectionFailure";
403
+ readonly Inactive: "Inactive";
404
+ readonly RuntimeFailure: "RuntimeFailure";
405
+ };
406
+ /**
407
+ * @public
408
+ */
409
+ export type PartnerIntegrationStatus = (typeof PartnerIntegrationStatus)[keyof typeof PartnerIntegrationStatus];
385
410
  /**
386
411
  * @public
387
412
  * <p>Describes a partner integration.</p>
@@ -631,11 +656,16 @@ export interface DescribeResizeMessage {
631
656
  }
632
657
  /**
633
658
  * @public
659
+ * @enum
634
660
  */
635
- export declare enum ScheduledActionFilterName {
636
- CLUSTER_IDENTIFIER = "cluster-identifier",
637
- IAM_ROLE = "iam-role"
638
- }
661
+ export declare const ScheduledActionFilterName: {
662
+ readonly CLUSTER_IDENTIFIER: "cluster-identifier";
663
+ readonly IAM_ROLE: "iam-role";
664
+ };
665
+ /**
666
+ * @public
667
+ */
668
+ export type ScheduledActionFilterName = (typeof ScheduledActionFilterName)[keyof typeof ScheduledActionFilterName];
639
669
  /**
640
670
  * @public
641
671
  * <p>A set of elements to filter the returned scheduled actions. </p>
@@ -652,12 +682,17 @@ export interface ScheduledActionFilter {
652
682
  }
653
683
  /**
654
684
  * @public
685
+ * @enum
655
686
  */
656
- export declare enum ScheduledActionTypeValues {
657
- PAUSE_CLUSTER = "PauseCluster",
658
- RESIZE_CLUSTER = "ResizeCluster",
659
- RESUME_CLUSTER = "ResumeCluster"
660
- }
687
+ export declare const ScheduledActionTypeValues: {
688
+ readonly PAUSE_CLUSTER: "PauseCluster";
689
+ readonly RESIZE_CLUSTER: "ResizeCluster";
690
+ readonly RESUME_CLUSTER: "ResumeCluster";
691
+ };
692
+ /**
693
+ * @public
694
+ */
695
+ export type ScheduledActionTypeValues = (typeof ScheduledActionTypeValues)[keyof typeof ScheduledActionTypeValues];
661
696
  /**
662
697
  * @public
663
698
  */
@@ -892,14 +927,19 @@ export declare class TableRestoreNotFoundFault extends __BaseException {
892
927
  }
893
928
  /**
894
929
  * @public
930
+ * @enum
895
931
  */
896
- export declare enum TableRestoreStatusType {
897
- CANCELED = "CANCELED",
898
- FAILED = "FAILED",
899
- IN_PROGRESS = "IN_PROGRESS",
900
- PENDING = "PENDING",
901
- SUCCEEDED = "SUCCEEDED"
902
- }
932
+ export declare const TableRestoreStatusType: {
933
+ readonly CANCELED: "CANCELED";
934
+ readonly FAILED: "FAILED";
935
+ readonly IN_PROGRESS: "IN_PROGRESS";
936
+ readonly PENDING: "PENDING";
937
+ readonly SUCCEEDED: "SUCCEEDED";
938
+ };
939
+ /**
940
+ * @public
941
+ */
942
+ export type TableRestoreStatusType = (typeof TableRestoreStatusType)[keyof typeof TableRestoreStatusType];
903
943
  /**
904
944
  * @public
905
945
  * <p>Describes the status of a <a>RestoreTableFromClusterSnapshot</a>
@@ -1608,11 +1648,16 @@ export interface GetClusterCredentialsWithIAMMessage {
1608
1648
  }
1609
1649
  /**
1610
1650
  * @public
1651
+ * @enum
1611
1652
  */
1612
- export declare enum ReservedNodeExchangeActionType {
1613
- RESIZE_CLUSTER = "resize-cluster",
1614
- RESTORE_CLUSTER = "restore-cluster"
1615
- }
1653
+ export declare const ReservedNodeExchangeActionType: {
1654
+ readonly RESIZE_CLUSTER: "resize-cluster";
1655
+ readonly RESTORE_CLUSTER: "restore-cluster";
1656
+ };
1657
+ /**
1658
+ * @public
1659
+ */
1660
+ export type ReservedNodeExchangeActionType = (typeof ReservedNodeExchangeActionType)[keyof typeof ReservedNodeExchangeActionType];
1616
1661
  /**
1617
1662
  * @public
1618
1663
  */