errors.go 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
  2. package appsync
  3. const (
  4. // ErrCodeApiKeyLimitExceededException for service response error code
  5. // "ApiKeyLimitExceededException".
  6. //
  7. // The API key exceeded a limit. Try your request again.
  8. ErrCodeApiKeyLimitExceededException = "ApiKeyLimitExceededException"
  9. // ErrCodeApiKeyValidityOutOfBoundsException for service response error code
  10. // "ApiKeyValidityOutOfBoundsException".
  11. //
  12. // The API key expiration must be set to a value between 1 and 365 days from
  13. // creation (for CreateApiKey) or from update (for UpdateApiKey).
  14. ErrCodeApiKeyValidityOutOfBoundsException = "ApiKeyValidityOutOfBoundsException"
  15. // ErrCodeApiLimitExceededException for service response error code
  16. // "ApiLimitExceededException".
  17. //
  18. // The GraphQL API exceeded a limit. Try your request again.
  19. ErrCodeApiLimitExceededException = "ApiLimitExceededException"
  20. // ErrCodeBadRequestException for service response error code
  21. // "BadRequestException".
  22. //
  23. // The request is not well formed. For example, a value is invalid or a required
  24. // field is missing. Check the field values, and then try again.
  25. ErrCodeBadRequestException = "BadRequestException"
  26. // ErrCodeConcurrentModificationException for service response error code
  27. // "ConcurrentModificationException".
  28. //
  29. // Another modification is in progress at this time and it must complete before
  30. // you can make your change.
  31. ErrCodeConcurrentModificationException = "ConcurrentModificationException"
  32. // ErrCodeGraphQLSchemaException for service response error code
  33. // "GraphQLSchemaException".
  34. //
  35. // The GraphQL schema is not valid.
  36. ErrCodeGraphQLSchemaException = "GraphQLSchemaException"
  37. // ErrCodeInternalFailureException for service response error code
  38. // "InternalFailureException".
  39. //
  40. // An internal AWS AppSync error occurred. Try your request again.
  41. ErrCodeInternalFailureException = "InternalFailureException"
  42. // ErrCodeLimitExceededException for service response error code
  43. // "LimitExceededException".
  44. //
  45. // The request exceeded a limit. Try your request again.
  46. ErrCodeLimitExceededException = "LimitExceededException"
  47. // ErrCodeNotFoundException for service response error code
  48. // "NotFoundException".
  49. //
  50. // The resource specified in the request was not found. Check the resource,
  51. // and then try again.
  52. ErrCodeNotFoundException = "NotFoundException"
  53. // ErrCodeUnauthorizedException for service response error code
  54. // "UnauthorizedException".
  55. //
  56. // You are not authorized to perform this operation.
  57. ErrCodeUnauthorizedException = "UnauthorizedException"
  58. )