@aws-sdk/client-elasticache 3.52.0 → 3.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ElastiCacheServiceException as __BaseException } from "./ElastiCacheServiceException";
2
3
  /**
3
4
  * <p>A tag that can be added to an ElastiCache cluster or replication group.
4
5
  * Tags are composed of a Key/Value pair. You can use tags to categorize and track all your ElastiCache resources, with the exception of global replication group. When you add or remove tags on replication groups, those actions will be replicated to all nodes in the replication group. A tag with a null Value is permitted.</p>
@@ -46,74 +47,101 @@ export declare namespace AddTagsToResourceMessage {
46
47
  /**
47
48
  * <p>The requested cluster ID does not refer to an existing cluster.</p>
48
49
  */
49
- export interface CacheClusterNotFoundFault extends __SmithyException, $MetadataBearer {
50
- name: "CacheClusterNotFoundFault";
51
- $fault: "client";
52
- message?: string;
50
+ export declare class CacheClusterNotFoundFault extends __BaseException {
51
+ readonly name: "CacheClusterNotFoundFault";
52
+ readonly $fault: "client";
53
+ /**
54
+ * @internal
55
+ */
56
+ constructor(opts: __ExceptionOptionType<CacheClusterNotFoundFault, __BaseException>);
53
57
  }
54
58
  /**
55
59
  * <p>The requested cache parameter group name does not refer to an existing cache parameter group.</p>
56
60
  */
57
- export interface CacheParameterGroupNotFoundFault extends __SmithyException, $MetadataBearer {
58
- name: "CacheParameterGroupNotFoundFault";
59
- $fault: "client";
60
- message?: string;
61
+ export declare class CacheParameterGroupNotFoundFault extends __BaseException {
62
+ readonly name: "CacheParameterGroupNotFoundFault";
63
+ readonly $fault: "client";
64
+ /**
65
+ * @internal
66
+ */
67
+ constructor(opts: __ExceptionOptionType<CacheParameterGroupNotFoundFault, __BaseException>);
61
68
  }
62
69
  /**
63
70
  * <p>The requested cache security group name does not refer to an existing cache security group.</p>
64
71
  */
65
- export interface CacheSecurityGroupNotFoundFault extends __SmithyException, $MetadataBearer {
66
- name: "CacheSecurityGroupNotFoundFault";
67
- $fault: "client";
68
- message?: string;
72
+ export declare class CacheSecurityGroupNotFoundFault extends __BaseException {
73
+ readonly name: "CacheSecurityGroupNotFoundFault";
74
+ readonly $fault: "client";
75
+ /**
76
+ * @internal
77
+ */
78
+ constructor(opts: __ExceptionOptionType<CacheSecurityGroupNotFoundFault, __BaseException>);
69
79
  }
70
80
  /**
71
81
  * <p>The requested cache subnet group name does not refer to an existing cache subnet group.</p>
72
82
  */
73
- export interface CacheSubnetGroupNotFoundFault extends __SmithyException, $MetadataBearer {
74
- name: "CacheSubnetGroupNotFoundFault";
75
- $fault: "client";
76
- message?: string;
83
+ export declare class CacheSubnetGroupNotFoundFault extends __BaseException {
84
+ readonly name: "CacheSubnetGroupNotFoundFault";
85
+ readonly $fault: "client";
86
+ /**
87
+ * @internal
88
+ */
89
+ constructor(opts: __ExceptionOptionType<CacheSubnetGroupNotFoundFault, __BaseException>);
77
90
  }
78
91
  /**
79
92
  * <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
80
93
  */
81
- export interface InvalidARNFault extends __SmithyException, $MetadataBearer {
82
- name: "InvalidARNFault";
83
- $fault: "client";
84
- message?: string;
94
+ export declare class InvalidARNFault extends __BaseException {
95
+ readonly name: "InvalidARNFault";
96
+ readonly $fault: "client";
97
+ /**
98
+ * @internal
99
+ */
100
+ constructor(opts: __ExceptionOptionType<InvalidARNFault, __BaseException>);
85
101
  }
86
102
  /**
87
103
  * <p>The requested replication group is not in the <code>available</code> state.</p>
88
104
  */
89
- export interface InvalidReplicationGroupStateFault extends __SmithyException, $MetadataBearer {
90
- name: "InvalidReplicationGroupStateFault";
91
- $fault: "client";
92
- message?: string;
105
+ export declare class InvalidReplicationGroupStateFault extends __BaseException {
106
+ readonly name: "InvalidReplicationGroupStateFault";
107
+ readonly $fault: "client";
108
+ /**
109
+ * @internal
110
+ */
111
+ constructor(opts: __ExceptionOptionType<InvalidReplicationGroupStateFault, __BaseException>);
93
112
  }
94
113
  /**
95
114
  * <p>The specified replication group does not exist.</p>
96
115
  */
97
- export interface ReplicationGroupNotFoundFault extends __SmithyException, $MetadataBearer {
98
- name: "ReplicationGroupNotFoundFault";
99
- $fault: "client";
100
- message?: string;
116
+ export declare class ReplicationGroupNotFoundFault extends __BaseException {
117
+ readonly name: "ReplicationGroupNotFoundFault";
118
+ readonly $fault: "client";
119
+ /**
120
+ * @internal
121
+ */
122
+ constructor(opts: __ExceptionOptionType<ReplicationGroupNotFoundFault, __BaseException>);
101
123
  }
102
124
  /**
103
125
  * <p>The requested reserved cache node was not found.</p>
104
126
  */
105
- export interface ReservedCacheNodeNotFoundFault extends __SmithyException, $MetadataBearer {
106
- name: "ReservedCacheNodeNotFoundFault";
107
- $fault: "client";
108
- message?: string;
127
+ export declare class ReservedCacheNodeNotFoundFault extends __BaseException {
128
+ readonly name: "ReservedCacheNodeNotFoundFault";
129
+ readonly $fault: "client";
130
+ /**
131
+ * @internal
132
+ */
133
+ constructor(opts: __ExceptionOptionType<ReservedCacheNodeNotFoundFault, __BaseException>);
109
134
  }
110
135
  /**
111
136
  * <p>The requested snapshot name does not refer to an existing snapshot.</p>
112
137
  */
113
- export interface SnapshotNotFoundFault extends __SmithyException, $MetadataBearer {
114
- name: "SnapshotNotFoundFault";
115
- $fault: "client";
116
- message?: string;
138
+ export declare class SnapshotNotFoundFault extends __BaseException {
139
+ readonly name: "SnapshotNotFoundFault";
140
+ readonly $fault: "client";
141
+ /**
142
+ * @internal
143
+ */
144
+ constructor(opts: __ExceptionOptionType<SnapshotNotFoundFault, __BaseException>);
117
145
  }
118
146
  /**
119
147
  * <p>Represents the output from the <code>AddTagsToResource</code>,
@@ -134,26 +162,35 @@ export declare namespace TagListMessage {
134
162
  /**
135
163
  * <p>The request cannot be processed because it would cause the resource to have more than the allowed number of tags. The maximum number of tags permitted on a resource is 50.</p>
136
164
  */
137
- export interface TagQuotaPerResourceExceeded extends __SmithyException, $MetadataBearer {
138
- name: "TagQuotaPerResourceExceeded";
139
- $fault: "client";
140
- message?: string;
165
+ export declare class TagQuotaPerResourceExceeded extends __BaseException {
166
+ readonly name: "TagQuotaPerResourceExceeded";
167
+ readonly $fault: "client";
168
+ /**
169
+ * @internal
170
+ */
171
+ constructor(opts: __ExceptionOptionType<TagQuotaPerResourceExceeded, __BaseException>);
141
172
  }
142
173
  /**
143
174
  * <p>The user group was not found or does not exist</p>
144
175
  */
145
- export interface UserGroupNotFoundFault extends __SmithyException, $MetadataBearer {
146
- name: "UserGroupNotFoundFault";
147
- $fault: "client";
148
- message?: string;
176
+ export declare class UserGroupNotFoundFault extends __BaseException {
177
+ readonly name: "UserGroupNotFoundFault";
178
+ readonly $fault: "client";
179
+ /**
180
+ * @internal
181
+ */
182
+ constructor(opts: __ExceptionOptionType<UserGroupNotFoundFault, __BaseException>);
149
183
  }
150
184
  /**
151
185
  * <p>The user does not exist or could not be found.</p>
152
186
  */
153
- export interface UserNotFoundFault extends __SmithyException, $MetadataBearer {
154
- name: "UserNotFoundFault";
155
- $fault: "client";
156
- message?: string;
187
+ export declare class UserNotFoundFault extends __BaseException {
188
+ readonly name: "UserNotFoundFault";
189
+ readonly $fault: "client";
190
+ /**
191
+ * @internal
192
+ */
193
+ constructor(opts: __ExceptionOptionType<UserNotFoundFault, __BaseException>);
157
194
  }
158
195
  /**
159
196
  * <p>Represents the allowed node types you can use to modify your cluster or replication group.</p>
@@ -183,10 +220,13 @@ export declare namespace AllowedNodeTypeModificationsMessage {
183
220
  /**
184
221
  * <p>The specified Amazon EC2 security group is already authorized for the specified cache security group.</p>
185
222
  */
186
- export interface AuthorizationAlreadyExistsFault extends __SmithyException, $MetadataBearer {
187
- name: "AuthorizationAlreadyExistsFault";
188
- $fault: "client";
189
- message?: string;
223
+ export declare class AuthorizationAlreadyExistsFault extends __BaseException {
224
+ readonly name: "AuthorizationAlreadyExistsFault";
225
+ readonly $fault: "client";
226
+ /**
227
+ * @internal
228
+ */
229
+ constructor(opts: __ExceptionOptionType<AuthorizationAlreadyExistsFault, __BaseException>);
190
230
  }
191
231
  /**
192
232
  * <p>Represents the input of an AuthorizeCacheSecurityGroupIngress operation.</p>
@@ -316,32 +356,35 @@ export declare namespace AuthorizeCacheSecurityGroupIngressResult {
316
356
  /**
317
357
  * <p>The current state of the cache security group does not allow deletion.</p>
318
358
  */
319
- export interface InvalidCacheSecurityGroupStateFault extends __SmithyException, $MetadataBearer {
320
- name: "InvalidCacheSecurityGroupStateFault";
321
- $fault: "client";
322
- message?: string;
359
+ export declare class InvalidCacheSecurityGroupStateFault extends __BaseException {
360
+ readonly name: "InvalidCacheSecurityGroupStateFault";
361
+ readonly $fault: "client";
362
+ /**
363
+ * @internal
364
+ */
365
+ constructor(opts: __ExceptionOptionType<InvalidCacheSecurityGroupStateFault, __BaseException>);
323
366
  }
324
367
  /**
325
368
  * <p>Two or more incompatible parameters were specified.</p>
326
369
  */
327
- export interface InvalidParameterCombinationException extends __SmithyException, $MetadataBearer {
328
- name: "InvalidParameterCombinationException";
329
- $fault: "client";
370
+ export declare class InvalidParameterCombinationException extends __BaseException {
371
+ readonly name: "InvalidParameterCombinationException";
372
+ readonly $fault: "client";
330
373
  /**
331
- * <p>Two or more parameters that must not be used together were used together.</p>
374
+ * @internal
332
375
  */
333
- message?: string;
376
+ constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
334
377
  }
335
378
  /**
336
379
  * <p>The value for a parameter is invalid.</p>
337
380
  */
338
- export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer {
339
- name: "InvalidParameterValueException";
340
- $fault: "client";
381
+ export declare class InvalidParameterValueException extends __BaseException {
382
+ readonly name: "InvalidParameterValueException";
383
+ readonly $fault: "client";
341
384
  /**
342
- * <p>A parameter value is invalid.</p>
385
+ * @internal
343
386
  */
344
- message?: string;
387
+ constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
345
388
  }
346
389
  export interface BatchApplyUpdateActionMessage {
347
390
  /**
@@ -366,10 +409,13 @@ export declare namespace BatchApplyUpdateActionMessage {
366
409
  /**
367
410
  * <p>The service update doesn't exist</p>
368
411
  */
369
- export interface ServiceUpdateNotFoundFault extends __SmithyException, $MetadataBearer {
370
- name: "ServiceUpdateNotFoundFault";
371
- $fault: "client";
372
- message?: string;
412
+ export declare class ServiceUpdateNotFoundFault extends __BaseException {
413
+ readonly name: "ServiceUpdateNotFoundFault";
414
+ readonly $fault: "client";
415
+ /**
416
+ * @internal
417
+ */
418
+ constructor(opts: __ExceptionOptionType<ServiceUpdateNotFoundFault, __BaseException>);
373
419
  }
374
420
  export declare enum UpdateActionStatus {
375
421
  COMPLETE = "complete",
@@ -1023,10 +1069,13 @@ export declare namespace CompleteMigrationResponse {
1023
1069
  /**
1024
1070
  * <p>The designated replication group is not available for data migration.</p>
1025
1071
  */
1026
- export interface ReplicationGroupNotUnderMigrationFault extends __SmithyException, $MetadataBearer {
1027
- name: "ReplicationGroupNotUnderMigrationFault";
1028
- $fault: "client";
1029
- message?: string;
1072
+ export declare class ReplicationGroupNotUnderMigrationFault extends __BaseException {
1073
+ readonly name: "ReplicationGroupNotUnderMigrationFault";
1074
+ readonly $fault: "client";
1075
+ /**
1076
+ * @internal
1077
+ */
1078
+ constructor(opts: __ExceptionOptionType<ReplicationGroupNotUnderMigrationFault, __BaseException>);
1030
1079
  }
1031
1080
  /**
1032
1081
  * <p>Represents the input of a <code>CopySnapshotMessage</code> operation.</p>
@@ -1626,42 +1675,57 @@ export declare namespace CopySnapshotResult {
1626
1675
  /**
1627
1676
  * <p>The current state of the snapshot does not allow the requested operation to occur.</p>
1628
1677
  */
1629
- export interface InvalidSnapshotStateFault extends __SmithyException, $MetadataBearer {
1630
- name: "InvalidSnapshotStateFault";
1631
- $fault: "client";
1632
- message?: string;
1678
+ export declare class InvalidSnapshotStateFault extends __BaseException {
1679
+ readonly name: "InvalidSnapshotStateFault";
1680
+ readonly $fault: "client";
1681
+ /**
1682
+ * @internal
1683
+ */
1684
+ constructor(opts: __ExceptionOptionType<InvalidSnapshotStateFault, __BaseException>);
1633
1685
  }
1634
1686
  /**
1635
1687
  * <p>You already have a snapshot with the given name.</p>
1636
1688
  */
1637
- export interface SnapshotAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1638
- name: "SnapshotAlreadyExistsFault";
1639
- $fault: "client";
1640
- message?: string;
1689
+ export declare class SnapshotAlreadyExistsFault extends __BaseException {
1690
+ readonly name: "SnapshotAlreadyExistsFault";
1691
+ readonly $fault: "client";
1692
+ /**
1693
+ * @internal
1694
+ */
1695
+ constructor(opts: __ExceptionOptionType<SnapshotAlreadyExistsFault, __BaseException>);
1641
1696
  }
1642
1697
  /**
1643
1698
  * <p>The request cannot be processed because it would exceed the maximum number of snapshots.</p>
1644
1699
  */
1645
- export interface SnapshotQuotaExceededFault extends __SmithyException, $MetadataBearer {
1646
- name: "SnapshotQuotaExceededFault";
1647
- $fault: "client";
1648
- message?: string;
1700
+ export declare class SnapshotQuotaExceededFault extends __BaseException {
1701
+ readonly name: "SnapshotQuotaExceededFault";
1702
+ readonly $fault: "client";
1703
+ /**
1704
+ * @internal
1705
+ */
1706
+ constructor(opts: __ExceptionOptionType<SnapshotQuotaExceededFault, __BaseException>);
1649
1707
  }
1650
1708
  /**
1651
1709
  * <p>You already have a cluster with the given identifier.</p>
1652
1710
  */
1653
- export interface CacheClusterAlreadyExistsFault extends __SmithyException, $MetadataBearer {
1654
- name: "CacheClusterAlreadyExistsFault";
1655
- $fault: "client";
1656
- message?: string;
1711
+ export declare class CacheClusterAlreadyExistsFault extends __BaseException {
1712
+ readonly name: "CacheClusterAlreadyExistsFault";
1713
+ readonly $fault: "client";
1714
+ /**
1715
+ * @internal
1716
+ */
1717
+ constructor(opts: __ExceptionOptionType<CacheClusterAlreadyExistsFault, __BaseException>);
1657
1718
  }
1658
1719
  /**
1659
1720
  * <p>The request cannot be processed because it would exceed the allowed number of clusters per customer.</p>
1660
1721
  */
1661
- export interface ClusterQuotaForCustomerExceededFault extends __SmithyException, $MetadataBearer {
1662
- name: "ClusterQuotaForCustomerExceededFault";
1663
- $fault: "client";
1664
- message?: string;
1722
+ export declare class ClusterQuotaForCustomerExceededFault extends __BaseException {
1723
+ readonly name: "ClusterQuotaForCustomerExceededFault";
1724
+ readonly $fault: "client";
1725
+ /**
1726
+ * @internal
1727
+ */
1728
+ constructor(opts: __ExceptionOptionType<ClusterQuotaForCustomerExceededFault, __BaseException>);
1665
1729
  }
1666
1730
  export declare enum AZMode {
1667
1731
  CROSS_AZ = "cross-az",
@@ -3110,50 +3174,68 @@ export declare namespace CreateCacheClusterResult {
3110
3174
  * <p>The requested cache node type is not available in the specified Availability Zone.
3111
3175
  * For more information, see <a href="http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ErrorMessages.html#ErrorMessages.INSUFFICIENT_CACHE_CLUSTER_CAPACITY">InsufficientCacheClusterCapacity</a> in the ElastiCache User Guide.</p>
3112
3176
  */
3113
- export interface InsufficientCacheClusterCapacityFault extends __SmithyException, $MetadataBearer {
3114
- name: "InsufficientCacheClusterCapacityFault";
3115
- $fault: "client";
3116
- message?: string;
3177
+ export declare class InsufficientCacheClusterCapacityFault extends __BaseException {
3178
+ readonly name: "InsufficientCacheClusterCapacityFault";
3179
+ readonly $fault: "client";
3180
+ /**
3181
+ * @internal
3182
+ */
3183
+ constructor(opts: __ExceptionOptionType<InsufficientCacheClusterCapacityFault, __BaseException>);
3117
3184
  }
3118
3185
  /**
3119
3186
  * <p>The VPC network is in an invalid state.</p>
3120
3187
  */
3121
- export interface InvalidVPCNetworkStateFault extends __SmithyException, $MetadataBearer {
3122
- name: "InvalidVPCNetworkStateFault";
3123
- $fault: "client";
3124
- message?: string;
3188
+ export declare class InvalidVPCNetworkStateFault extends __BaseException {
3189
+ readonly name: "InvalidVPCNetworkStateFault";
3190
+ readonly $fault: "client";
3191
+ /**
3192
+ * @internal
3193
+ */
3194
+ constructor(opts: __ExceptionOptionType<InvalidVPCNetworkStateFault, __BaseException>);
3125
3195
  }
3126
3196
  /**
3127
3197
  * <p>The request cannot be processed because it would exceed the allowed number of cache nodes in a single cluster.</p>
3128
3198
  */
3129
- export interface NodeQuotaForClusterExceededFault extends __SmithyException, $MetadataBearer {
3130
- name: "NodeQuotaForClusterExceededFault";
3131
- $fault: "client";
3132
- message?: string;
3199
+ export declare class NodeQuotaForClusterExceededFault extends __BaseException {
3200
+ readonly name: "NodeQuotaForClusterExceededFault";
3201
+ readonly $fault: "client";
3202
+ /**
3203
+ * @internal
3204
+ */
3205
+ constructor(opts: __ExceptionOptionType<NodeQuotaForClusterExceededFault, __BaseException>);
3133
3206
  }
3134
3207
  /**
3135
3208
  * <p>The request cannot be processed because it would exceed the allowed number of cache nodes per customer.</p>
3136
3209
  */
3137
- export interface NodeQuotaForCustomerExceededFault extends __SmithyException, $MetadataBearer {
3138
- name: "NodeQuotaForCustomerExceededFault";
3139
- $fault: "client";
3140
- message?: string;
3210
+ export declare class NodeQuotaForCustomerExceededFault extends __BaseException {
3211
+ readonly name: "NodeQuotaForCustomerExceededFault";
3212
+ readonly $fault: "client";
3213
+ /**
3214
+ * @internal
3215
+ */
3216
+ constructor(opts: __ExceptionOptionType<NodeQuotaForCustomerExceededFault, __BaseException>);
3141
3217
  }
3142
3218
  /**
3143
3219
  * <p>A cache parameter group with the requested name already exists.</p>
3144
3220
  */
3145
- export interface CacheParameterGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
3146
- name: "CacheParameterGroupAlreadyExistsFault";
3147
- $fault: "client";
3148
- message?: string;
3221
+ export declare class CacheParameterGroupAlreadyExistsFault extends __BaseException {
3222
+ readonly name: "CacheParameterGroupAlreadyExistsFault";
3223
+ readonly $fault: "client";
3224
+ /**
3225
+ * @internal
3226
+ */
3227
+ constructor(opts: __ExceptionOptionType<CacheParameterGroupAlreadyExistsFault, __BaseException>);
3149
3228
  }
3150
3229
  /**
3151
3230
  * <p>The request cannot be processed because it would exceed the maximum number of cache security groups.</p>
3152
3231
  */
3153
- export interface CacheParameterGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
3154
- name: "CacheParameterGroupQuotaExceededFault";
3155
- $fault: "client";
3156
- message?: string;
3232
+ export declare class CacheParameterGroupQuotaExceededFault extends __BaseException {
3233
+ readonly name: "CacheParameterGroupQuotaExceededFault";
3234
+ readonly $fault: "client";
3235
+ /**
3236
+ * @internal
3237
+ */
3238
+ constructor(opts: __ExceptionOptionType<CacheParameterGroupQuotaExceededFault, __BaseException>);
3157
3239
  }
3158
3240
  /**
3159
3241
  * <p>Represents the input of a <code>CreateCacheParameterGroup</code> operation.</p>
@@ -3250,26 +3332,35 @@ export declare namespace CreateCacheParameterGroupResult {
3250
3332
  /**
3251
3333
  * <p>The current state of the cache parameter group does not allow the requested operation to occur.</p>
3252
3334
  */
3253
- export interface InvalidCacheParameterGroupStateFault extends __SmithyException, $MetadataBearer {
3254
- name: "InvalidCacheParameterGroupStateFault";
3255
- $fault: "client";
3256
- message?: string;
3335
+ export declare class InvalidCacheParameterGroupStateFault extends __BaseException {
3336
+ readonly name: "InvalidCacheParameterGroupStateFault";
3337
+ readonly $fault: "client";
3338
+ /**
3339
+ * @internal
3340
+ */
3341
+ constructor(opts: __ExceptionOptionType<InvalidCacheParameterGroupStateFault, __BaseException>);
3257
3342
  }
3258
3343
  /**
3259
3344
  * <p>A cache security group with the specified name already exists.</p>
3260
3345
  */
3261
- export interface CacheSecurityGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
3262
- name: "CacheSecurityGroupAlreadyExistsFault";
3263
- $fault: "client";
3264
- message?: string;
3346
+ export declare class CacheSecurityGroupAlreadyExistsFault extends __BaseException {
3347
+ readonly name: "CacheSecurityGroupAlreadyExistsFault";
3348
+ readonly $fault: "client";
3349
+ /**
3350
+ * @internal
3351
+ */
3352
+ constructor(opts: __ExceptionOptionType<CacheSecurityGroupAlreadyExistsFault, __BaseException>);
3265
3353
  }
3266
3354
  /**
3267
3355
  * <p>The request cannot be processed because it would exceed the allowed number of cache security groups.</p>
3268
3356
  */
3269
- export interface CacheSecurityGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
3270
- name: "CacheSecurityGroupQuotaExceededFault";
3271
- $fault: "client";
3272
- message?: string;
3357
+ export declare class CacheSecurityGroupQuotaExceededFault extends __BaseException {
3358
+ readonly name: "CacheSecurityGroupQuotaExceededFault";
3359
+ readonly $fault: "client";
3360
+ /**
3361
+ * @internal
3362
+ */
3363
+ constructor(opts: __ExceptionOptionType<CacheSecurityGroupQuotaExceededFault, __BaseException>);
3273
3364
  }
3274
3365
  /**
3275
3366
  * <p>Represents the input of a <code>CreateCacheSecurityGroup</code> operation.</p>
@@ -3329,26 +3420,35 @@ export declare namespace CreateCacheSecurityGroupResult {
3329
3420
  /**
3330
3421
  * <p>The requested cache subnet group name is already in use by an existing cache subnet group.</p>
3331
3422
  */
3332
- export interface CacheSubnetGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
3333
- name: "CacheSubnetGroupAlreadyExistsFault";
3334
- $fault: "client";
3335
- message?: string;
3423
+ export declare class CacheSubnetGroupAlreadyExistsFault extends __BaseException {
3424
+ readonly name: "CacheSubnetGroupAlreadyExistsFault";
3425
+ readonly $fault: "client";
3426
+ /**
3427
+ * @internal
3428
+ */
3429
+ constructor(opts: __ExceptionOptionType<CacheSubnetGroupAlreadyExistsFault, __BaseException>);
3336
3430
  }
3337
3431
  /**
3338
3432
  * <p>The request cannot be processed because it would exceed the allowed number of cache subnet groups.</p>
3339
3433
  */
3340
- export interface CacheSubnetGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
3341
- name: "CacheSubnetGroupQuotaExceededFault";
3342
- $fault: "client";
3343
- message?: string;
3434
+ export declare class CacheSubnetGroupQuotaExceededFault extends __BaseException {
3435
+ readonly name: "CacheSubnetGroupQuotaExceededFault";
3436
+ readonly $fault: "client";
3437
+ /**
3438
+ * @internal
3439
+ */
3440
+ constructor(opts: __ExceptionOptionType<CacheSubnetGroupQuotaExceededFault, __BaseException>);
3344
3441
  }
3345
3442
  /**
3346
3443
  * <p>The request cannot be processed because it would exceed the allowed number of subnets in a cache subnet group.</p>
3347
3444
  */
3348
- export interface CacheSubnetQuotaExceededFault extends __SmithyException, $MetadataBearer {
3349
- name: "CacheSubnetQuotaExceededFault";
3350
- $fault: "client";
3351
- message?: string;
3445
+ export declare class CacheSubnetQuotaExceededFault extends __BaseException {
3446
+ readonly name: "CacheSubnetQuotaExceededFault";
3447
+ readonly $fault: "client";
3448
+ /**
3449
+ * @internal
3450
+ */
3451
+ constructor(opts: __ExceptionOptionType<CacheSubnetQuotaExceededFault, __BaseException>);
3352
3452
  }
3353
3453
  /**
3354
3454
  * <p>Represents the input of a <code>CreateCacheSubnetGroup</code> operation.</p>
@@ -3504,19 +3604,25 @@ export declare namespace CreateCacheSubnetGroupResult {
3504
3604
  /**
3505
3605
  * <p>An invalid subnet identifier was specified.</p>
3506
3606
  */
3507
- export interface InvalidSubnet extends __SmithyException, $MetadataBearer {
3508
- name: "InvalidSubnet";
3509
- $fault: "client";
3510
- message?: string;
3607
+ export declare class InvalidSubnet extends __BaseException {
3608
+ readonly name: "InvalidSubnet";
3609
+ readonly $fault: "client";
3610
+ /**
3611
+ * @internal
3612
+ */
3613
+ constructor(opts: __ExceptionOptionType<InvalidSubnet, __BaseException>);
3511
3614
  }
3512
3615
  /**
3513
3616
  * <p>At least one subnet ID does not match the other subnet IDs. This mismatch typically occurs when a
3514
3617
  * user sets one subnet ID to a regional Availability Zone and a different one to an outpost. Or when a user sets the subnet ID to an Outpost when not subscribed on this service.</p>
3515
3618
  */
3516
- export interface SubnetNotAllowedFault extends __SmithyException, $MetadataBearer {
3517
- name: "SubnetNotAllowedFault";
3518
- $fault: "client";
3519
- message?: string;
3619
+ export declare class SubnetNotAllowedFault extends __BaseException {
3620
+ readonly name: "SubnetNotAllowedFault";
3621
+ readonly $fault: "client";
3622
+ /**
3623
+ * @internal
3624
+ */
3625
+ constructor(opts: __ExceptionOptionType<SubnetNotAllowedFault, __BaseException>);
3520
3626
  }
3521
3627
  export interface CreateGlobalReplicationGroupMessage {
3522
3628
  /**
@@ -3701,18 +3807,24 @@ export declare namespace CreateGlobalReplicationGroupResult {
3701
3807
  /**
3702
3808
  * <p>The Global datastore name already exists.</p>
3703
3809
  */
3704
- export interface GlobalReplicationGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
3705
- name: "GlobalReplicationGroupAlreadyExistsFault";
3706
- $fault: "client";
3707
- message?: string;
3810
+ export declare class GlobalReplicationGroupAlreadyExistsFault extends __BaseException {
3811
+ readonly name: "GlobalReplicationGroupAlreadyExistsFault";
3812
+ readonly $fault: "client";
3813
+ /**
3814
+ * @internal
3815
+ */
3816
+ constructor(opts: __ExceptionOptionType<GlobalReplicationGroupAlreadyExistsFault, __BaseException>);
3708
3817
  }
3709
3818
  /**
3710
3819
  * <p>The specified service linked role (SLR) was not found.</p>
3711
3820
  */
3712
- export interface ServiceLinkedRoleNotFoundFault extends __SmithyException, $MetadataBearer {
3713
- name: "ServiceLinkedRoleNotFoundFault";
3714
- $fault: "client";
3715
- message?: string;
3821
+ export declare class ServiceLinkedRoleNotFoundFault extends __BaseException {
3822
+ readonly name: "ServiceLinkedRoleNotFoundFault";
3823
+ readonly $fault: "client";
3824
+ /**
3825
+ * @internal
3826
+ */
3827
+ constructor(opts: __ExceptionOptionType<ServiceLinkedRoleNotFoundFault, __BaseException>);
3716
3828
  }
3717
3829
  /**
3718
3830
  * <p>Represents the input of a <code>CreateReplicationGroup</code> operation.</p>
@@ -4334,51 +4446,69 @@ export declare namespace CreateReplicationGroupResult {
4334
4446
  /**
4335
4447
  * <p>The Global datastore does not exist</p>
4336
4448
  */
4337
- export interface GlobalReplicationGroupNotFoundFault extends __SmithyException, $MetadataBearer {
4338
- name: "GlobalReplicationGroupNotFoundFault";
4339
- $fault: "client";
4340
- message?: string;
4449
+ export declare class GlobalReplicationGroupNotFoundFault extends __BaseException {
4450
+ readonly name: "GlobalReplicationGroupNotFoundFault";
4451
+ readonly $fault: "client";
4452
+ /**
4453
+ * @internal
4454
+ */
4455
+ constructor(opts: __ExceptionOptionType<GlobalReplicationGroupNotFoundFault, __BaseException>);
4341
4456
  }
4342
4457
  /**
4343
4458
  * <p>The requested cluster is not in the <code>available</code> state.</p>
4344
4459
  */
4345
- export interface InvalidCacheClusterStateFault extends __SmithyException, $MetadataBearer {
4346
- name: "InvalidCacheClusterStateFault";
4347
- $fault: "client";
4348
- message?: string;
4460
+ export declare class InvalidCacheClusterStateFault extends __BaseException {
4461
+ readonly name: "InvalidCacheClusterStateFault";
4462
+ readonly $fault: "client";
4463
+ /**
4464
+ * @internal
4465
+ */
4466
+ constructor(opts: __ExceptionOptionType<InvalidCacheClusterStateFault, __BaseException>);
4349
4467
  }
4350
4468
  /**
4351
4469
  * <p>The Global datastore is not available or in primary-only state.</p>
4352
4470
  */
4353
- export interface InvalidGlobalReplicationGroupStateFault extends __SmithyException, $MetadataBearer {
4354
- name: "InvalidGlobalReplicationGroupStateFault";
4355
- $fault: "client";
4356
- message?: string;
4471
+ export declare class InvalidGlobalReplicationGroupStateFault extends __BaseException {
4472
+ readonly name: "InvalidGlobalReplicationGroupStateFault";
4473
+ readonly $fault: "client";
4474
+ /**
4475
+ * @internal
4476
+ */
4477
+ constructor(opts: __ExceptionOptionType<InvalidGlobalReplicationGroupStateFault, __BaseException>);
4357
4478
  }
4358
4479
  /**
4359
4480
  * <p>The user group is not in an active state.</p>
4360
4481
  */
4361
- export interface InvalidUserGroupStateFault extends __SmithyException, $MetadataBearer {
4362
- name: "InvalidUserGroupStateFault";
4363
- $fault: "client";
4364
- message?: string;
4482
+ export declare class InvalidUserGroupStateFault extends __BaseException {
4483
+ readonly name: "InvalidUserGroupStateFault";
4484
+ readonly $fault: "client";
4485
+ /**
4486
+ * @internal
4487
+ */
4488
+ constructor(opts: __ExceptionOptionType<InvalidUserGroupStateFault, __BaseException>);
4365
4489
  }
4366
4490
  /**
4367
4491
  * <p>The request cannot be processed because it would exceed the maximum allowed number
4368
4492
  * of node groups (shards) in a single replication group. The default maximum is 90</p>
4369
4493
  */
4370
- export interface NodeGroupsPerReplicationGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
4371
- name: "NodeGroupsPerReplicationGroupQuotaExceededFault";
4372
- $fault: "client";
4373
- message?: string;
4494
+ export declare class NodeGroupsPerReplicationGroupQuotaExceededFault extends __BaseException {
4495
+ readonly name: "NodeGroupsPerReplicationGroupQuotaExceededFault";
4496
+ readonly $fault: "client";
4497
+ /**
4498
+ * @internal
4499
+ */
4500
+ constructor(opts: __ExceptionOptionType<NodeGroupsPerReplicationGroupQuotaExceededFault, __BaseException>);
4374
4501
  }
4375
4502
  /**
4376
4503
  * <p>The specified replication group already exists.</p>
4377
4504
  */
4378
- export interface ReplicationGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4379
- name: "ReplicationGroupAlreadyExistsFault";
4380
- $fault: "client";
4381
- message?: string;
4505
+ export declare class ReplicationGroupAlreadyExistsFault extends __BaseException {
4506
+ readonly name: "ReplicationGroupAlreadyExistsFault";
4507
+ readonly $fault: "client";
4508
+ /**
4509
+ * @internal
4510
+ */
4511
+ constructor(opts: __ExceptionOptionType<ReplicationGroupAlreadyExistsFault, __BaseException>);
4382
4512
  }
4383
4513
  /**
4384
4514
  * <p>Represents the input of a <code>CreateSnapshot</code> operation.</p>
@@ -4436,10 +4566,13 @@ export declare namespace CreateSnapshotResult {
4436
4566
  * </ul>
4437
4567
  * <p>Neither of these are supported by ElastiCache.</p>
4438
4568
  */
4439
- export interface SnapshotFeatureNotSupportedFault extends __SmithyException, $MetadataBearer {
4440
- name: "SnapshotFeatureNotSupportedFault";
4441
- $fault: "client";
4442
- message?: string;
4569
+ export declare class SnapshotFeatureNotSupportedFault extends __BaseException {
4570
+ readonly name: "SnapshotFeatureNotSupportedFault";
4571
+ readonly $fault: "client";
4572
+ /**
4573
+ * @internal
4574
+ */
4575
+ constructor(opts: __ExceptionOptionType<SnapshotFeatureNotSupportedFault, __BaseException>);
4443
4576
  }
4444
4577
  export interface CreateUserMessage {
4445
4578
  /**
@@ -4480,10 +4613,13 @@ export declare namespace CreateUserMessage {
4480
4613
  /**
4481
4614
  * <p>A user with this username already exists.</p>
4482
4615
  */
4483
- export interface DuplicateUserNameFault extends __SmithyException, $MetadataBearer {
4484
- name: "DuplicateUserNameFault";
4485
- $fault: "client";
4486
- message?: string;
4616
+ export declare class DuplicateUserNameFault extends __BaseException {
4617
+ readonly name: "DuplicateUserNameFault";
4618
+ readonly $fault: "client";
4619
+ /**
4620
+ * @internal
4621
+ */
4622
+ constructor(opts: __ExceptionOptionType<DuplicateUserNameFault, __BaseException>);
4487
4623
  }
4488
4624
  export declare enum AuthenticationType {
4489
4625
  NO_PASSWORD = "no-password",
@@ -4555,18 +4691,24 @@ export declare namespace User {
4555
4691
  /**
4556
4692
  * <p>A user with this ID already exists.</p>
4557
4693
  */
4558
- export interface UserAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4559
- name: "UserAlreadyExistsFault";
4560
- $fault: "client";
4561
- message?: string;
4694
+ export declare class UserAlreadyExistsFault extends __BaseException {
4695
+ readonly name: "UserAlreadyExistsFault";
4696
+ readonly $fault: "client";
4697
+ /**
4698
+ * @internal
4699
+ */
4700
+ constructor(opts: __ExceptionOptionType<UserAlreadyExistsFault, __BaseException>);
4562
4701
  }
4563
4702
  /**
4564
4703
  * <p>The quota of users has been exceeded.</p>
4565
4704
  */
4566
- export interface UserQuotaExceededFault extends __SmithyException, $MetadataBearer {
4567
- name: "UserQuotaExceededFault";
4568
- $fault: "client";
4569
- message?: string;
4705
+ export declare class UserQuotaExceededFault extends __BaseException {
4706
+ readonly name: "UserQuotaExceededFault";
4707
+ readonly $fault: "client";
4708
+ /**
4709
+ * @internal
4710
+ */
4711
+ constructor(opts: __ExceptionOptionType<UserQuotaExceededFault, __BaseException>);
4570
4712
  }
4571
4713
  export interface CreateUserGroupMessage {
4572
4714
  /**
@@ -4595,10 +4737,13 @@ export declare namespace CreateUserGroupMessage {
4595
4737
  /**
4596
4738
  * <p>You must add default user to a user group.</p>
4597
4739
  */
4598
- export interface DefaultUserRequired extends __SmithyException, $MetadataBearer {
4599
- name: "DefaultUserRequired";
4600
- $fault: "client";
4601
- message?: string;
4740
+ export declare class DefaultUserRequired extends __BaseException {
4741
+ readonly name: "DefaultUserRequired";
4742
+ readonly $fault: "client";
4743
+ /**
4744
+ * @internal
4745
+ */
4746
+ constructor(opts: __ExceptionOptionType<DefaultUserRequired, __BaseException>);
4602
4747
  }
4603
4748
  /**
4604
4749
  * <p>Returns the updates being applied to the user group.</p>
@@ -4662,18 +4807,24 @@ export declare namespace UserGroup {
4662
4807
  /**
4663
4808
  * <p>The user group with this ID already exists.</p>
4664
4809
  */
4665
- export interface UserGroupAlreadyExistsFault extends __SmithyException, $MetadataBearer {
4666
- name: "UserGroupAlreadyExistsFault";
4667
- $fault: "client";
4668
- message?: string;
4810
+ export declare class UserGroupAlreadyExistsFault extends __BaseException {
4811
+ readonly name: "UserGroupAlreadyExistsFault";
4812
+ readonly $fault: "client";
4813
+ /**
4814
+ * @internal
4815
+ */
4816
+ constructor(opts: __ExceptionOptionType<UserGroupAlreadyExistsFault, __BaseException>);
4669
4817
  }
4670
4818
  /**
4671
4819
  * <p>The number of users exceeds the user group limit.</p>
4672
4820
  */
4673
- export interface UserGroupQuotaExceededFault extends __SmithyException, $MetadataBearer {
4674
- name: "UserGroupQuotaExceededFault";
4675
- $fault: "client";
4676
- message?: string;
4821
+ export declare class UserGroupQuotaExceededFault extends __BaseException {
4822
+ readonly name: "UserGroupQuotaExceededFault";
4823
+ readonly $fault: "client";
4824
+ /**
4825
+ * @internal
4826
+ */
4827
+ constructor(opts: __ExceptionOptionType<UserGroupQuotaExceededFault, __BaseException>);
4677
4828
  }
4678
4829
  export interface DecreaseNodeGroupsInGlobalReplicationGroupMessage {
4679
4830
  /**
@@ -4849,10 +5000,13 @@ export declare namespace DecreaseReplicaCountResult {
4849
5000
  /**
4850
5001
  * <p>The operation was not performed because no changes were required.</p>
4851
5002
  */
4852
- export interface NoOperationFault extends __SmithyException, $MetadataBearer {
4853
- name: "NoOperationFault";
4854
- $fault: "client";
4855
- message?: string;
5003
+ export declare class NoOperationFault extends __BaseException {
5004
+ readonly name: "NoOperationFault";
5005
+ readonly $fault: "client";
5006
+ /**
5007
+ * @internal
5008
+ */
5009
+ constructor(opts: __ExceptionOptionType<NoOperationFault, __BaseException>);
4856
5010
  }
4857
5011
  /**
4858
5012
  * <p>Represents the input of a <code>DeleteCacheCluster</code> operation.</p>
@@ -4925,10 +5079,13 @@ export declare namespace DeleteCacheSecurityGroupMessage {
4925
5079
  /**
4926
5080
  * <p>The requested cache subnet group is currently in use.</p>
4927
5081
  */
4928
- export interface CacheSubnetGroupInUse extends __SmithyException, $MetadataBearer {
4929
- name: "CacheSubnetGroupInUse";
4930
- $fault: "client";
4931
- message?: string;
5082
+ export declare class CacheSubnetGroupInUse extends __BaseException {
5083
+ readonly name: "CacheSubnetGroupInUse";
5084
+ readonly $fault: "client";
5085
+ /**
5086
+ * @internal
5087
+ */
5088
+ constructor(opts: __ExceptionOptionType<CacheSubnetGroupInUse, __BaseException>);
4932
5089
  }
4933
5090
  /**
4934
5091
  * <p>Represents the input of a <code>DeleteCacheSubnetGroup</code> operation.</p>
@@ -5052,10 +5209,13 @@ export declare namespace DeleteSnapshotResult {
5052
5209
  /**
5053
5210
  * <p>The default user assigned to the user group.</p>
5054
5211
  */
5055
- export interface DefaultUserAssociatedToUserGroupFault extends __SmithyException, $MetadataBearer {
5056
- name: "DefaultUserAssociatedToUserGroupFault";
5057
- $fault: "client";
5058
- message?: string;
5212
+ export declare class DefaultUserAssociatedToUserGroupFault extends __BaseException {
5213
+ readonly name: "DefaultUserAssociatedToUserGroupFault";
5214
+ readonly $fault: "client";
5215
+ /**
5216
+ * @internal
5217
+ */
5218
+ constructor(opts: __ExceptionOptionType<DefaultUserAssociatedToUserGroupFault, __BaseException>);
5059
5219
  }
5060
5220
  export interface DeleteUserMessage {
5061
5221
  /**
@@ -5072,10 +5232,13 @@ export declare namespace DeleteUserMessage {
5072
5232
  /**
5073
5233
  * <p>The user is not in active state.</p>
5074
5234
  */
5075
- export interface InvalidUserStateFault extends __SmithyException, $MetadataBearer {
5076
- name: "InvalidUserStateFault";
5077
- $fault: "client";
5078
- message?: string;
5235
+ export declare class InvalidUserStateFault extends __BaseException {
5236
+ readonly name: "InvalidUserStateFault";
5237
+ readonly $fault: "client";
5238
+ /**
5239
+ * @internal
5240
+ */
5241
+ constructor(opts: __ExceptionOptionType<InvalidUserStateFault, __BaseException>);
5079
5242
  }
5080
5243
  export interface DeleteUserGroupMessage {
5081
5244
  /**
@@ -7228,10 +7391,13 @@ export declare namespace ReservedCacheNodesOfferingMessage {
7228
7391
  /**
7229
7392
  * <p>The requested cache node offering does not exist.</p>
7230
7393
  */
7231
- export interface ReservedCacheNodesOfferingNotFoundFault extends __SmithyException, $MetadataBearer {
7232
- name: "ReservedCacheNodesOfferingNotFoundFault";
7233
- $fault: "client";
7234
- message?: string;
7394
+ export declare class ReservedCacheNodesOfferingNotFoundFault extends __BaseException {
7395
+ readonly name: "ReservedCacheNodesOfferingNotFoundFault";
7396
+ readonly $fault: "client";
7397
+ /**
7398
+ * @internal
7399
+ */
7400
+ constructor(opts: __ExceptionOptionType<ReservedCacheNodesOfferingNotFoundFault, __BaseException>);
7235
7401
  }
7236
7402
  export declare enum ServiceUpdateStatus {
7237
7403
  AVAILABLE = "available",
@@ -8036,10 +8202,13 @@ export declare namespace IncreaseReplicaCountResult {
8036
8202
  /**
8037
8203
  * <p>The KMS key supplied is not valid.</p>
8038
8204
  */
8039
- export interface InvalidKMSKeyFault extends __SmithyException, $MetadataBearer {
8040
- name: "InvalidKMSKeyFault";
8041
- $fault: "client";
8042
- message?: string;
8205
+ export declare class InvalidKMSKeyFault extends __BaseException {
8206
+ readonly name: "InvalidKMSKeyFault";
8207
+ readonly $fault: "client";
8208
+ /**
8209
+ * @internal
8210
+ */
8211
+ constructor(opts: __ExceptionOptionType<InvalidKMSKeyFault, __BaseException>);
8043
8212
  }
8044
8213
  /**
8045
8214
  * <p>The input parameters for the <code>ListAllowedNodeTypeModifications</code> operation.</p>
@@ -8566,10 +8735,13 @@ export declare namespace ModifyCacheSubnetGroupResult {
8566
8735
  /**
8567
8736
  * <p>The requested subnet is being used by another cache subnet group.</p>
8568
8737
  */
8569
- export interface SubnetInUse extends __SmithyException, $MetadataBearer {
8570
- name: "SubnetInUse";
8571
- $fault: "client";
8572
- message?: string;
8738
+ export declare class SubnetInUse extends __BaseException {
8739
+ readonly name: "SubnetInUse";
8740
+ readonly $fault: "client";
8741
+ /**
8742
+ * @internal
8743
+ */
8744
+ constructor(opts: __ExceptionOptionType<SubnetInUse, __BaseException>);
8573
8745
  }
8574
8746
  export interface ModifyGlobalReplicationGroupMessage {
8575
8747
  /**
@@ -9035,18 +9207,24 @@ export declare namespace PurchaseReservedCacheNodesOfferingResult {
9035
9207
  /**
9036
9208
  * <p>You already have a reservation with the given identifier.</p>
9037
9209
  */
9038
- export interface ReservedCacheNodeAlreadyExistsFault extends __SmithyException, $MetadataBearer {
9039
- name: "ReservedCacheNodeAlreadyExistsFault";
9040
- $fault: "client";
9041
- message?: string;
9210
+ export declare class ReservedCacheNodeAlreadyExistsFault extends __BaseException {
9211
+ readonly name: "ReservedCacheNodeAlreadyExistsFault";
9212
+ readonly $fault: "client";
9213
+ /**
9214
+ * @internal
9215
+ */
9216
+ constructor(opts: __ExceptionOptionType<ReservedCacheNodeAlreadyExistsFault, __BaseException>);
9042
9217
  }
9043
9218
  /**
9044
9219
  * <p>The request cannot be processed because it would exceed the user's cache node quota.</p>
9045
9220
  */
9046
- export interface ReservedCacheNodeQuotaExceededFault extends __SmithyException, $MetadataBearer {
9047
- name: "ReservedCacheNodeQuotaExceededFault";
9048
- $fault: "client";
9049
- message?: string;
9221
+ export declare class ReservedCacheNodeQuotaExceededFault extends __BaseException {
9222
+ readonly name: "ReservedCacheNodeQuotaExceededFault";
9223
+ readonly $fault: "client";
9224
+ /**
9225
+ * @internal
9226
+ */
9227
+ constructor(opts: __ExceptionOptionType<ReservedCacheNodeQuotaExceededFault, __BaseException>);
9050
9228
  }
9051
9229
  export interface RebalanceSlotsInGlobalReplicationGroupMessage {
9052
9230
  /**
@@ -9141,10 +9319,13 @@ export declare namespace RemoveTagsFromResourceMessage {
9141
9319
  /**
9142
9320
  * <p>The requested tag was not found on this resource.</p>
9143
9321
  */
9144
- export interface TagNotFoundFault extends __SmithyException, $MetadataBearer {
9145
- name: "TagNotFoundFault";
9146
- $fault: "client";
9147
- message?: string;
9322
+ export declare class TagNotFoundFault extends __BaseException {
9323
+ readonly name: "TagNotFoundFault";
9324
+ readonly $fault: "client";
9325
+ /**
9326
+ * @internal
9327
+ */
9328
+ constructor(opts: __ExceptionOptionType<TagNotFoundFault, __BaseException>);
9148
9329
  }
9149
9330
  /**
9150
9331
  * <p>Represents the input of a <code>ResetCacheParameterGroup</code> operation.</p>
@@ -9181,10 +9362,13 @@ export declare namespace ResetCacheParameterGroupMessage {
9181
9362
  /**
9182
9363
  * <p>The specified Amazon EC2 security group is not authorized for the specified cache security group.</p>
9183
9364
  */
9184
- export interface AuthorizationNotFoundFault extends __SmithyException, $MetadataBearer {
9185
- name: "AuthorizationNotFoundFault";
9186
- $fault: "client";
9187
- message?: string;
9365
+ export declare class AuthorizationNotFoundFault extends __BaseException {
9366
+ readonly name: "AuthorizationNotFoundFault";
9367
+ readonly $fault: "client";
9368
+ /**
9369
+ * @internal
9370
+ */
9371
+ constructor(opts: __ExceptionOptionType<AuthorizationNotFoundFault, __BaseException>);
9188
9372
  }
9189
9373
  /**
9190
9374
  * <p>Represents the input of a <code>RevokeCacheSecurityGroupIngress</code> operation.</p>
@@ -9243,10 +9427,13 @@ export declare namespace RevokeCacheSecurityGroupIngressResult {
9243
9427
  /**
9244
9428
  * <p>The targeted replication group is not available. </p>
9245
9429
  */
9246
- export interface ReplicationGroupAlreadyUnderMigrationFault extends __SmithyException, $MetadataBearer {
9247
- name: "ReplicationGroupAlreadyUnderMigrationFault";
9248
- $fault: "client";
9249
- message?: string;
9430
+ export declare class ReplicationGroupAlreadyUnderMigrationFault extends __BaseException {
9431
+ readonly name: "ReplicationGroupAlreadyUnderMigrationFault";
9432
+ readonly $fault: "client";
9433
+ /**
9434
+ * @internal
9435
+ */
9436
+ constructor(opts: __ExceptionOptionType<ReplicationGroupAlreadyUnderMigrationFault, __BaseException>);
9250
9437
  }
9251
9438
  /**
9252
9439
  * <p>The endpoint from which data should be migrated.</p>
@@ -9298,19 +9485,25 @@ export declare namespace StartMigrationResponse {
9298
9485
  /**
9299
9486
  * <p>The customer has exceeded the allowed rate of API calls.</p>
9300
9487
  */
9301
- export interface APICallRateForCustomerExceededFault extends __SmithyException, $MetadataBearer {
9302
- name: "APICallRateForCustomerExceededFault";
9303
- $fault: "client";
9304
- message?: string;
9488
+ export declare class APICallRateForCustomerExceededFault extends __BaseException {
9489
+ readonly name: "APICallRateForCustomerExceededFault";
9490
+ readonly $fault: "client";
9491
+ /**
9492
+ * @internal
9493
+ */
9494
+ constructor(opts: __ExceptionOptionType<APICallRateForCustomerExceededFault, __BaseException>);
9305
9495
  }
9306
9496
  /**
9307
9497
  * <p>The node group specified by the <code>NodeGroupId</code> parameter could not be found.
9308
9498
  * Please verify that the node group exists and that you spelled the <code>NodeGroupId</code> value correctly.</p>
9309
9499
  */
9310
- export interface NodeGroupNotFoundFault extends __SmithyException, $MetadataBearer {
9311
- name: "NodeGroupNotFoundFault";
9312
- $fault: "client";
9313
- message?: string;
9500
+ export declare class NodeGroupNotFoundFault extends __BaseException {
9501
+ readonly name: "NodeGroupNotFoundFault";
9502
+ readonly $fault: "client";
9503
+ /**
9504
+ * @internal
9505
+ */
9506
+ constructor(opts: __ExceptionOptionType<NodeGroupNotFoundFault, __BaseException>);
9314
9507
  }
9315
9508
  export interface TestFailoverMessage {
9316
9509
  /**
@@ -9334,10 +9527,13 @@ export declare namespace TestFailoverMessage {
9334
9527
  /**
9335
9528
  * <p>The <code>TestFailover</code> action is not available.</p>
9336
9529
  */
9337
- export interface TestFailoverNotAvailableFault extends __SmithyException, $MetadataBearer {
9338
- name: "TestFailoverNotAvailableFault";
9339
- $fault: "client";
9340
- message?: string;
9530
+ export declare class TestFailoverNotAvailableFault extends __BaseException {
9531
+ readonly name: "TestFailoverNotAvailableFault";
9532
+ readonly $fault: "client";
9533
+ /**
9534
+ * @internal
9535
+ */
9536
+ constructor(opts: __ExceptionOptionType<TestFailoverNotAvailableFault, __BaseException>);
9341
9537
  }
9342
9538
  export interface TestFailoverResult {
9343
9539
  /**