errors.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
  2. package rds
  3. const (
  4. // ErrCodeAuthorizationAlreadyExistsFault for service response error code
  5. // "AuthorizationAlreadyExists".
  6. //
  7. // The specified CIDRIP or Amazon EC2 security group is already authorized for
  8. // the specified DB security group.
  9. ErrCodeAuthorizationAlreadyExistsFault = "AuthorizationAlreadyExists"
  10. // ErrCodeAuthorizationNotFoundFault for service response error code
  11. // "AuthorizationNotFound".
  12. //
  13. // The specified CIDRIP or Amazon EC2 security group isn't authorized for the
  14. // specified DB security group.
  15. //
  16. // RDS also may not be authorized by using IAM to perform necessary actions
  17. // on your behalf.
  18. ErrCodeAuthorizationNotFoundFault = "AuthorizationNotFound"
  19. // ErrCodeAuthorizationQuotaExceededFault for service response error code
  20. // "AuthorizationQuotaExceeded".
  21. //
  22. // The DB security group authorization quota has been reached.
  23. ErrCodeAuthorizationQuotaExceededFault = "AuthorizationQuotaExceeded"
  24. // ErrCodeBackupPolicyNotFoundFault for service response error code
  25. // "BackupPolicyNotFoundFault".
  26. ErrCodeBackupPolicyNotFoundFault = "BackupPolicyNotFoundFault"
  27. // ErrCodeCertificateNotFoundFault for service response error code
  28. // "CertificateNotFound".
  29. //
  30. // CertificateIdentifier doesn't refer to an existing certificate.
  31. ErrCodeCertificateNotFoundFault = "CertificateNotFound"
  32. // ErrCodeDBClusterAlreadyExistsFault for service response error code
  33. // "DBClusterAlreadyExistsFault".
  34. //
  35. // The user already has a DB cluster with the given identifier.
  36. ErrCodeDBClusterAlreadyExistsFault = "DBClusterAlreadyExistsFault"
  37. // ErrCodeDBClusterBacktrackNotFoundFault for service response error code
  38. // "DBClusterBacktrackNotFoundFault".
  39. //
  40. // BacktrackIdentifier doesn't refer to an existing backtrack.
  41. ErrCodeDBClusterBacktrackNotFoundFault = "DBClusterBacktrackNotFoundFault"
  42. // ErrCodeDBClusterEndpointAlreadyExistsFault for service response error code
  43. // "DBClusterEndpointAlreadyExistsFault".
  44. //
  45. // The specified custom endpoint can't be created because it already exists.
  46. ErrCodeDBClusterEndpointAlreadyExistsFault = "DBClusterEndpointAlreadyExistsFault"
  47. // ErrCodeDBClusterEndpointNotFoundFault for service response error code
  48. // "DBClusterEndpointNotFoundFault".
  49. //
  50. // The specified custom endpoint doesn't exist.
  51. ErrCodeDBClusterEndpointNotFoundFault = "DBClusterEndpointNotFoundFault"
  52. // ErrCodeDBClusterEndpointQuotaExceededFault for service response error code
  53. // "DBClusterEndpointQuotaExceededFault".
  54. //
  55. // The cluster already has the maximum number of custom endpoints.
  56. ErrCodeDBClusterEndpointQuotaExceededFault = "DBClusterEndpointQuotaExceededFault"
  57. // ErrCodeDBClusterNotFoundFault for service response error code
  58. // "DBClusterNotFoundFault".
  59. //
  60. // DBClusterIdentifier doesn't refer to an existing DB cluster.
  61. ErrCodeDBClusterNotFoundFault = "DBClusterNotFoundFault"
  62. // ErrCodeDBClusterParameterGroupNotFoundFault for service response error code
  63. // "DBClusterParameterGroupNotFound".
  64. //
  65. // DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter
  66. // group.
  67. ErrCodeDBClusterParameterGroupNotFoundFault = "DBClusterParameterGroupNotFound"
  68. // ErrCodeDBClusterQuotaExceededFault for service response error code
  69. // "DBClusterQuotaExceededFault".
  70. //
  71. // The user attempted to create a new DB cluster and the user has already reached
  72. // the maximum allowed DB cluster quota.
  73. ErrCodeDBClusterQuotaExceededFault = "DBClusterQuotaExceededFault"
  74. // ErrCodeDBClusterRoleAlreadyExistsFault for service response error code
  75. // "DBClusterRoleAlreadyExists".
  76. //
  77. // The specified IAM role Amazon Resource Name (ARN) is already associated with
  78. // the specified DB cluster.
  79. ErrCodeDBClusterRoleAlreadyExistsFault = "DBClusterRoleAlreadyExists"
  80. // ErrCodeDBClusterRoleNotFoundFault for service response error code
  81. // "DBClusterRoleNotFound".
  82. //
  83. // The specified IAM role Amazon Resource Name (ARN) isn't associated with the
  84. // specified DB cluster.
  85. ErrCodeDBClusterRoleNotFoundFault = "DBClusterRoleNotFound"
  86. // ErrCodeDBClusterRoleQuotaExceededFault for service response error code
  87. // "DBClusterRoleQuotaExceeded".
  88. //
  89. // You have exceeded the maximum number of IAM roles that can be associated
  90. // with the specified DB cluster.
  91. ErrCodeDBClusterRoleQuotaExceededFault = "DBClusterRoleQuotaExceeded"
  92. // ErrCodeDBClusterSnapshotAlreadyExistsFault for service response error code
  93. // "DBClusterSnapshotAlreadyExistsFault".
  94. //
  95. // The user already has a DB cluster snapshot with the given identifier.
  96. ErrCodeDBClusterSnapshotAlreadyExistsFault = "DBClusterSnapshotAlreadyExistsFault"
  97. // ErrCodeDBClusterSnapshotNotFoundFault for service response error code
  98. // "DBClusterSnapshotNotFoundFault".
  99. //
  100. // DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.
  101. ErrCodeDBClusterSnapshotNotFoundFault = "DBClusterSnapshotNotFoundFault"
  102. // ErrCodeDBInstanceAlreadyExistsFault for service response error code
  103. // "DBInstanceAlreadyExists".
  104. //
  105. // The user already has a DB instance with the given identifier.
  106. ErrCodeDBInstanceAlreadyExistsFault = "DBInstanceAlreadyExists"
  107. // ErrCodeDBInstanceAutomatedBackupNotFoundFault for service response error code
  108. // "DBInstanceAutomatedBackupNotFound".
  109. //
  110. // No automated backup for this DB instance was found.
  111. ErrCodeDBInstanceAutomatedBackupNotFoundFault = "DBInstanceAutomatedBackupNotFound"
  112. // ErrCodeDBInstanceAutomatedBackupQuotaExceededFault for service response error code
  113. // "DBInstanceAutomatedBackupQuotaExceeded".
  114. //
  115. // The quota for retained automated backups was exceeded. This prevents you
  116. // from retaining any additional automated backups. The retained automated backups
  117. // quota is the same as your DB Instance quota.
  118. ErrCodeDBInstanceAutomatedBackupQuotaExceededFault = "DBInstanceAutomatedBackupQuotaExceeded"
  119. // ErrCodeDBInstanceNotFoundFault for service response error code
  120. // "DBInstanceNotFound".
  121. //
  122. // DBInstanceIdentifier doesn't refer to an existing DB instance.
  123. ErrCodeDBInstanceNotFoundFault = "DBInstanceNotFound"
  124. // ErrCodeDBLogFileNotFoundFault for service response error code
  125. // "DBLogFileNotFoundFault".
  126. //
  127. // LogFileName doesn't refer to an existing DB log file.
  128. ErrCodeDBLogFileNotFoundFault = "DBLogFileNotFoundFault"
  129. // ErrCodeDBParameterGroupAlreadyExistsFault for service response error code
  130. // "DBParameterGroupAlreadyExists".
  131. //
  132. // A DB parameter group with the same name exists.
  133. ErrCodeDBParameterGroupAlreadyExistsFault = "DBParameterGroupAlreadyExists"
  134. // ErrCodeDBParameterGroupNotFoundFault for service response error code
  135. // "DBParameterGroupNotFound".
  136. //
  137. // DBParameterGroupName doesn't refer to an existing DB parameter group.
  138. ErrCodeDBParameterGroupNotFoundFault = "DBParameterGroupNotFound"
  139. // ErrCodeDBParameterGroupQuotaExceededFault for service response error code
  140. // "DBParameterGroupQuotaExceeded".
  141. //
  142. // The request would result in the user exceeding the allowed number of DB parameter
  143. // groups.
  144. ErrCodeDBParameterGroupQuotaExceededFault = "DBParameterGroupQuotaExceeded"
  145. // ErrCodeDBSecurityGroupAlreadyExistsFault for service response error code
  146. // "DBSecurityGroupAlreadyExists".
  147. //
  148. // A DB security group with the name specified in DBSecurityGroupName already
  149. // exists.
  150. ErrCodeDBSecurityGroupAlreadyExistsFault = "DBSecurityGroupAlreadyExists"
  151. // ErrCodeDBSecurityGroupNotFoundFault for service response error code
  152. // "DBSecurityGroupNotFound".
  153. //
  154. // DBSecurityGroupName doesn't refer to an existing DB security group.
  155. ErrCodeDBSecurityGroupNotFoundFault = "DBSecurityGroupNotFound"
  156. // ErrCodeDBSecurityGroupNotSupportedFault for service response error code
  157. // "DBSecurityGroupNotSupported".
  158. //
  159. // A DB security group isn't allowed for this action.
  160. ErrCodeDBSecurityGroupNotSupportedFault = "DBSecurityGroupNotSupported"
  161. // ErrCodeDBSecurityGroupQuotaExceededFault for service response error code
  162. // "QuotaExceeded.DBSecurityGroup".
  163. //
  164. // The request would result in the user exceeding the allowed number of DB security
  165. // groups.
  166. ErrCodeDBSecurityGroupQuotaExceededFault = "QuotaExceeded.DBSecurityGroup"
  167. // ErrCodeDBSnapshotAlreadyExistsFault for service response error code
  168. // "DBSnapshotAlreadyExists".
  169. //
  170. // DBSnapshotIdentifier is already used by an existing snapshot.
  171. ErrCodeDBSnapshotAlreadyExistsFault = "DBSnapshotAlreadyExists"
  172. // ErrCodeDBSnapshotNotFoundFault for service response error code
  173. // "DBSnapshotNotFound".
  174. //
  175. // DBSnapshotIdentifier doesn't refer to an existing DB snapshot.
  176. ErrCodeDBSnapshotNotFoundFault = "DBSnapshotNotFound"
  177. // ErrCodeDBSubnetGroupAlreadyExistsFault for service response error code
  178. // "DBSubnetGroupAlreadyExists".
  179. //
  180. // DBSubnetGroupName is already used by an existing DB subnet group.
  181. ErrCodeDBSubnetGroupAlreadyExistsFault = "DBSubnetGroupAlreadyExists"
  182. // ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs for service response error code
  183. // "DBSubnetGroupDoesNotCoverEnoughAZs".
  184. //
  185. // Subnets in the DB subnet group should cover at least two Availability Zones
  186. // unless there is only one Availability Zone.
  187. ErrCodeDBSubnetGroupDoesNotCoverEnoughAZs = "DBSubnetGroupDoesNotCoverEnoughAZs"
  188. // ErrCodeDBSubnetGroupNotAllowedFault for service response error code
  189. // "DBSubnetGroupNotAllowedFault".
  190. //
  191. // The DBSubnetGroup shouldn't be specified while creating read replicas that
  192. // lie in the same region as the source instance.
  193. ErrCodeDBSubnetGroupNotAllowedFault = "DBSubnetGroupNotAllowedFault"
  194. // ErrCodeDBSubnetGroupNotFoundFault for service response error code
  195. // "DBSubnetGroupNotFoundFault".
  196. //
  197. // DBSubnetGroupName doesn't refer to an existing DB subnet group.
  198. ErrCodeDBSubnetGroupNotFoundFault = "DBSubnetGroupNotFoundFault"
  199. // ErrCodeDBSubnetGroupQuotaExceededFault for service response error code
  200. // "DBSubnetGroupQuotaExceeded".
  201. //
  202. // The request would result in the user exceeding the allowed number of DB subnet
  203. // groups.
  204. ErrCodeDBSubnetGroupQuotaExceededFault = "DBSubnetGroupQuotaExceeded"
  205. // ErrCodeDBSubnetQuotaExceededFault for service response error code
  206. // "DBSubnetQuotaExceededFault".
  207. //
  208. // The request would result in the user exceeding the allowed number of subnets
  209. // in a DB subnet groups.
  210. ErrCodeDBSubnetQuotaExceededFault = "DBSubnetQuotaExceededFault"
  211. // ErrCodeDBUpgradeDependencyFailureFault for service response error code
  212. // "DBUpgradeDependencyFailure".
  213. //
  214. // The DB upgrade failed because a resource the DB depends on can't be modified.
  215. ErrCodeDBUpgradeDependencyFailureFault = "DBUpgradeDependencyFailure"
  216. // ErrCodeDomainNotFoundFault for service response error code
  217. // "DomainNotFoundFault".
  218. //
  219. // Domain doesn't refer to an existing Active Directory domain.
  220. ErrCodeDomainNotFoundFault = "DomainNotFoundFault"
  221. // ErrCodeEventSubscriptionQuotaExceededFault for service response error code
  222. // "EventSubscriptionQuotaExceeded".
  223. //
  224. // You have reached the maximum number of event subscriptions.
  225. ErrCodeEventSubscriptionQuotaExceededFault = "EventSubscriptionQuotaExceeded"
  226. // ErrCodeGlobalClusterAlreadyExistsFault for service response error code
  227. // "GlobalClusterAlreadyExistsFault".
  228. ErrCodeGlobalClusterAlreadyExistsFault = "GlobalClusterAlreadyExistsFault"
  229. // ErrCodeGlobalClusterNotFoundFault for service response error code
  230. // "GlobalClusterNotFoundFault".
  231. ErrCodeGlobalClusterNotFoundFault = "GlobalClusterNotFoundFault"
  232. // ErrCodeGlobalClusterQuotaExceededFault for service response error code
  233. // "GlobalClusterQuotaExceededFault".
  234. ErrCodeGlobalClusterQuotaExceededFault = "GlobalClusterQuotaExceededFault"
  235. // ErrCodeInstanceQuotaExceededFault for service response error code
  236. // "InstanceQuotaExceeded".
  237. //
  238. // The request would result in the user exceeding the allowed number of DB instances.
  239. ErrCodeInstanceQuotaExceededFault = "InstanceQuotaExceeded"
  240. // ErrCodeInsufficientDBClusterCapacityFault for service response error code
  241. // "InsufficientDBClusterCapacityFault".
  242. //
  243. // The DB cluster doesn't have enough capacity for the current operation.
  244. ErrCodeInsufficientDBClusterCapacityFault = "InsufficientDBClusterCapacityFault"
  245. // ErrCodeInsufficientDBInstanceCapacityFault for service response error code
  246. // "InsufficientDBInstanceCapacity".
  247. //
  248. // The specified DB instance class isn't available in the specified Availability
  249. // Zone.
  250. ErrCodeInsufficientDBInstanceCapacityFault = "InsufficientDBInstanceCapacity"
  251. // ErrCodeInsufficientStorageClusterCapacityFault for service response error code
  252. // "InsufficientStorageClusterCapacity".
  253. //
  254. // There is insufficient storage available for the current action. You might
  255. // be able to resolve this error by updating your subnet group to use different
  256. // Availability Zones that have more storage available.
  257. ErrCodeInsufficientStorageClusterCapacityFault = "InsufficientStorageClusterCapacity"
  258. // ErrCodeInvalidDBClusterCapacityFault for service response error code
  259. // "InvalidDBClusterCapacityFault".
  260. //
  261. // Capacity isn't a valid Aurora Serverless DB cluster capacity. Valid capacity
  262. // values are 2, 4, 8, 16, 32, 64, 128, and 256.
  263. ErrCodeInvalidDBClusterCapacityFault = "InvalidDBClusterCapacityFault"
  264. // ErrCodeInvalidDBClusterEndpointStateFault for service response error code
  265. // "InvalidDBClusterEndpointStateFault".
  266. //
  267. // The requested operation can't be performed on the endpoint while the endpoint
  268. // is in this state.
  269. ErrCodeInvalidDBClusterEndpointStateFault = "InvalidDBClusterEndpointStateFault"
  270. // ErrCodeInvalidDBClusterSnapshotStateFault for service response error code
  271. // "InvalidDBClusterSnapshotStateFault".
  272. //
  273. // The supplied value isn't a valid DB cluster snapshot state.
  274. ErrCodeInvalidDBClusterSnapshotStateFault = "InvalidDBClusterSnapshotStateFault"
  275. // ErrCodeInvalidDBClusterStateFault for service response error code
  276. // "InvalidDBClusterStateFault".
  277. //
  278. // The requested operation can't be performed while the cluster is in this state.
  279. ErrCodeInvalidDBClusterStateFault = "InvalidDBClusterStateFault"
  280. // ErrCodeInvalidDBInstanceAutomatedBackupStateFault for service response error code
  281. // "InvalidDBInstanceAutomatedBackupState".
  282. //
  283. // The automated backup is in an invalid state. For example, this automated
  284. // backup is associated with an active instance.
  285. ErrCodeInvalidDBInstanceAutomatedBackupStateFault = "InvalidDBInstanceAutomatedBackupState"
  286. // ErrCodeInvalidDBInstanceStateFault for service response error code
  287. // "InvalidDBInstanceState".
  288. //
  289. // The DB instance isn't in a valid state.
  290. ErrCodeInvalidDBInstanceStateFault = "InvalidDBInstanceState"
  291. // ErrCodeInvalidDBParameterGroupStateFault for service response error code
  292. // "InvalidDBParameterGroupState".
  293. //
  294. // The DB parameter group is in use or is in an invalid state. If you are attempting
  295. // to delete the parameter group, you can't delete it when the parameter group
  296. // is in this state.
  297. ErrCodeInvalidDBParameterGroupStateFault = "InvalidDBParameterGroupState"
  298. // ErrCodeInvalidDBSecurityGroupStateFault for service response error code
  299. // "InvalidDBSecurityGroupState".
  300. //
  301. // The state of the DB security group doesn't allow deletion.
  302. ErrCodeInvalidDBSecurityGroupStateFault = "InvalidDBSecurityGroupState"
  303. // ErrCodeInvalidDBSnapshotStateFault for service response error code
  304. // "InvalidDBSnapshotState".
  305. //
  306. // The state of the DB snapshot doesn't allow deletion.
  307. ErrCodeInvalidDBSnapshotStateFault = "InvalidDBSnapshotState"
  308. // ErrCodeInvalidDBSubnetGroupFault for service response error code
  309. // "InvalidDBSubnetGroupFault".
  310. //
  311. // The DBSubnetGroup doesn't belong to the same VPC as that of an existing cross-region
  312. // read replica of the same source instance.
  313. ErrCodeInvalidDBSubnetGroupFault = "InvalidDBSubnetGroupFault"
  314. // ErrCodeInvalidDBSubnetGroupStateFault for service response error code
  315. // "InvalidDBSubnetGroupStateFault".
  316. //
  317. // The DB subnet group cannot be deleted because it's in use.
  318. ErrCodeInvalidDBSubnetGroupStateFault = "InvalidDBSubnetGroupStateFault"
  319. // ErrCodeInvalidDBSubnetStateFault for service response error code
  320. // "InvalidDBSubnetStateFault".
  321. //
  322. // The DB subnet isn't in the available state.
  323. ErrCodeInvalidDBSubnetStateFault = "InvalidDBSubnetStateFault"
  324. // ErrCodeInvalidEventSubscriptionStateFault for service response error code
  325. // "InvalidEventSubscriptionState".
  326. //
  327. // This error can occur if someone else is modifying a subscription. You should
  328. // retry the action.
  329. ErrCodeInvalidEventSubscriptionStateFault = "InvalidEventSubscriptionState"
  330. // ErrCodeInvalidGlobalClusterStateFault for service response error code
  331. // "InvalidGlobalClusterStateFault".
  332. ErrCodeInvalidGlobalClusterStateFault = "InvalidGlobalClusterStateFault"
  333. // ErrCodeInvalidOptionGroupStateFault for service response error code
  334. // "InvalidOptionGroupStateFault".
  335. //
  336. // The option group isn't in the available state.
  337. ErrCodeInvalidOptionGroupStateFault = "InvalidOptionGroupStateFault"
  338. // ErrCodeInvalidRestoreFault for service response error code
  339. // "InvalidRestoreFault".
  340. //
  341. // Cannot restore from VPC backup to non-VPC DB instance.
  342. ErrCodeInvalidRestoreFault = "InvalidRestoreFault"
  343. // ErrCodeInvalidS3BucketFault for service response error code
  344. // "InvalidS3BucketFault".
  345. //
  346. // The specified Amazon S3 bucket name can't be found or Amazon RDS isn't authorized
  347. // to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and
  348. // S3IngestionRoleArn values and try again.
  349. ErrCodeInvalidS3BucketFault = "InvalidS3BucketFault"
  350. // ErrCodeInvalidSubnet for service response error code
  351. // "InvalidSubnet".
  352. //
  353. // The requested subnet is invalid, or multiple subnets were requested that
  354. // are not all in a common VPC.
  355. ErrCodeInvalidSubnet = "InvalidSubnet"
  356. // ErrCodeInvalidVPCNetworkStateFault for service response error code
  357. // "InvalidVPCNetworkStateFault".
  358. //
  359. // The DB subnet group doesn't cover all Availability Zones after it's created
  360. // because of users' change.
  361. ErrCodeInvalidVPCNetworkStateFault = "InvalidVPCNetworkStateFault"
  362. // ErrCodeKMSKeyNotAccessibleFault for service response error code
  363. // "KMSKeyNotAccessibleFault".
  364. //
  365. // An error occurred accessing an AWS KMS key.
  366. ErrCodeKMSKeyNotAccessibleFault = "KMSKeyNotAccessibleFault"
  367. // ErrCodeOptionGroupAlreadyExistsFault for service response error code
  368. // "OptionGroupAlreadyExistsFault".
  369. //
  370. // The option group you are trying to create already exists.
  371. ErrCodeOptionGroupAlreadyExistsFault = "OptionGroupAlreadyExistsFault"
  372. // ErrCodeOptionGroupNotFoundFault for service response error code
  373. // "OptionGroupNotFoundFault".
  374. //
  375. // The specified option group could not be found.
  376. ErrCodeOptionGroupNotFoundFault = "OptionGroupNotFoundFault"
  377. // ErrCodeOptionGroupQuotaExceededFault for service response error code
  378. // "OptionGroupQuotaExceededFault".
  379. //
  380. // The quota of 20 option groups was exceeded for this AWS account.
  381. ErrCodeOptionGroupQuotaExceededFault = "OptionGroupQuotaExceededFault"
  382. // ErrCodePointInTimeRestoreNotEnabledFault for service response error code
  383. // "PointInTimeRestoreNotEnabled".
  384. //
  385. // SourceDBInstanceIdentifier refers to a DB instance with BackupRetentionPeriod
  386. // equal to 0.
  387. ErrCodePointInTimeRestoreNotEnabledFault = "PointInTimeRestoreNotEnabled"
  388. // ErrCodeProvisionedIopsNotAvailableInAZFault for service response error code
  389. // "ProvisionedIopsNotAvailableInAZFault".
  390. //
  391. // Provisioned IOPS not available in the specified Availability Zone.
  392. ErrCodeProvisionedIopsNotAvailableInAZFault = "ProvisionedIopsNotAvailableInAZFault"
  393. // ErrCodeReservedDBInstanceAlreadyExistsFault for service response error code
  394. // "ReservedDBInstanceAlreadyExists".
  395. //
  396. // User already has a reservation with the given identifier.
  397. ErrCodeReservedDBInstanceAlreadyExistsFault = "ReservedDBInstanceAlreadyExists"
  398. // ErrCodeReservedDBInstanceNotFoundFault for service response error code
  399. // "ReservedDBInstanceNotFound".
  400. //
  401. // The specified reserved DB Instance not found.
  402. ErrCodeReservedDBInstanceNotFoundFault = "ReservedDBInstanceNotFound"
  403. // ErrCodeReservedDBInstanceQuotaExceededFault for service response error code
  404. // "ReservedDBInstanceQuotaExceeded".
  405. //
  406. // Request would exceed the user's DB Instance quota.
  407. ErrCodeReservedDBInstanceQuotaExceededFault = "ReservedDBInstanceQuotaExceeded"
  408. // ErrCodeReservedDBInstancesOfferingNotFoundFault for service response error code
  409. // "ReservedDBInstancesOfferingNotFound".
  410. //
  411. // Specified offering does not exist.
  412. ErrCodeReservedDBInstancesOfferingNotFoundFault = "ReservedDBInstancesOfferingNotFound"
  413. // ErrCodeResourceNotFoundFault for service response error code
  414. // "ResourceNotFoundFault".
  415. //
  416. // The specified resource ID was not found.
  417. ErrCodeResourceNotFoundFault = "ResourceNotFoundFault"
  418. // ErrCodeSNSInvalidTopicFault for service response error code
  419. // "SNSInvalidTopic".
  420. //
  421. // SNS has responded that there is a problem with the SND topic specified.
  422. ErrCodeSNSInvalidTopicFault = "SNSInvalidTopic"
  423. // ErrCodeSNSNoAuthorizationFault for service response error code
  424. // "SNSNoAuthorization".
  425. //
  426. // You do not have permission to publish to the SNS topic ARN.
  427. ErrCodeSNSNoAuthorizationFault = "SNSNoAuthorization"
  428. // ErrCodeSNSTopicArnNotFoundFault for service response error code
  429. // "SNSTopicArnNotFound".
  430. //
  431. // The SNS topic ARN does not exist.
  432. ErrCodeSNSTopicArnNotFoundFault = "SNSTopicArnNotFound"
  433. // ErrCodeSharedSnapshotQuotaExceededFault for service response error code
  434. // "SharedSnapshotQuotaExceeded".
  435. //
  436. // You have exceeded the maximum number of accounts that you can share a manual
  437. // DB snapshot with.
  438. ErrCodeSharedSnapshotQuotaExceededFault = "SharedSnapshotQuotaExceeded"
  439. // ErrCodeSnapshotQuotaExceededFault for service response error code
  440. // "SnapshotQuotaExceeded".
  441. //
  442. // The request would result in the user exceeding the allowed number of DB snapshots.
  443. ErrCodeSnapshotQuotaExceededFault = "SnapshotQuotaExceeded"
  444. // ErrCodeSourceNotFoundFault for service response error code
  445. // "SourceNotFound".
  446. //
  447. // The requested source could not be found.
  448. ErrCodeSourceNotFoundFault = "SourceNotFound"
  449. // ErrCodeStorageQuotaExceededFault for service response error code
  450. // "StorageQuotaExceeded".
  451. //
  452. // The request would result in the user exceeding the allowed amount of storage
  453. // available across all DB instances.
  454. ErrCodeStorageQuotaExceededFault = "StorageQuotaExceeded"
  455. // ErrCodeStorageTypeNotSupportedFault for service response error code
  456. // "StorageTypeNotSupported".
  457. //
  458. // Storage of the StorageType specified can't be associated with the DB instance.
  459. ErrCodeStorageTypeNotSupportedFault = "StorageTypeNotSupported"
  460. // ErrCodeSubnetAlreadyInUse for service response error code
  461. // "SubnetAlreadyInUse".
  462. //
  463. // The DB subnet is already in use in the Availability Zone.
  464. ErrCodeSubnetAlreadyInUse = "SubnetAlreadyInUse"
  465. // ErrCodeSubscriptionAlreadyExistFault for service response error code
  466. // "SubscriptionAlreadyExist".
  467. //
  468. // The supplied subscription name already exists.
  469. ErrCodeSubscriptionAlreadyExistFault = "SubscriptionAlreadyExist"
  470. // ErrCodeSubscriptionCategoryNotFoundFault for service response error code
  471. // "SubscriptionCategoryNotFound".
  472. //
  473. // The supplied category does not exist.
  474. ErrCodeSubscriptionCategoryNotFoundFault = "SubscriptionCategoryNotFound"
  475. // ErrCodeSubscriptionNotFoundFault for service response error code
  476. // "SubscriptionNotFound".
  477. //
  478. // The subscription name does not exist.
  479. ErrCodeSubscriptionNotFoundFault = "SubscriptionNotFound"
  480. )