-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
errors.go
444 lines (375 loc) · 17.4 KB
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package elasticache
const (
// ErrCodeAPICallRateForCustomerExceededFault for service response error code
// "APICallRateForCustomerExceeded".
//
// The customer has exceeded the allowed rate of API calls.
ErrCodeAPICallRateForCustomerExceededFault = "APICallRateForCustomerExceeded"
// ErrCodeAuthorizationAlreadyExistsFault for service response error code
// "AuthorizationAlreadyExists".
//
// The specified Amazon EC2 security group is already authorized for the specified
// cache security group.
ErrCodeAuthorizationAlreadyExistsFault = "AuthorizationAlreadyExists"
// ErrCodeAuthorizationNotFoundFault for service response error code
// "AuthorizationNotFound".
//
// The specified Amazon EC2 security group is not authorized for the specified
// cache security group.
ErrCodeAuthorizationNotFoundFault = "AuthorizationNotFound"
// ErrCodeCacheClusterAlreadyExistsFault for service response error code
// "CacheClusterAlreadyExists".
//
// You already have a cluster with the given identifier.
ErrCodeCacheClusterAlreadyExistsFault = "CacheClusterAlreadyExists"
// ErrCodeCacheClusterNotFoundFault for service response error code
// "CacheClusterNotFound".
//
// The requested cluster ID does not refer to an existing cluster.
ErrCodeCacheClusterNotFoundFault = "CacheClusterNotFound"
// ErrCodeCacheParameterGroupAlreadyExistsFault for service response error code
// "CacheParameterGroupAlreadyExists".
//
// A cache parameter group with the requested name already exists.
ErrCodeCacheParameterGroupAlreadyExistsFault = "CacheParameterGroupAlreadyExists"
// ErrCodeCacheParameterGroupNotFoundFault for service response error code
// "CacheParameterGroupNotFound".
//
// The requested cache parameter group name does not refer to an existing cache
// parameter group.
ErrCodeCacheParameterGroupNotFoundFault = "CacheParameterGroupNotFound"
// ErrCodeCacheParameterGroupQuotaExceededFault for service response error code
// "CacheParameterGroupQuotaExceeded".
//
// The request cannot be processed because it would exceed the maximum number
// of cache security groups.
ErrCodeCacheParameterGroupQuotaExceededFault = "CacheParameterGroupQuotaExceeded"
// ErrCodeCacheSecurityGroupAlreadyExistsFault for service response error code
// "CacheSecurityGroupAlreadyExists".
//
// A cache security group with the specified name already exists.
ErrCodeCacheSecurityGroupAlreadyExistsFault = "CacheSecurityGroupAlreadyExists"
// ErrCodeCacheSecurityGroupNotFoundFault for service response error code
// "CacheSecurityGroupNotFound".
//
// The requested cache security group name does not refer to an existing cache
// security group.
ErrCodeCacheSecurityGroupNotFoundFault = "CacheSecurityGroupNotFound"
// ErrCodeCacheSecurityGroupQuotaExceededFault for service response error code
// "QuotaExceeded.CacheSecurityGroup".
//
// The request cannot be processed because it would exceed the allowed number
// of cache security groups.
ErrCodeCacheSecurityGroupQuotaExceededFault = "QuotaExceeded.CacheSecurityGroup"
// ErrCodeCacheSubnetGroupAlreadyExistsFault for service response error code
// "CacheSubnetGroupAlreadyExists".
//
// The requested cache subnet group name is already in use by an existing cache
// subnet group.
ErrCodeCacheSubnetGroupAlreadyExistsFault = "CacheSubnetGroupAlreadyExists"
// ErrCodeCacheSubnetGroupInUse for service response error code
// "CacheSubnetGroupInUse".
//
// The requested cache subnet group is currently in use.
ErrCodeCacheSubnetGroupInUse = "CacheSubnetGroupInUse"
// ErrCodeCacheSubnetGroupNotFoundFault for service response error code
// "CacheSubnetGroupNotFoundFault".
//
// The requested cache subnet group name does not refer to an existing cache
// subnet group.
ErrCodeCacheSubnetGroupNotFoundFault = "CacheSubnetGroupNotFoundFault"
// ErrCodeCacheSubnetGroupQuotaExceededFault for service response error code
// "CacheSubnetGroupQuotaExceeded".
//
// The request cannot be processed because it would exceed the allowed number
// of cache subnet groups.
ErrCodeCacheSubnetGroupQuotaExceededFault = "CacheSubnetGroupQuotaExceeded"
// ErrCodeCacheSubnetQuotaExceededFault for service response error code
// "CacheSubnetQuotaExceededFault".
//
// The request cannot be processed because it would exceed the allowed number
// of subnets in a cache subnet group.
ErrCodeCacheSubnetQuotaExceededFault = "CacheSubnetQuotaExceededFault"
// ErrCodeClusterQuotaForCustomerExceededFault for service response error code
// "ClusterQuotaForCustomerExceeded".
//
// The request cannot be processed because it would exceed the allowed number
// of clusters per customer.
ErrCodeClusterQuotaForCustomerExceededFault = "ClusterQuotaForCustomerExceeded"
// ErrCodeDefaultUserAssociatedToUserGroupFault for service response error code
// "DefaultUserAssociatedToUserGroup".
//
// The default user assigned to the user group.
ErrCodeDefaultUserAssociatedToUserGroupFault = "DefaultUserAssociatedToUserGroup"
// ErrCodeDefaultUserRequired for service response error code
// "DefaultUserRequired".
//
// You must add default user to a user group.
ErrCodeDefaultUserRequired = "DefaultUserRequired"
// ErrCodeDuplicateUserNameFault for service response error code
// "DuplicateUserName".
//
// A user with this username already exists.
ErrCodeDuplicateUserNameFault = "DuplicateUserName"
// ErrCodeGlobalReplicationGroupAlreadyExistsFault for service response error code
// "GlobalReplicationGroupAlreadyExistsFault".
//
// The Global datastore name already exists.
ErrCodeGlobalReplicationGroupAlreadyExistsFault = "GlobalReplicationGroupAlreadyExistsFault"
// ErrCodeGlobalReplicationGroupNotFoundFault for service response error code
// "GlobalReplicationGroupNotFoundFault".
//
// The Global datastore does not exist
ErrCodeGlobalReplicationGroupNotFoundFault = "GlobalReplicationGroupNotFoundFault"
// ErrCodeInsufficientCacheClusterCapacityFault for service response error code
// "InsufficientCacheClusterCapacity".
//
// The requested cache node type is not available in the specified Availability
// Zone. For more information, see InsufficientCacheClusterCapacity (http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/ErrorMessages.html#ErrorMessages.INSUFFICIENT_CACHE_CLUSTER_CAPACITY)
// in the ElastiCache User Guide.
ErrCodeInsufficientCacheClusterCapacityFault = "InsufficientCacheClusterCapacity"
// ErrCodeInvalidARNFault for service response error code
// "InvalidARN".
//
// The requested Amazon Resource Name (ARN) does not refer to an existing resource.
ErrCodeInvalidARNFault = "InvalidARN"
// ErrCodeInvalidCacheClusterStateFault for service response error code
// "InvalidCacheClusterState".
//
// The requested cluster is not in the available state.
ErrCodeInvalidCacheClusterStateFault = "InvalidCacheClusterState"
// ErrCodeInvalidCacheParameterGroupStateFault for service response error code
// "InvalidCacheParameterGroupState".
//
// The current state of the cache parameter group does not allow the requested
// operation to occur.
ErrCodeInvalidCacheParameterGroupStateFault = "InvalidCacheParameterGroupState"
// ErrCodeInvalidCacheSecurityGroupStateFault for service response error code
// "InvalidCacheSecurityGroupState".
//
// The current state of the cache security group does not allow deletion.
ErrCodeInvalidCacheSecurityGroupStateFault = "InvalidCacheSecurityGroupState"
// ErrCodeInvalidGlobalReplicationGroupStateFault for service response error code
// "InvalidGlobalReplicationGroupState".
//
// The Global datastore is not available or in primary-only state.
ErrCodeInvalidGlobalReplicationGroupStateFault = "InvalidGlobalReplicationGroupState"
// ErrCodeInvalidKMSKeyFault for service response error code
// "InvalidKMSKeyFault".
//
// The KMS key supplied is not valid.
ErrCodeInvalidKMSKeyFault = "InvalidKMSKeyFault"
// ErrCodeInvalidParameterCombinationException for service response error code
// "InvalidParameterCombination".
//
// Two or more incompatible parameters were specified.
ErrCodeInvalidParameterCombinationException = "InvalidParameterCombination"
// ErrCodeInvalidParameterValueException for service response error code
// "InvalidParameterValue".
//
// The value for a parameter is invalid.
ErrCodeInvalidParameterValueException = "InvalidParameterValue"
// ErrCodeInvalidReplicationGroupStateFault for service response error code
// "InvalidReplicationGroupState".
//
// The requested replication group is not in the available state.
ErrCodeInvalidReplicationGroupStateFault = "InvalidReplicationGroupState"
// ErrCodeInvalidSnapshotStateFault for service response error code
// "InvalidSnapshotState".
//
// The current state of the snapshot does not allow the requested operation
// to occur.
ErrCodeInvalidSnapshotStateFault = "InvalidSnapshotState"
// ErrCodeInvalidSubnet for service response error code
// "InvalidSubnet".
//
// An invalid subnet identifier was specified.
ErrCodeInvalidSubnet = "InvalidSubnet"
// ErrCodeInvalidUserGroupStateFault for service response error code
// "InvalidUserGroupState".
//
// The user group is not in an active state.
ErrCodeInvalidUserGroupStateFault = "InvalidUserGroupState"
// ErrCodeInvalidUserStateFault for service response error code
// "InvalidUserState".
//
// The user is not in active state.
ErrCodeInvalidUserStateFault = "InvalidUserState"
// ErrCodeInvalidVPCNetworkStateFault for service response error code
// "InvalidVPCNetworkStateFault".
//
// The VPC network is in an invalid state.
ErrCodeInvalidVPCNetworkStateFault = "InvalidVPCNetworkStateFault"
// ErrCodeNoOperationFault for service response error code
// "NoOperationFault".
//
// The operation was not performed because no changes were required.
ErrCodeNoOperationFault = "NoOperationFault"
// ErrCodeNodeGroupNotFoundFault for service response error code
// "NodeGroupNotFoundFault".
//
// The node group specified by the NodeGroupId parameter could not be found.
// Please verify that the node group exists and that you spelled the NodeGroupId
// value correctly.
ErrCodeNodeGroupNotFoundFault = "NodeGroupNotFoundFault"
// ErrCodeNodeGroupsPerReplicationGroupQuotaExceededFault for service response error code
// "NodeGroupsPerReplicationGroupQuotaExceeded".
//
// The request cannot be processed because it would exceed the maximum allowed
// number of node groups (shards) in a single replication group. The default
// maximum is 90
ErrCodeNodeGroupsPerReplicationGroupQuotaExceededFault = "NodeGroupsPerReplicationGroupQuotaExceeded"
// ErrCodeNodeQuotaForClusterExceededFault for service response error code
// "NodeQuotaForClusterExceeded".
//
// The request cannot be processed because it would exceed the allowed number
// of cache nodes in a single cluster.
ErrCodeNodeQuotaForClusterExceededFault = "NodeQuotaForClusterExceeded"
// ErrCodeNodeQuotaForCustomerExceededFault for service response error code
// "NodeQuotaForCustomerExceeded".
//
// The request cannot be processed because it would exceed the allowed number
// of cache nodes per customer.
ErrCodeNodeQuotaForCustomerExceededFault = "NodeQuotaForCustomerExceeded"
// ErrCodeReplicationGroupAlreadyExistsFault for service response error code
// "ReplicationGroupAlreadyExists".
//
// The specified replication group already exists.
ErrCodeReplicationGroupAlreadyExistsFault = "ReplicationGroupAlreadyExists"
// ErrCodeReplicationGroupAlreadyUnderMigrationFault for service response error code
// "ReplicationGroupAlreadyUnderMigrationFault".
//
// The targeted replication group is not available.
ErrCodeReplicationGroupAlreadyUnderMigrationFault = "ReplicationGroupAlreadyUnderMigrationFault"
// ErrCodeReplicationGroupNotFoundFault for service response error code
// "ReplicationGroupNotFoundFault".
//
// The specified replication group does not exist.
ErrCodeReplicationGroupNotFoundFault = "ReplicationGroupNotFoundFault"
// ErrCodeReplicationGroupNotUnderMigrationFault for service response error code
// "ReplicationGroupNotUnderMigrationFault".
//
// The designated replication group is not available for data migration.
ErrCodeReplicationGroupNotUnderMigrationFault = "ReplicationGroupNotUnderMigrationFault"
// ErrCodeReservedCacheNodeAlreadyExistsFault for service response error code
// "ReservedCacheNodeAlreadyExists".
//
// You already have a reservation with the given identifier.
ErrCodeReservedCacheNodeAlreadyExistsFault = "ReservedCacheNodeAlreadyExists"
// ErrCodeReservedCacheNodeNotFoundFault for service response error code
// "ReservedCacheNodeNotFound".
//
// The requested reserved cache node was not found.
ErrCodeReservedCacheNodeNotFoundFault = "ReservedCacheNodeNotFound"
// ErrCodeReservedCacheNodeQuotaExceededFault for service response error code
// "ReservedCacheNodeQuotaExceeded".
//
// The request cannot be processed because it would exceed the user's cache
// node quota.
ErrCodeReservedCacheNodeQuotaExceededFault = "ReservedCacheNodeQuotaExceeded"
// ErrCodeReservedCacheNodesOfferingNotFoundFault for service response error code
// "ReservedCacheNodesOfferingNotFound".
//
// The requested cache node offering does not exist.
ErrCodeReservedCacheNodesOfferingNotFoundFault = "ReservedCacheNodesOfferingNotFound"
// ErrCodeServiceLinkedRoleNotFoundFault for service response error code
// "ServiceLinkedRoleNotFoundFault".
//
// The specified service linked role (SLR) was not found.
ErrCodeServiceLinkedRoleNotFoundFault = "ServiceLinkedRoleNotFoundFault"
// ErrCodeServiceUpdateNotFoundFault for service response error code
// "ServiceUpdateNotFoundFault".
//
// The service update doesn't exist
ErrCodeServiceUpdateNotFoundFault = "ServiceUpdateNotFoundFault"
// ErrCodeSnapshotAlreadyExistsFault for service response error code
// "SnapshotAlreadyExistsFault".
//
// You already have a snapshot with the given name.
ErrCodeSnapshotAlreadyExistsFault = "SnapshotAlreadyExistsFault"
// ErrCodeSnapshotFeatureNotSupportedFault for service response error code
// "SnapshotFeatureNotSupportedFault".
//
// You attempted one of the following operations:
//
// * Creating a snapshot of a Redis cluster running on a cache.t1.micro cache
// node.
//
// * Creating a snapshot of a cluster that is running Memcached rather than
// Redis.
//
// Neither of these are supported by ElastiCache.
ErrCodeSnapshotFeatureNotSupportedFault = "SnapshotFeatureNotSupportedFault"
// ErrCodeSnapshotNotFoundFault for service response error code
// "SnapshotNotFoundFault".
//
// The requested snapshot name does not refer to an existing snapshot.
ErrCodeSnapshotNotFoundFault = "SnapshotNotFoundFault"
// ErrCodeSnapshotQuotaExceededFault for service response error code
// "SnapshotQuotaExceededFault".
//
// The request cannot be processed because it would exceed the maximum number
// of snapshots.
ErrCodeSnapshotQuotaExceededFault = "SnapshotQuotaExceededFault"
// ErrCodeSubnetInUse for service response error code
// "SubnetInUse".
//
// The requested subnet is being used by another cache subnet group.
ErrCodeSubnetInUse = "SubnetInUse"
// ErrCodeSubnetNotAllowedFault for service response error code
// "SubnetNotAllowedFault".
//
// At least one subnet ID does not match the other subnet IDs. This mismatch
// typically occurs when a 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.
ErrCodeSubnetNotAllowedFault = "SubnetNotAllowedFault"
// ErrCodeTagNotFoundFault for service response error code
// "TagNotFound".
//
// The requested tag was not found on this resource.
ErrCodeTagNotFoundFault = "TagNotFound"
// ErrCodeTagQuotaPerResourceExceeded for service response error code
// "TagQuotaPerResourceExceeded".
//
// 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.
ErrCodeTagQuotaPerResourceExceeded = "TagQuotaPerResourceExceeded"
// ErrCodeTestFailoverNotAvailableFault for service response error code
// "TestFailoverNotAvailableFault".
//
// The TestFailover action is not available.
ErrCodeTestFailoverNotAvailableFault = "TestFailoverNotAvailableFault"
// ErrCodeUserAlreadyExistsFault for service response error code
// "UserAlreadyExists".
//
// A user with this ID already exists.
ErrCodeUserAlreadyExistsFault = "UserAlreadyExists"
// ErrCodeUserGroupAlreadyExistsFault for service response error code
// "UserGroupAlreadyExists".
//
// The user group with this ID already exists.
ErrCodeUserGroupAlreadyExistsFault = "UserGroupAlreadyExists"
// ErrCodeUserGroupNotFoundFault for service response error code
// "UserGroupNotFound".
//
// The user group was not found or does not exist
ErrCodeUserGroupNotFoundFault = "UserGroupNotFound"
// ErrCodeUserGroupQuotaExceededFault for service response error code
// "UserGroupQuotaExceeded".
//
// The number of users exceeds the user group limit.
ErrCodeUserGroupQuotaExceededFault = "UserGroupQuotaExceeded"
// ErrCodeUserNotFoundFault for service response error code
// "UserNotFound".
//
// The user does not exist or could not be found.
ErrCodeUserNotFoundFault = "UserNotFound"
// ErrCodeUserQuotaExceededFault for service response error code
// "UserQuotaExceeded".
//
// The quota of users has been exceeded.
ErrCodeUserQuotaExceededFault = "UserQuotaExceeded"
)