-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
errors.go
114 lines (98 loc) · 4.82 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package kendra
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeAccessDeniedException for service response error code
// "AccessDeniedException".
//
// You don't have sufficient access to perform this action. Please ensure you
// have the required permission policies and user accounts and try again.
ErrCodeAccessDeniedException = "AccessDeniedException"
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// A conflict occurred with the request. Please fix any inconsistences with
// your resources and try again.
ErrCodeConflictException = "ConflictException"
// ErrCodeFeaturedResultsConflictException for service response error code
// "FeaturedResultsConflictException".
//
// An error message with a list of conflicting queries used across different
// sets of featured results. This occurred with the request for a new featured
// results set. Check that the queries you specified for featured results are
// unique per featured results set for each index.
ErrCodeFeaturedResultsConflictException = "FeaturedResultsConflictException"
// ErrCodeInternalServerException for service response error code
// "InternalServerException".
//
// An issue occurred with the internal server used for your Amazon Kendra service.
// Please wait a few minutes and try again, or contact Support (http://aws.amazon.com/contact-us/)
// for help.
ErrCodeInternalServerException = "InternalServerException"
// ErrCodeInvalidRequestException for service response error code
// "InvalidRequestException".
//
// The input to the request is not valid. Please provide the correct input and
// try again.
ErrCodeInvalidRequestException = "InvalidRequestException"
// ErrCodeResourceAlreadyExistException for service response error code
// "ResourceAlreadyExistException".
//
// The resource you want to use already exists. Please check you have provided
// the correct resource and try again.
ErrCodeResourceAlreadyExistException = "ResourceAlreadyExistException"
// ErrCodeResourceInUseException for service response error code
// "ResourceInUseException".
//
// The resource you want to use is currently in use. Please check you have provided
// the correct resource and try again.
ErrCodeResourceInUseException = "ResourceInUseException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// The resource you want to use doesn’t exist. Please check you have provided
// the correct resource and try again.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeResourceUnavailableException for service response error code
// "ResourceUnavailableException".
//
// The resource you want to use isn't available. Please check you have provided
// the correct resource and try again.
ErrCodeResourceUnavailableException = "ResourceUnavailableException"
// ErrCodeServiceQuotaExceededException for service response error code
// "ServiceQuotaExceededException".
//
// You have exceeded the set limits for your Amazon Kendra service. Please see
// Quotas (https://docs.aws.amazon.com/kendra/latest/dg/quotas.html) for more
// information, or contact Support (http://aws.amazon.com/contact-us/) to inquire
// about an increase of limits.
ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException"
// ErrCodeThrottlingException for service response error code
// "ThrottlingException".
//
// The request was denied due to request throttling. Please reduce the number
// of requests and try again.
ErrCodeThrottlingException = "ThrottlingException"
// ErrCodeValidationException for service response error code
// "ValidationException".
//
// The input fails to satisfy the constraints set by the Amazon Kendra service.
// Please provide the correct input and try again.
ErrCodeValidationException = "ValidationException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"AccessDeniedException": newErrorAccessDeniedException,
"ConflictException": newErrorConflictException,
"FeaturedResultsConflictException": newErrorFeaturedResultsConflictException,
"InternalServerException": newErrorInternalServerException,
"InvalidRequestException": newErrorInvalidRequestException,
"ResourceAlreadyExistException": newErrorResourceAlreadyExistException,
"ResourceInUseException": newErrorResourceInUseException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
"ResourceUnavailableException": newErrorResourceUnavailableException,
"ServiceQuotaExceededException": newErrorServiceQuotaExceededException,
"ThrottlingException": newErrorThrottlingException,
"ValidationException": newErrorValidationException,
}