-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
errors.go
788 lines (665 loc) · 32.1 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
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package rds
const (
// ErrCodeAuthorizationAlreadyExistsFault for service response error code
// "AuthorizationAlreadyExists".
//
// The specified CIDR IP range or Amazon EC2 security group is already authorized
// for the specified DB security group.
ErrCodeAuthorizationAlreadyExistsFault = "AuthorizationAlreadyExists"
// ErrCodeAuthorizationNotFoundFault for service response error code
// "AuthorizationNotFound".
//
// The specified CIDR IP range or Amazon EC2 security group might not be authorized
// for the specified DB security group.
//
// Or, RDS might not be authorized to perform necessary actions using IAM on
// your behalf.
ErrCodeAuthorizationNotFoundFault = "AuthorizationNotFound"
// ErrCodeAuthorizationQuotaExceededFault for service response error code
// "AuthorizationQuotaExceeded".
//
// The DB security group authorization quota has been reached.
ErrCodeAuthorizationQuotaExceededFault = "AuthorizationQuotaExceeded"
// ErrCodeBackupPolicyNotFoundFault for service response error code
// "BackupPolicyNotFoundFault".
ErrCodeBackupPolicyNotFoundFault = "BackupPolicyNotFoundFault"
// ErrCodeCertificateNotFoundFault for service response error code
// "CertificateNotFound".
//
// CertificateIdentifier doesn't refer to an existing certificate.
ErrCodeCertificateNotFoundFault = "CertificateNotFound"
// ErrCodeCustomAvailabilityZoneAlreadyExistsFault for service response error code
// "CustomAvailabilityZoneAlreadyExists".
//
// CustomAvailabilityZoneName is already used by an existing custom Availability
// Zone.
ErrCodeCustomAvailabilityZoneAlreadyExistsFault = "CustomAvailabilityZoneAlreadyExists"
// ErrCodeCustomAvailabilityZoneNotFoundFault for service response error code
// "CustomAvailabilityZoneNotFound".
//
// CustomAvailabilityZoneId doesn't refer to an existing custom Availability
// Zone identifier.
ErrCodeCustomAvailabilityZoneNotFoundFault = "CustomAvailabilityZoneNotFound"
// ErrCodeCustomAvailabilityZoneQuotaExceededFault for service response error code
// "CustomAvailabilityZoneQuotaExceeded".
//
// You have exceeded the maximum number of custom Availability Zones.
ErrCodeCustomAvailabilityZoneQuotaExceededFault = "CustomAvailabilityZoneQuotaExceeded"
// ErrCodeCustomDBEngineVersionAlreadyExistsFault for service response error code
// "CustomDBEngineVersionAlreadyExistsFault".
//
// A CEV with the specified name already exists.
ErrCodeCustomDBEngineVersionAlreadyExistsFault = "CustomDBEngineVersionAlreadyExistsFault"
// ErrCodeCustomDBEngineVersionNotFoundFault for service response error code
// "CustomDBEngineVersionNotFoundFault".
//
// The specified CEV was not found.
ErrCodeCustomDBEngineVersionNotFoundFault = "CustomDBEngineVersionNotFoundFault"
// ErrCodeCustomDBEngineVersionQuotaExceededFault for service response error code
// "CustomDBEngineVersionQuotaExceededFault".
//
// You have exceeded your CEV quota.
ErrCodeCustomDBEngineVersionQuotaExceededFault = "CustomDBEngineVersionQuotaExceededFault"
// ErrCodeDBClusterAlreadyExistsFault for service response error code
// "DBClusterAlreadyExistsFault".
//
// The user already has a DB cluster with the given identifier.
ErrCodeDBClusterAlreadyExistsFault = "DBClusterAlreadyExistsFault"
// ErrCodeDBClusterBacktrackNotFoundFault for service response error code
// "DBClusterBacktrackNotFoundFault".
//
// BacktrackIdentifier doesn't refer to an existing backtrack.
ErrCodeDBClusterBacktrackNotFoundFault = "DBClusterBacktrackNotFoundFault"
// ErrCodeDBClusterEndpointAlreadyExistsFault for service response error code
// "DBClusterEndpointAlreadyExistsFault".
//
// The specified custom endpoint can't be created because it already exists.
ErrCodeDBClusterEndpointAlreadyExistsFault = "DBClusterEndpointAlreadyExistsFault"
// ErrCodeDBClusterEndpointNotFoundFault for service response error code
// "DBClusterEndpointNotFoundFault".
//
// The specified custom endpoint doesn't exist.
ErrCodeDBClusterEndpointNotFoundFault = "DBClusterEndpointNotFoundFault"
// ErrCodeDBClusterEndpointQuotaExceededFault for service response error code
// "DBClusterEndpointQuotaExceededFault".
//
// The cluster already has the maximum number of custom endpoints.
ErrCodeDBClusterEndpointQuotaExceededFault = "DBClusterEndpointQuotaExceededFault"
// ErrCodeDBClusterNotFoundFault for service response error code
// "DBClusterNotFoundFault".
//
// DBClusterIdentifier doesn't refer to an existing DB cluster.
ErrCodeDBClusterNotFoundFault = "DBClusterNotFoundFault"
// ErrCodeDBClusterParameterGroupNotFoundFault for service response error code
// "DBClusterParameterGroupNotFound".
//
// DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter
// group.
ErrCodeDBClusterParameterGroupNotFoundFault = "DBClusterParameterGroupNotFound"
// ErrCodeDBClusterQuotaExceededFault for service response error code
// "DBClusterQuotaExceededFault".
//
// The user attempted to create a new DB cluster and the user has already reached
// the maximum allowed DB cluster quota.
ErrCodeDBClusterQuotaExceededFault = "DBClusterQuotaExceededFault"
// ErrCodeDBClusterRoleAlreadyExistsFault for service response error code
// "DBClusterRoleAlreadyExists".
//
// The specified IAM role Amazon Resource Name (ARN) is already associated with
// the specified DB cluster.
ErrCodeDBClusterRoleAlreadyExistsFault = "DBClusterRoleAlreadyExists"
// ErrCodeDBClusterRoleNotFoundFault for service response error code
// "DBClusterRoleNotFound".
//
// The specified IAM role Amazon Resource Name (ARN) isn't associated with the
// specified DB cluster.
ErrCodeDBClusterRoleNotFoundFault = "DBClusterRoleNotFound"
// ErrCodeDBClusterRoleQuotaExceededFault for service response error code
// "DBClusterRoleQuotaExceeded".
//
// You have exceeded the maximum number of IAM roles that can be associated
// with the specified DB cluster.
ErrCodeDBClusterRoleQuotaExceededFault = "DBClusterRoleQuotaExceeded"
// ErrCodeDBClusterSnapshotAlreadyExistsFault for service response error code
// "DBClusterSnapshotAlreadyExistsFault".
//
// The user already has a DB cluster snapshot with the given identifier.
ErrCodeDBClusterSnapshotAlreadyExistsFault = "DBClusterSnapshotAlreadyExistsFault"
// ErrCodeDBClusterSnapshotNotFoundFault for service response error code
// "DBClusterSnapshotNotFoundFault".
//
// DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.
ErrCodeDBClusterSnapshotNotFoundFault = "DBClusterSnapshotNotFoundFault"
// ErrCodeDBInstanceAlreadyExistsFault for service response error code
// "DBInstanceAlreadyExists".
//
// The user already has a DB instance with the given identifier.
ErrCodeDBInstanceAlreadyExistsFault = "DBInstanceAlreadyExists"
// ErrCodeDBInstanceAutomatedBackupNotFoundFault for service response error code
// "DBInstanceAutomatedBackupNotFound".
//
// No automated backup for this DB instance was found.
ErrCodeDBInstanceAutomatedBackupNotFoundFault = "DBInstanceAutomatedBackupNotFound"
// ErrCodeDBInstanceAutomatedBackupQuotaExceededFault for service response error code
// "DBInstanceAutomatedBackupQuotaExceeded".
//
// The quota for retained automated backups was exceeded. This prevents you
// from retaining any additional automated backups. The retained automated backups
// quota is the same as your DB Instance quota.
ErrCodeDBInstanceAutomatedBackupQuotaExceededFault = "DBInstanceAutomatedBackupQuotaExceeded"
// ErrCodeDBInstanceNotFoundFault for service response error code
// "DBInstanceNotFound".
//
// DBInstanceIdentifier doesn't refer to an existing DB instance.
ErrCodeDBInstanceNotFoundFault = "DBInstanceNotFound"
// ErrCodeDBInstanceRoleAlreadyExistsFault for service response error code
// "DBInstanceRoleAlreadyExists".
//
// The specified RoleArn or FeatureName value is already associated with the
// DB instance.
ErrCodeDBInstanceRoleAlreadyExistsFault = "DBInstanceRoleAlreadyExists"
// ErrCodeDBInstanceRoleNotFoundFault for service response error code
// "DBInstanceRoleNotFound".
//
// The specified RoleArn value doesn't match the specified feature for the DB
// instance.
ErrCodeDBInstanceRoleNotFoundFault = "DBInstanceRoleNotFound"
// ErrCodeDBInstanceRoleQuotaExceededFault for service response error code
// "DBInstanceRoleQuotaExceeded".
//
// You can't associate any more Amazon Web Services Identity and Access Management
// (IAM) roles with the DB instance because the quota has been reached.
ErrCodeDBInstanceRoleQuotaExceededFault = "DBInstanceRoleQuotaExceeded"
// ErrCodeDBLogFileNotFoundFault for service response error code
// "DBLogFileNotFoundFault".
//
// LogFileName doesn't refer to an existing DB log file.
ErrCodeDBLogFileNotFoundFault = "DBLogFileNotFoundFault"
// ErrCodeDBParameterGroupAlreadyExistsFault for service response error code
// "DBParameterGroupAlreadyExists".
//
// A DB parameter group with the same name exists.
ErrCodeDBParameterGroupAlreadyExistsFault = "DBParameterGroupAlreadyExists"
// ErrCodeDBParameterGroupNotFoundFault for service response error code
// "DBParameterGroupNotFound".
//
// DBParameterGroupName doesn't refer to an existing DB parameter group.
ErrCodeDBParameterGroupNotFoundFault = "DBParameterGroupNotFound"
// ErrCodeDBParameterGroupQuotaExceededFault for service response error code
// "DBParameterGroupQuotaExceeded".
//
// The request would result in the user exceeding the allowed number of DB parameter
// groups.
ErrCodeDBParameterGroupQuotaExceededFault = "DBParameterGroupQuotaExceeded"
// ErrCodeDBProxyAlreadyExistsFault for service response error code
// "DBProxyAlreadyExistsFault".
//
// The specified proxy name must be unique for all proxies owned by your Amazon
// Web Services account in the specified Amazon Web Services Region.
ErrCodeDBProxyAlreadyExistsFault = "DBProxyAlreadyExistsFault"
// ErrCodeDBProxyEndpointAlreadyExistsFault for service response error code
// "DBProxyEndpointAlreadyExistsFault".
//
// The specified DB proxy endpoint name must be unique for all DB proxy endpoints
// owned by your Amazon Web Services account in the specified Amazon Web Services
// Region.
ErrCodeDBProxyEndpointAlreadyExistsFault = "DBProxyEndpointAlreadyExistsFault"
// ErrCodeDBProxyEndpointNotFoundFault for service response error code
// "DBProxyEndpointNotFoundFault".
//
// The DB proxy endpoint doesn't exist.
ErrCodeDBProxyEndpointNotFoundFault = "DBProxyEndpointNotFoundFault"
// ErrCodeDBProxyEndpointQuotaExceededFault for service response error code
// "DBProxyEndpointQuotaExceededFault".
//
// The DB proxy already has the maximum number of endpoints.
ErrCodeDBProxyEndpointQuotaExceededFault = "DBProxyEndpointQuotaExceededFault"
// ErrCodeDBProxyNotFoundFault for service response error code
// "DBProxyNotFoundFault".
//
// The specified proxy name doesn't correspond to a proxy owned by your Amazon
// Web Services account in the specified Amazon Web Services Region.
ErrCodeDBProxyNotFoundFault = "DBProxyNotFoundFault"
// ErrCodeDBProxyQuotaExceededFault for service response error code
// "DBProxyQuotaExceededFault".
//
// Your Amazon Web Services account already has the maximum number of proxies
// in the specified Amazon Web Services Region.
ErrCodeDBProxyQuotaExceededFault = "DBProxyQuotaExceededFault"
// ErrCodeDBProxyTargetAlreadyRegisteredFault for service response error code
// "DBProxyTargetAlreadyRegisteredFault".
//
// The proxy is already associated with the specified RDS DB instance or Aurora
// DB cluster.
ErrCodeDBProxyTargetAlreadyRegisteredFault = "DBProxyTargetAlreadyRegisteredFault"
// ErrCodeDBProxyTargetGroupNotFoundFault for service response error code
// "DBProxyTargetGroupNotFoundFault".
//
// The specified target group isn't available for a proxy owned by your Amazon
// Web Services account in the specified Amazon Web Services Region.
ErrCodeDBProxyTargetGroupNotFoundFault = "DBProxyTargetGroupNotFoundFault"
// ErrCodeDBProxyTargetNotFoundFault for service response error code
// "DBProxyTargetNotFoundFault".
//
// The specified RDS DB instance or Aurora DB cluster isn't available for a
// proxy owned by your Amazon Web Services account in the specified Amazon Web
// Services Region.
ErrCodeDBProxyTargetNotFoundFault = "DBProxyTargetNotFoundFault"
// ErrCodeDBSecurityGroupAlreadyExistsFault for service response error code
// "DBSecurityGroupAlreadyExists".
//
// A DB security group with the name specified in DBSecurityGroupName already
// exists.
ErrCodeDBSecurityGroupAlreadyExistsFault = "DBSecurityGroupAlreadyExists"
// ErrCodeDBSecurityGroupNotFoundFault for service response error code
// "DBSecurityGroupNotFound".
//
// DBSecurityGroupName doesn't refer to an existing DB security group.
ErrCodeDBSecurityGroupNotFoundFault = "DBSecurityGroupNotFound"
// ErrCodeDBSecurityGroupNotSupportedFault for service response error code
// "DBSecurityGroupNotSupported".
//
// A DB security group isn't allowed for this action.
ErrCodeDBSecurityGroupNotSupportedFault = "DBSecurityGroupNotSupported"
// ErrCodeDBSecurityGroupQuotaExceededFault for service response error code
// "QuotaExceeded.DBSecurityGroup".
//
// The request would result in the user exceeding the allowed number of DB security
// groups.
ErrCodeDBSecurityGroupQuotaExceededFault = "QuotaExceeded.DBSecurityGroup"
// ErrCodeDBSnapshotAlreadyExistsFault for service response error code
// "DBSnapshotAlreadyExists".
//
// DBSnapshotIdentifier is already used by an existing snapshot.
ErrCodeDBSnapshotAlreadyExistsFault = "DBSnapshotAlreadyExists"
// ErrCodeDBSnapshotNotFoundFault for service response error code
// "DBSnapshotNotFound".
//
// DBSnapshotIdentifier doesn't refer to an existing DB snapshot.
ErrCodeDBSnapshotNotFoundFault = "DBSnapshotNotFound"
// ErrCodeDBSubnetGroupAlreadyExistsFault for service response error code
// "DBSubnetGroupAlreadyExists".
//
// DBSubnetGroupName is already used by an existing DB subnet group.
ErrCodeDBSubnetGroupAlreadyExistsFault = "DBSubnetGroupAlreadyExists"
// ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs for service response error code
// "DBSubnetGroupDoesNotCoverEnoughAZs".
//
// Subnets in the DB subnet group should cover at least two Availability Zones
// unless there is only one Availability Zone.
ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs = "DBSubnetGroupDoesNotCoverEnoughAZs"
// ErrCodeDBSubnetGroupNotAllowedFault for service response error code
// "DBSubnetGroupNotAllowedFault".
//
// The DBSubnetGroup shouldn't be specified while creating read replicas that
// lie in the same region as the source instance.
ErrCodeDBSubnetGroupNotAllowedFault = "DBSubnetGroupNotAllowedFault"
// ErrCodeDBSubnetGroupNotFoundFault for service response error code
// "DBSubnetGroupNotFoundFault".
//
// DBSubnetGroupName doesn't refer to an existing DB subnet group.
ErrCodeDBSubnetGroupNotFoundFault = "DBSubnetGroupNotFoundFault"
// ErrCodeDBSubnetGroupQuotaExceededFault for service response error code
// "DBSubnetGroupQuotaExceeded".
//
// The request would result in the user exceeding the allowed number of DB subnet
// groups.
ErrCodeDBSubnetGroupQuotaExceededFault = "DBSubnetGroupQuotaExceeded"
// ErrCodeDBSubnetQuotaExceededFault for service response error code
// "DBSubnetQuotaExceededFault".
//
// The request would result in the user exceeding the allowed number of subnets
// in a DB subnet groups.
ErrCodeDBSubnetQuotaExceededFault = "DBSubnetQuotaExceededFault"
// ErrCodeDBUpgradeDependencyFailureFault for service response error code
// "DBUpgradeDependencyFailure".
//
// The DB upgrade failed because a resource the DB depends on can't be modified.
ErrCodeDBUpgradeDependencyFailureFault = "DBUpgradeDependencyFailure"
// ErrCodeDomainNotFoundFault for service response error code
// "DomainNotFoundFault".
//
// Domain doesn't refer to an existing Active Directory domain.
ErrCodeDomainNotFoundFault = "DomainNotFoundFault"
// ErrCodeEventSubscriptionQuotaExceededFault for service response error code
// "EventSubscriptionQuotaExceeded".
//
// You have reached the maximum number of event subscriptions.
ErrCodeEventSubscriptionQuotaExceededFault = "EventSubscriptionQuotaExceeded"
// ErrCodeExportTaskAlreadyExistsFault for service response error code
// "ExportTaskAlreadyExists".
//
// You can't start an export task that's already running.
ErrCodeExportTaskAlreadyExistsFault = "ExportTaskAlreadyExists"
// ErrCodeExportTaskNotFoundFault for service response error code
// "ExportTaskNotFound".
//
// The export task doesn't exist.
ErrCodeExportTaskNotFoundFault = "ExportTaskNotFound"
// ErrCodeGlobalClusterAlreadyExistsFault for service response error code
// "GlobalClusterAlreadyExistsFault".
//
// The GlobalClusterIdentifier already exists. Choose a new global database
// identifier (unique name) to create a new global database cluster.
ErrCodeGlobalClusterAlreadyExistsFault = "GlobalClusterAlreadyExistsFault"
// ErrCodeGlobalClusterNotFoundFault for service response error code
// "GlobalClusterNotFoundFault".
//
// The GlobalClusterIdentifier doesn't refer to an existing global database
// cluster.
ErrCodeGlobalClusterNotFoundFault = "GlobalClusterNotFoundFault"
// ErrCodeGlobalClusterQuotaExceededFault for service response error code
// "GlobalClusterQuotaExceededFault".
//
// The number of global database clusters for this account is already at the
// maximum allowed.
ErrCodeGlobalClusterQuotaExceededFault = "GlobalClusterQuotaExceededFault"
// ErrCodeIamRoleMissingPermissionsFault for service response error code
// "IamRoleMissingPermissions".
//
// The IAM role requires additional permissions to export to an Amazon S3 bucket.
ErrCodeIamRoleMissingPermissionsFault = "IamRoleMissingPermissions"
// ErrCodeIamRoleNotFoundFault for service response error code
// "IamRoleNotFound".
//
// The IAM role is missing for exporting to an Amazon S3 bucket.
ErrCodeIamRoleNotFoundFault = "IamRoleNotFound"
// ErrCodeInstallationMediaAlreadyExistsFault for service response error code
// "InstallationMediaAlreadyExists".
//
// The specified installation medium has already been imported.
ErrCodeInstallationMediaAlreadyExistsFault = "InstallationMediaAlreadyExists"
// ErrCodeInstallationMediaNotFoundFault for service response error code
// "InstallationMediaNotFound".
//
// InstallationMediaID doesn't refer to an existing installation medium.
ErrCodeInstallationMediaNotFoundFault = "InstallationMediaNotFound"
// ErrCodeInstanceQuotaExceededFault for service response error code
// "InstanceQuotaExceeded".
//
// The request would result in the user exceeding the allowed number of DB instances.
ErrCodeInstanceQuotaExceededFault = "InstanceQuotaExceeded"
// ErrCodeInsufficientAvailableIPsInSubnetFault for service response error code
// "InsufficientAvailableIPsInSubnetFault".
//
// The requested operation can't be performed because there aren't enough available
// IP addresses in the proxy's subnets. Add more CIDR blocks to the VPC or remove
// IP address that aren't required from the subnets.
ErrCodeInsufficientAvailableIPsInSubnetFault = "InsufficientAvailableIPsInSubnetFault"
// ErrCodeInsufficientDBClusterCapacityFault for service response error code
// "InsufficientDBClusterCapacityFault".
//
// The DB cluster doesn't have enough capacity for the current operation.
ErrCodeInsufficientDBClusterCapacityFault = "InsufficientDBClusterCapacityFault"
// ErrCodeInsufficientDBInstanceCapacityFault for service response error code
// "InsufficientDBInstanceCapacity".
//
// The specified DB instance class isn't available in the specified Availability
// Zone.
ErrCodeInsufficientDBInstanceCapacityFault = "InsufficientDBInstanceCapacity"
// ErrCodeInsufficientStorageClusterCapacityFault for service response error code
// "InsufficientStorageClusterCapacity".
//
// There is insufficient storage available for the current action. You might
// be able to resolve this error by updating your subnet group to use different
// Availability Zones that have more storage available.
ErrCodeInsufficientStorageClusterCapacityFault = "InsufficientStorageClusterCapacity"
// ErrCodeInvalidCustomDBEngineVersionStateFault for service response error code
// "InvalidCustomDBEngineVersionStateFault".
//
// You can't delete the CEV.
ErrCodeInvalidCustomDBEngineVersionStateFault = "InvalidCustomDBEngineVersionStateFault"
// ErrCodeInvalidDBClusterCapacityFault for service response error code
// "InvalidDBClusterCapacityFault".
//
// Capacity isn't a valid Aurora Serverless DB cluster capacity. Valid capacity
// values are 2, 4, 8, 16, 32, 64, 128, and 256.
ErrCodeInvalidDBClusterCapacityFault = "InvalidDBClusterCapacityFault"
// ErrCodeInvalidDBClusterEndpointStateFault for service response error code
// "InvalidDBClusterEndpointStateFault".
//
// The requested operation can't be performed on the endpoint while the endpoint
// is in this state.
ErrCodeInvalidDBClusterEndpointStateFault = "InvalidDBClusterEndpointStateFault"
// ErrCodeInvalidDBClusterSnapshotStateFault for service response error code
// "InvalidDBClusterSnapshotStateFault".
//
// The supplied value isn't a valid DB cluster snapshot state.
ErrCodeInvalidDBClusterSnapshotStateFault = "InvalidDBClusterSnapshotStateFault"
// ErrCodeInvalidDBClusterStateFault for service response error code
// "InvalidDBClusterStateFault".
//
// The requested operation can't be performed while the cluster is in this state.
ErrCodeInvalidDBClusterStateFault = "InvalidDBClusterStateFault"
// ErrCodeInvalidDBInstanceAutomatedBackupStateFault for service response error code
// "InvalidDBInstanceAutomatedBackupState".
//
// The automated backup is in an invalid state. For example, this automated
// backup is associated with an active instance.
ErrCodeInvalidDBInstanceAutomatedBackupStateFault = "InvalidDBInstanceAutomatedBackupState"
// ErrCodeInvalidDBInstanceStateFault for service response error code
// "InvalidDBInstanceState".
//
// The DB instance isn't in a valid state.
ErrCodeInvalidDBInstanceStateFault = "InvalidDBInstanceState"
// ErrCodeInvalidDBParameterGroupStateFault for service response error code
// "InvalidDBParameterGroupState".
//
// The DB parameter group is in use or is in an invalid state. If you are attempting
// to delete the parameter group, you can't delete it when the parameter group
// is in this state.
ErrCodeInvalidDBParameterGroupStateFault = "InvalidDBParameterGroupState"
// ErrCodeInvalidDBProxyEndpointStateFault for service response error code
// "InvalidDBProxyEndpointStateFault".
//
// You can't perform this operation while the DB proxy endpoint is in a particular
// state.
ErrCodeInvalidDBProxyEndpointStateFault = "InvalidDBProxyEndpointStateFault"
// ErrCodeInvalidDBProxyStateFault for service response error code
// "InvalidDBProxyStateFault".
//
// The requested operation can't be performed while the proxy is in this state.
ErrCodeInvalidDBProxyStateFault = "InvalidDBProxyStateFault"
// ErrCodeInvalidDBSecurityGroupStateFault for service response error code
// "InvalidDBSecurityGroupState".
//
// The state of the DB security group doesn't allow deletion.
ErrCodeInvalidDBSecurityGroupStateFault = "InvalidDBSecurityGroupState"
// ErrCodeInvalidDBSnapshotStateFault for service response error code
// "InvalidDBSnapshotState".
//
// The state of the DB snapshot doesn't allow deletion.
ErrCodeInvalidDBSnapshotStateFault = "InvalidDBSnapshotState"
// ErrCodeInvalidDBSubnetGroupFault for service response error code
// "InvalidDBSubnetGroupFault".
//
// The DBSubnetGroup doesn't belong to the same VPC as that of an existing cross-region
// read replica of the same source instance.
ErrCodeInvalidDBSubnetGroupFault = "InvalidDBSubnetGroupFault"
// ErrCodeInvalidDBSubnetGroupStateFault for service response error code
// "InvalidDBSubnetGroupStateFault".
//
// The DB subnet group cannot be deleted because it's in use.
ErrCodeInvalidDBSubnetGroupStateFault = "InvalidDBSubnetGroupStateFault"
// ErrCodeInvalidDBSubnetStateFault for service response error code
// "InvalidDBSubnetStateFault".
//
// The DB subnet isn't in the available state.
ErrCodeInvalidDBSubnetStateFault = "InvalidDBSubnetStateFault"
// ErrCodeInvalidEventSubscriptionStateFault for service response error code
// "InvalidEventSubscriptionState".
//
// This error can occur if someone else is modifying a subscription. You should
// retry the action.
ErrCodeInvalidEventSubscriptionStateFault = "InvalidEventSubscriptionState"
// ErrCodeInvalidExportOnlyFault for service response error code
// "InvalidExportOnly".
//
// The export is invalid for exporting to an Amazon S3 bucket.
ErrCodeInvalidExportOnlyFault = "InvalidExportOnly"
// ErrCodeInvalidExportSourceStateFault for service response error code
// "InvalidExportSourceState".
//
// The state of the export snapshot is invalid for exporting to an Amazon S3
// bucket.
ErrCodeInvalidExportSourceStateFault = "InvalidExportSourceState"
// ErrCodeInvalidExportTaskStateFault for service response error code
// "InvalidExportTaskStateFault".
//
// You can't cancel an export task that has completed.
ErrCodeInvalidExportTaskStateFault = "InvalidExportTaskStateFault"
// ErrCodeInvalidGlobalClusterStateFault for service response error code
// "InvalidGlobalClusterStateFault".
//
// The global cluster is in an invalid state and can't perform the requested
// operation.
ErrCodeInvalidGlobalClusterStateFault = "InvalidGlobalClusterStateFault"
// ErrCodeInvalidOptionGroupStateFault for service response error code
// "InvalidOptionGroupStateFault".
//
// The option group isn't in the available state.
ErrCodeInvalidOptionGroupStateFault = "InvalidOptionGroupStateFault"
// ErrCodeInvalidRestoreFault for service response error code
// "InvalidRestoreFault".
//
// Cannot restore from VPC backup to non-VPC DB instance.
ErrCodeInvalidRestoreFault = "InvalidRestoreFault"
// ErrCodeInvalidS3BucketFault for service response error code
// "InvalidS3BucketFault".
//
// The specified Amazon S3 bucket name can't be found or Amazon RDS isn't authorized
// to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and
// S3IngestionRoleArn values and try again.
ErrCodeInvalidS3BucketFault = "InvalidS3BucketFault"
// ErrCodeInvalidSubnet for service response error code
// "InvalidSubnet".
//
// The requested subnet is invalid, or multiple subnets were requested that
// are not all in a common VPC.
ErrCodeInvalidSubnet = "InvalidSubnet"
// ErrCodeInvalidVPCNetworkStateFault for service response error code
// "InvalidVPCNetworkStateFault".
//
// The DB subnet group doesn't cover all Availability Zones after it's created
// because of users' change.
ErrCodeInvalidVPCNetworkStateFault = "InvalidVPCNetworkStateFault"
// ErrCodeKMSKeyNotAccessibleFault for service response error code
// "KMSKeyNotAccessibleFault".
//
// An error occurred accessing an Amazon Web Services KMS key.
ErrCodeKMSKeyNotAccessibleFault = "KMSKeyNotAccessibleFault"
// ErrCodeOptionGroupAlreadyExistsFault for service response error code
// "OptionGroupAlreadyExistsFault".
//
// The option group you are trying to create already exists.
ErrCodeOptionGroupAlreadyExistsFault = "OptionGroupAlreadyExistsFault"
// ErrCodeOptionGroupNotFoundFault for service response error code
// "OptionGroupNotFoundFault".
//
// The specified option group could not be found.
ErrCodeOptionGroupNotFoundFault = "OptionGroupNotFoundFault"
// ErrCodeOptionGroupQuotaExceededFault for service response error code
// "OptionGroupQuotaExceededFault".
//
// The quota of 20 option groups was exceeded for this Amazon Web Services account.
ErrCodeOptionGroupQuotaExceededFault = "OptionGroupQuotaExceededFault"
// ErrCodePointInTimeRestoreNotEnabledFault for service response error code
// "PointInTimeRestoreNotEnabled".
//
// SourceDBInstanceIdentifier refers to a DB instance with BackupRetentionPeriod
// equal to 0.
ErrCodePointInTimeRestoreNotEnabledFault = "PointInTimeRestoreNotEnabled"
// ErrCodeProvisionedIopsNotAvailableInAZFault for service response error code
// "ProvisionedIopsNotAvailableInAZFault".
//
// Provisioned IOPS not available in the specified Availability Zone.
ErrCodeProvisionedIopsNotAvailableInAZFault = "ProvisionedIopsNotAvailableInAZFault"
// ErrCodeReservedDBInstanceAlreadyExistsFault for service response error code
// "ReservedDBInstanceAlreadyExists".
//
// User already has a reservation with the given identifier.
ErrCodeReservedDBInstanceAlreadyExistsFault = "ReservedDBInstanceAlreadyExists"
// ErrCodeReservedDBInstanceNotFoundFault for service response error code
// "ReservedDBInstanceNotFound".
//
// The specified reserved DB Instance not found.
ErrCodeReservedDBInstanceNotFoundFault = "ReservedDBInstanceNotFound"
// ErrCodeReservedDBInstanceQuotaExceededFault for service response error code
// "ReservedDBInstanceQuotaExceeded".
//
// Request would exceed the user's DB Instance quota.
ErrCodeReservedDBInstanceQuotaExceededFault = "ReservedDBInstanceQuotaExceeded"
// ErrCodeReservedDBInstancesOfferingNotFoundFault for service response error code
// "ReservedDBInstancesOfferingNotFound".
//
// Specified offering does not exist.
ErrCodeReservedDBInstancesOfferingNotFoundFault = "ReservedDBInstancesOfferingNotFound"
// ErrCodeResourceNotFoundFault for service response error code
// "ResourceNotFoundFault".
//
// The specified resource ID was not found.
ErrCodeResourceNotFoundFault = "ResourceNotFoundFault"
// ErrCodeSNSInvalidTopicFault for service response error code
// "SNSInvalidTopic".
//
// SNS has responded that there is a problem with the SND topic specified.
ErrCodeSNSInvalidTopicFault = "SNSInvalidTopic"
// ErrCodeSNSNoAuthorizationFault for service response error code
// "SNSNoAuthorization".
//
// You do not have permission to publish to the SNS topic ARN.
ErrCodeSNSNoAuthorizationFault = "SNSNoAuthorization"
// ErrCodeSNSTopicArnNotFoundFault for service response error code
// "SNSTopicArnNotFound".
//
// The SNS topic ARN does not exist.
ErrCodeSNSTopicArnNotFoundFault = "SNSTopicArnNotFound"
// ErrCodeSharedSnapshotQuotaExceededFault for service response error code
// "SharedSnapshotQuotaExceeded".
//
// You have exceeded the maximum number of accounts that you can share a manual
// DB snapshot with.
ErrCodeSharedSnapshotQuotaExceededFault = "SharedSnapshotQuotaExceeded"
// ErrCodeSnapshotQuotaExceededFault for service response error code
// "SnapshotQuotaExceeded".
//
// The request would result in the user exceeding the allowed number of DB snapshots.
ErrCodeSnapshotQuotaExceededFault = "SnapshotQuotaExceeded"
// ErrCodeSourceNotFoundFault for service response error code
// "SourceNotFound".
//
// The requested source could not be found.
ErrCodeSourceNotFoundFault = "SourceNotFound"
// ErrCodeStorageQuotaExceededFault for service response error code
// "StorageQuotaExceeded".
//
// The request would result in the user exceeding the allowed amount of storage
// available across all DB instances.
ErrCodeStorageQuotaExceededFault = "StorageQuotaExceeded"
// ErrCodeStorageTypeNotSupportedFault for service response error code
// "StorageTypeNotSupported".
//
// Storage of the StorageType specified can't be associated with the DB instance.
ErrCodeStorageTypeNotSupportedFault = "StorageTypeNotSupported"
// ErrCodeSubnetAlreadyInUse for service response error code
// "SubnetAlreadyInUse".
//
// The DB subnet is already in use in the Availability Zone.
ErrCodeSubnetAlreadyInUse = "SubnetAlreadyInUse"
// ErrCodeSubscriptionAlreadyExistFault for service response error code
// "SubscriptionAlreadyExist".
//
// The supplied subscription name already exists.
ErrCodeSubscriptionAlreadyExistFault = "SubscriptionAlreadyExist"
// ErrCodeSubscriptionCategoryNotFoundFault for service response error code
// "SubscriptionCategoryNotFound".
//
// The supplied category does not exist.
ErrCodeSubscriptionCategoryNotFoundFault = "SubscriptionCategoryNotFound"
// ErrCodeSubscriptionNotFoundFault for service response error code
// "SubscriptionNotFound".
//
// The subscription name does not exist.
ErrCodeSubscriptionNotFoundFault = "SubscriptionNotFound"
)