forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
573 lines (487 loc) · 24.6 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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package redshift
const (
// ErrCodeAccessToSnapshotDeniedFault for service response error code
// "AccessToSnapshotDenied".
//
// The owner of the specified snapshot has not authorized your account to access
// the snapshot.
ErrCodeAccessToSnapshotDeniedFault = "AccessToSnapshotDenied"
// ErrCodeAuthorizationAlreadyExistsFault for service response error code
// "AuthorizationAlreadyExists".
//
// The specified CIDR block or EC2 security group is already authorized for
// the specified cluster security group.
ErrCodeAuthorizationAlreadyExistsFault = "AuthorizationAlreadyExists"
// ErrCodeAuthorizationNotFoundFault for service response error code
// "AuthorizationNotFound".
//
// The specified CIDR IP range or EC2 security group is not authorized for the
// specified cluster security group.
ErrCodeAuthorizationNotFoundFault = "AuthorizationNotFound"
// ErrCodeAuthorizationQuotaExceededFault for service response error code
// "AuthorizationQuotaExceeded".
//
// The authorization quota for the cluster security group has been reached.
ErrCodeAuthorizationQuotaExceededFault = "AuthorizationQuotaExceeded"
// ErrCodeBucketNotFoundFault for service response error code
// "BucketNotFoundFault".
//
// Could not find the specified S3 bucket.
ErrCodeBucketNotFoundFault = "BucketNotFoundFault"
// ErrCodeClusterAlreadyExistsFault for service response error code
// "ClusterAlreadyExists".
//
// The account already has a cluster with the given identifier.
ErrCodeClusterAlreadyExistsFault = "ClusterAlreadyExists"
// ErrCodeClusterNotFoundFault for service response error code
// "ClusterNotFound".
//
// The ClusterIdentifier parameter does not refer to an existing cluster.
ErrCodeClusterNotFoundFault = "ClusterNotFound"
// ErrCodeClusterParameterGroupAlreadyExistsFault for service response error code
// "ClusterParameterGroupAlreadyExists".
//
// A cluster parameter group with the same name already exists.
ErrCodeClusterParameterGroupAlreadyExistsFault = "ClusterParameterGroupAlreadyExists"
// ErrCodeClusterParameterGroupNotFoundFault for service response error code
// "ClusterParameterGroupNotFound".
//
// The parameter group name does not refer to an existing parameter group.
ErrCodeClusterParameterGroupNotFoundFault = "ClusterParameterGroupNotFound"
// ErrCodeClusterParameterGroupQuotaExceededFault for service response error code
// "ClusterParameterGroupQuotaExceeded".
//
// The request would result in the user exceeding the allowed number of cluster
// parameter groups. For information about increasing your quota, go to Limits
// in Amazon Redshift (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeClusterParameterGroupQuotaExceededFault = "ClusterParameterGroupQuotaExceeded"
// ErrCodeClusterQuotaExceededFault for service response error code
// "ClusterQuotaExceeded".
//
// The request would exceed the allowed number of cluster instances for this
// account. For information about increasing your quota, go to Limits in Amazon
// Redshift (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeClusterQuotaExceededFault = "ClusterQuotaExceeded"
// ErrCodeClusterSecurityGroupAlreadyExistsFault for service response error code
// "ClusterSecurityGroupAlreadyExists".
//
// A cluster security group with the same name already exists.
ErrCodeClusterSecurityGroupAlreadyExistsFault = "ClusterSecurityGroupAlreadyExists"
// ErrCodeClusterSecurityGroupNotFoundFault for service response error code
// "ClusterSecurityGroupNotFound".
//
// The cluster security group name does not refer to an existing cluster security
// group.
ErrCodeClusterSecurityGroupNotFoundFault = "ClusterSecurityGroupNotFound"
// ErrCodeClusterSecurityGroupQuotaExceededFault for service response error code
// "QuotaExceeded.ClusterSecurityGroup".
//
// The request would result in the user exceeding the allowed number of cluster
// security groups. For information about increasing your quota, go to Limits
// in Amazon Redshift (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeClusterSecurityGroupQuotaExceededFault = "QuotaExceeded.ClusterSecurityGroup"
// ErrCodeClusterSnapshotAlreadyExistsFault for service response error code
// "ClusterSnapshotAlreadyExists".
//
// The value specified as a snapshot identifier is already used by an existing
// snapshot.
ErrCodeClusterSnapshotAlreadyExistsFault = "ClusterSnapshotAlreadyExists"
// ErrCodeClusterSnapshotNotFoundFault for service response error code
// "ClusterSnapshotNotFound".
//
// The snapshot identifier does not refer to an existing cluster snapshot.
ErrCodeClusterSnapshotNotFoundFault = "ClusterSnapshotNotFound"
// ErrCodeClusterSnapshotQuotaExceededFault for service response error code
// "ClusterSnapshotQuotaExceeded".
//
// The request would result in the user exceeding the allowed number of cluster
// snapshots.
ErrCodeClusterSnapshotQuotaExceededFault = "ClusterSnapshotQuotaExceeded"
// ErrCodeClusterSubnetGroupAlreadyExistsFault for service response error code
// "ClusterSubnetGroupAlreadyExists".
//
// A ClusterSubnetGroupName is already used by an existing cluster subnet group.
ErrCodeClusterSubnetGroupAlreadyExistsFault = "ClusterSubnetGroupAlreadyExists"
// ErrCodeClusterSubnetGroupNotFoundFault for service response error code
// "ClusterSubnetGroupNotFoundFault".
//
// The cluster subnet group name does not refer to an existing cluster subnet
// group.
ErrCodeClusterSubnetGroupNotFoundFault = "ClusterSubnetGroupNotFoundFault"
// ErrCodeClusterSubnetGroupQuotaExceededFault for service response error code
// "ClusterSubnetGroupQuotaExceeded".
//
// The request would result in user exceeding the allowed number of cluster
// subnet groups. For information about increasing your quota, go to Limits
// in Amazon Redshift (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeClusterSubnetGroupQuotaExceededFault = "ClusterSubnetGroupQuotaExceeded"
// ErrCodeClusterSubnetQuotaExceededFault for service response error code
// "ClusterSubnetQuotaExceededFault".
//
// The request would result in user exceeding the allowed number of subnets
// in a cluster subnet groups. For information about increasing your quota,
// go to Limits in Amazon Redshift (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeClusterSubnetQuotaExceededFault = "ClusterSubnetQuotaExceededFault"
// ErrCodeCopyToRegionDisabledFault for service response error code
// "CopyToRegionDisabledFault".
//
// Cross-region snapshot copy was temporarily disabled. Try your request again.
ErrCodeCopyToRegionDisabledFault = "CopyToRegionDisabledFault"
// ErrCodeDependentServiceRequestThrottlingFault for service response error code
// "DependentServiceRequestThrottlingFault".
//
// The request cannot be completed because a dependent service is throttling
// requests made by Amazon Redshift on your behalf. Wait and retry the request.
ErrCodeDependentServiceRequestThrottlingFault = "DependentServiceRequestThrottlingFault"
// ErrCodeDependentServiceUnavailableFault for service response error code
// "DependentServiceUnavailableFault".
//
// Your request cannot be completed because a dependent internal service is
// temporarily unavailable. Wait 30 to 60 seconds and try again.
ErrCodeDependentServiceUnavailableFault = "DependentServiceUnavailableFault"
// ErrCodeEventSubscriptionQuotaExceededFault for service response error code
// "EventSubscriptionQuotaExceeded".
//
// The request would exceed the allowed number of event subscriptions for this
// account. For information about increasing your quota, go to Limits in Amazon
// Redshift (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeEventSubscriptionQuotaExceededFault = "EventSubscriptionQuotaExceeded"
// ErrCodeHsmClientCertificateAlreadyExistsFault for service response error code
// "HsmClientCertificateAlreadyExistsFault".
//
// There is already an existing Amazon Redshift HSM client certificate with
// the specified identifier.
ErrCodeHsmClientCertificateAlreadyExistsFault = "HsmClientCertificateAlreadyExistsFault"
// ErrCodeHsmClientCertificateNotFoundFault for service response error code
// "HsmClientCertificateNotFoundFault".
//
// There is no Amazon Redshift HSM client certificate with the specified identifier.
ErrCodeHsmClientCertificateNotFoundFault = "HsmClientCertificateNotFoundFault"
// ErrCodeHsmClientCertificateQuotaExceededFault for service response error code
// "HsmClientCertificateQuotaExceededFault".
//
// The quota for HSM client certificates has been reached. For information about
// increasing your quota, go to Limits in Amazon Redshift (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeHsmClientCertificateQuotaExceededFault = "HsmClientCertificateQuotaExceededFault"
// ErrCodeHsmConfigurationAlreadyExistsFault for service response error code
// "HsmConfigurationAlreadyExistsFault".
//
// There is already an existing Amazon Redshift HSM configuration with the specified
// identifier.
ErrCodeHsmConfigurationAlreadyExistsFault = "HsmConfigurationAlreadyExistsFault"
// ErrCodeHsmConfigurationNotFoundFault for service response error code
// "HsmConfigurationNotFoundFault".
//
// There is no Amazon Redshift HSM configuration with the specified identifier.
ErrCodeHsmConfigurationNotFoundFault = "HsmConfigurationNotFoundFault"
// ErrCodeHsmConfigurationQuotaExceededFault for service response error code
// "HsmConfigurationQuotaExceededFault".
//
// The quota for HSM configurations has been reached. For information about
// increasing your quota, go to Limits in Amazon Redshift (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeHsmConfigurationQuotaExceededFault = "HsmConfigurationQuotaExceededFault"
// ErrCodeInProgressTableRestoreQuotaExceededFault for service response error code
// "InProgressTableRestoreQuotaExceededFault".
//
// You have exceeded the allowed number of table restore requests. Wait for
// your current table restore requests to complete before making a new request.
ErrCodeInProgressTableRestoreQuotaExceededFault = "InProgressTableRestoreQuotaExceededFault"
// ErrCodeIncompatibleOrderableOptions for service response error code
// "IncompatibleOrderableOptions".
//
// The specified options are incompatible.
ErrCodeIncompatibleOrderableOptions = "IncompatibleOrderableOptions"
// ErrCodeInsufficientClusterCapacityFault for service response error code
// "InsufficientClusterCapacity".
//
// The number of nodes specified exceeds the allotted capacity of the cluster.
ErrCodeInsufficientClusterCapacityFault = "InsufficientClusterCapacity"
// ErrCodeInsufficientS3BucketPolicyFault for service response error code
// "InsufficientS3BucketPolicyFault".
//
// The cluster does not have read bucket or put object permissions on the S3
// bucket specified when enabling logging.
ErrCodeInsufficientS3BucketPolicyFault = "InsufficientS3BucketPolicyFault"
// ErrCodeInvalidClusterParameterGroupStateFault for service response error code
// "InvalidClusterParameterGroupState".
//
// The cluster parameter group action can not be completed because another task
// is in progress that involves the parameter group. Wait a few moments and
// try the operation again.
ErrCodeInvalidClusterParameterGroupStateFault = "InvalidClusterParameterGroupState"
// ErrCodeInvalidClusterSecurityGroupStateFault for service response error code
// "InvalidClusterSecurityGroupState".
//
// The state of the cluster security group is not available.
ErrCodeInvalidClusterSecurityGroupStateFault = "InvalidClusterSecurityGroupState"
// ErrCodeInvalidClusterSnapshotStateFault for service response error code
// "InvalidClusterSnapshotState".
//
// The specified cluster snapshot is not in the available state, or other accounts
// are authorized to access the snapshot.
ErrCodeInvalidClusterSnapshotStateFault = "InvalidClusterSnapshotState"
// ErrCodeInvalidClusterStateFault for service response error code
// "InvalidClusterState".
//
// The specified cluster is not in the available state.
ErrCodeInvalidClusterStateFault = "InvalidClusterState"
// ErrCodeInvalidClusterSubnetGroupStateFault for service response error code
// "InvalidClusterSubnetGroupStateFault".
//
// The cluster subnet group cannot be deleted because it is in use.
ErrCodeInvalidClusterSubnetGroupStateFault = "InvalidClusterSubnetGroupStateFault"
// ErrCodeInvalidClusterSubnetStateFault for service response error code
// "InvalidClusterSubnetStateFault".
//
// The state of the subnet is invalid.
ErrCodeInvalidClusterSubnetStateFault = "InvalidClusterSubnetStateFault"
// ErrCodeInvalidElasticIpFault for service response error code
// "InvalidElasticIpFault".
//
// The Elastic IP (EIP) is invalid or cannot be found.
ErrCodeInvalidElasticIpFault = "InvalidElasticIpFault"
// ErrCodeInvalidHsmClientCertificateStateFault for service response error code
// "InvalidHsmClientCertificateStateFault".
//
// The specified HSM client certificate is not in the available state, or it
// is still in use by one or more Amazon Redshift clusters.
ErrCodeInvalidHsmClientCertificateStateFault = "InvalidHsmClientCertificateStateFault"
// ErrCodeInvalidHsmConfigurationStateFault for service response error code
// "InvalidHsmConfigurationStateFault".
//
// The specified HSM configuration is not in the available state, or it is still
// in use by one or more Amazon Redshift clusters.
ErrCodeInvalidHsmConfigurationStateFault = "InvalidHsmConfigurationStateFault"
// ErrCodeInvalidRestoreFault for service response error code
// "InvalidRestore".
//
// The restore is invalid.
ErrCodeInvalidRestoreFault = "InvalidRestore"
// ErrCodeInvalidS3BucketNameFault for service response error code
// "InvalidS3BucketNameFault".
//
// The S3 bucket name is invalid. For more information about naming rules, go
// to Bucket Restrictions and Limitations (http://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html)
// in the Amazon Simple Storage Service (S3) Developer Guide.
ErrCodeInvalidS3BucketNameFault = "InvalidS3BucketNameFault"
// ErrCodeInvalidS3KeyPrefixFault for service response error code
// "InvalidS3KeyPrefixFault".
//
// The string specified for the logging S3 key prefix does not comply with the
// documented constraints.
ErrCodeInvalidS3KeyPrefixFault = "InvalidS3KeyPrefixFault"
// ErrCodeInvalidSnapshotCopyGrantStateFault for service response error code
// "InvalidSnapshotCopyGrantStateFault".
//
// The snapshot copy grant can't be deleted because it is used by one or more
// clusters.
ErrCodeInvalidSnapshotCopyGrantStateFault = "InvalidSnapshotCopyGrantStateFault"
// ErrCodeInvalidSubnet for service response error code
// "InvalidSubnet".
//
// The requested subnet is not valid, or not all of the subnets are in the same
// VPC.
ErrCodeInvalidSubnet = "InvalidSubnet"
// ErrCodeInvalidSubscriptionStateFault for service response error code
// "InvalidSubscriptionStateFault".
//
// The subscription request is invalid because it is a duplicate request. This
// subscription request is already in progress.
ErrCodeInvalidSubscriptionStateFault = "InvalidSubscriptionStateFault"
// ErrCodeInvalidTableRestoreArgumentFault for service response error code
// "InvalidTableRestoreArgument".
//
// The value specified for the sourceDatabaseName, sourceSchemaName, or sourceTableName
// parameter, or a combination of these, doesn't exist in the snapshot.
ErrCodeInvalidTableRestoreArgumentFault = "InvalidTableRestoreArgument"
// ErrCodeInvalidTagFault for service response error code
// "InvalidTagFault".
//
// The tag is invalid.
ErrCodeInvalidTagFault = "InvalidTagFault"
// ErrCodeInvalidVPCNetworkStateFault for service response error code
// "InvalidVPCNetworkStateFault".
//
// The cluster subnet group does not cover all Availability Zones.
ErrCodeInvalidVPCNetworkStateFault = "InvalidVPCNetworkStateFault"
// ErrCodeLimitExceededFault for service response error code
// "LimitExceededFault".
//
// The encryption key has exceeded its grant limit in AWS KMS.
ErrCodeLimitExceededFault = "LimitExceededFault"
// ErrCodeNumberOfNodesPerClusterLimitExceededFault for service response error code
// "NumberOfNodesPerClusterLimitExceeded".
//
// The operation would exceed the number of nodes allowed for a cluster.
ErrCodeNumberOfNodesPerClusterLimitExceededFault = "NumberOfNodesPerClusterLimitExceeded"
// ErrCodeNumberOfNodesQuotaExceededFault for service response error code
// "NumberOfNodesQuotaExceeded".
//
// The operation would exceed the number of nodes allotted to the account. For
// information about increasing your quota, go to Limits in Amazon Redshift
// (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeNumberOfNodesQuotaExceededFault = "NumberOfNodesQuotaExceeded"
// ErrCodeReservedNodeAlreadyExistsFault for service response error code
// "ReservedNodeAlreadyExists".
//
// User already has a reservation with the given identifier.
ErrCodeReservedNodeAlreadyExistsFault = "ReservedNodeAlreadyExists"
// ErrCodeReservedNodeNotFoundFault for service response error code
// "ReservedNodeNotFound".
//
// The specified reserved compute node not found.
ErrCodeReservedNodeNotFoundFault = "ReservedNodeNotFound"
// ErrCodeReservedNodeOfferingNotFoundFault for service response error code
// "ReservedNodeOfferingNotFound".
//
// Specified offering does not exist.
ErrCodeReservedNodeOfferingNotFoundFault = "ReservedNodeOfferingNotFound"
// ErrCodeReservedNodeQuotaExceededFault for service response error code
// "ReservedNodeQuotaExceeded".
//
// Request would exceed the user's compute node quota. For information about
// increasing your quota, go to Limits in Amazon Redshift (http://docs.aws.amazon.com/redshift/latest/mgmt/amazon-redshift-limits.html)
// in the Amazon Redshift Cluster Management Guide.
ErrCodeReservedNodeQuotaExceededFault = "ReservedNodeQuotaExceeded"
// ErrCodeResizeNotFoundFault for service response error code
// "ResizeNotFound".
//
// A resize operation for the specified cluster is not found.
ErrCodeResizeNotFoundFault = "ResizeNotFound"
// ErrCodeResourceNotFoundFault for service response error code
// "ResourceNotFoundFault".
//
// The resource could not be found.
ErrCodeResourceNotFoundFault = "ResourceNotFoundFault"
// ErrCodeSNSInvalidTopicFault for service response error code
// "SNSInvalidTopic".
//
// Amazon SNS has responded that there is a problem with the specified Amazon
// SNS topic.
ErrCodeSNSInvalidTopicFault = "SNSInvalidTopic"
// ErrCodeSNSNoAuthorizationFault for service response error code
// "SNSNoAuthorization".
//
// You do not have permission to publish to the specified Amazon SNS topic.
ErrCodeSNSNoAuthorizationFault = "SNSNoAuthorization"
// ErrCodeSNSTopicArnNotFoundFault for service response error code
// "SNSTopicArnNotFound".
//
// An Amazon SNS topic with the specified Amazon Resource Name (ARN) does not
// exist.
ErrCodeSNSTopicArnNotFoundFault = "SNSTopicArnNotFound"
// ErrCodeSnapshotCopyAlreadyDisabledFault for service response error code
// "SnapshotCopyAlreadyDisabledFault".
//
// The cluster already has cross-region snapshot copy disabled.
ErrCodeSnapshotCopyAlreadyDisabledFault = "SnapshotCopyAlreadyDisabledFault"
// ErrCodeSnapshotCopyAlreadyEnabledFault for service response error code
// "SnapshotCopyAlreadyEnabledFault".
//
// The cluster already has cross-region snapshot copy enabled.
ErrCodeSnapshotCopyAlreadyEnabledFault = "SnapshotCopyAlreadyEnabledFault"
// ErrCodeSnapshotCopyDisabledFault for service response error code
// "SnapshotCopyDisabledFault".
//
// Cross-region snapshot copy was temporarily disabled. Try your request again.
ErrCodeSnapshotCopyDisabledFault = "SnapshotCopyDisabledFault"
// ErrCodeSnapshotCopyGrantAlreadyExistsFault for service response error code
// "SnapshotCopyGrantAlreadyExistsFault".
//
// The snapshot copy grant can't be created because a grant with the same name
// already exists.
ErrCodeSnapshotCopyGrantAlreadyExistsFault = "SnapshotCopyGrantAlreadyExistsFault"
// ErrCodeSnapshotCopyGrantNotFoundFault for service response error code
// "SnapshotCopyGrantNotFoundFault".
//
// The specified snapshot copy grant can't be found. Make sure that the name
// is typed correctly and that the grant exists in the destination region.
ErrCodeSnapshotCopyGrantNotFoundFault = "SnapshotCopyGrantNotFoundFault"
// ErrCodeSnapshotCopyGrantQuotaExceededFault for service response error code
// "SnapshotCopyGrantQuotaExceededFault".
//
// The AWS account has exceeded the maximum number of snapshot copy grants in
// this region.
ErrCodeSnapshotCopyGrantQuotaExceededFault = "SnapshotCopyGrantQuotaExceededFault"
// ErrCodeSourceNotFoundFault for service response error code
// "SourceNotFound".
//
// The specified Amazon Redshift event source could not be found.
ErrCodeSourceNotFoundFault = "SourceNotFound"
// ErrCodeSubnetAlreadyInUse for service response error code
// "SubnetAlreadyInUse".
//
// A specified subnet is already in use by another cluster.
ErrCodeSubnetAlreadyInUse = "SubnetAlreadyInUse"
// ErrCodeSubscriptionAlreadyExistFault for service response error code
// "SubscriptionAlreadyExist".
//
// There is already an existing event notification subscription with the specified
// name.
ErrCodeSubscriptionAlreadyExistFault = "SubscriptionAlreadyExist"
// ErrCodeSubscriptionCategoryNotFoundFault for service response error code
// "SubscriptionCategoryNotFound".
//
// The value specified for the event category was not one of the allowed values,
// or it specified a category that does not apply to the specified source type.
// The allowed values are Configuration, Management, Monitoring, and Security.
ErrCodeSubscriptionCategoryNotFoundFault = "SubscriptionCategoryNotFound"
// ErrCodeSubscriptionEventIdNotFoundFault for service response error code
// "SubscriptionEventIdNotFound".
//
// An Amazon Redshift event with the specified event ID does not exist.
ErrCodeSubscriptionEventIdNotFoundFault = "SubscriptionEventIdNotFound"
// ErrCodeSubscriptionNotFoundFault for service response error code
// "SubscriptionNotFound".
//
// An Amazon Redshift event notification subscription with the specified name
// does not exist.
ErrCodeSubscriptionNotFoundFault = "SubscriptionNotFound"
// ErrCodeSubscriptionSeverityNotFoundFault for service response error code
// "SubscriptionSeverityNotFound".
//
// The value specified for the event severity was not one of the allowed values,
// or it specified a severity that does not apply to the specified source type.
// The allowed values are ERROR and INFO.
ErrCodeSubscriptionSeverityNotFoundFault = "SubscriptionSeverityNotFound"
// ErrCodeTableRestoreNotFoundFault for service response error code
// "TableRestoreNotFoundFault".
//
// The specified TableRestoreRequestId value was not found.
ErrCodeTableRestoreNotFoundFault = "TableRestoreNotFoundFault"
// ErrCodeTagLimitExceededFault for service response error code
// "TagLimitExceededFault".
//
// The request exceeds the limit of 10 tags for the resource.
ErrCodeTagLimitExceededFault = "TagLimitExceededFault"
// ErrCodeUnauthorizedOperation for service response error code
// "UnauthorizedOperation".
//
// Your account is not authorized to perform the requested operation.
ErrCodeUnauthorizedOperation = "UnauthorizedOperation"
// ErrCodeUnknownSnapshotCopyRegionFault for service response error code
// "UnknownSnapshotCopyRegionFault".
//
// The specified region is incorrect or does not exist.
ErrCodeUnknownSnapshotCopyRegionFault = "UnknownSnapshotCopyRegionFault"
// ErrCodeUnsupportedOperationFault for service response error code
// "UnsupportedOperation".
//
// The requested operation isn't supported.
ErrCodeUnsupportedOperationFault = "UnsupportedOperation"
// ErrCodeUnsupportedOptionFault for service response error code
// "UnsupportedOptionFault".
//
// A request option was specified that is not supported.
ErrCodeUnsupportedOptionFault = "UnsupportedOptionFault"
)