forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
233 lines (197 loc) · 9.45 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package cognitoidentityprovider
const (
// ErrCodeAliasExistsException for service response error code
// "AliasExistsException".
//
// This exception is thrown when a user tries to confirm the account with an
// email or phone number that has already been supplied as an alias from a different
// account. This exception tells user that an account with this email or phone
// already exists.
ErrCodeAliasExistsException = "AliasExistsException"
// ErrCodeCodeDeliveryFailureException for service response error code
// "CodeDeliveryFailureException".
//
// This exception is thrown when a verification code fails to deliver successfully.
ErrCodeCodeDeliveryFailureException = "CodeDeliveryFailureException"
// ErrCodeCodeMismatchException for service response error code
// "CodeMismatchException".
//
// This exception is thrown if the provided code does not match what the server
// was expecting.
ErrCodeCodeMismatchException = "CodeMismatchException"
// ErrCodeConcurrentModificationException for service response error code
// "ConcurrentModificationException".
//
// This exception is thrown if two or more modifications are happening concurrently.
ErrCodeConcurrentModificationException = "ConcurrentModificationException"
// ErrCodeDuplicateProviderException for service response error code
// "DuplicateProviderException".
//
// This exception is thrown when the provider is already supported by the user
// pool.
ErrCodeDuplicateProviderException = "DuplicateProviderException"
// ErrCodeExpiredCodeException for service response error code
// "ExpiredCodeException".
//
// This exception is thrown if a code has expired.
ErrCodeExpiredCodeException = "ExpiredCodeException"
// ErrCodeGroupExistsException for service response error code
// "GroupExistsException".
//
// This exception is thrown when Amazon Cognito encounters a group that already
// exists in the user pool.
ErrCodeGroupExistsException = "GroupExistsException"
// ErrCodeInternalErrorException for service response error code
// "InternalErrorException".
//
// This exception is thrown when Amazon Cognito encounters an internal error.
ErrCodeInternalErrorException = "InternalErrorException"
// ErrCodeInvalidEmailRoleAccessPolicyException for service response error code
// "InvalidEmailRoleAccessPolicyException".
//
// This exception is thrown when Amazon Cognito is not allowed to use your email
// identity. HTTP status code: 400.
ErrCodeInvalidEmailRoleAccessPolicyException = "InvalidEmailRoleAccessPolicyException"
// ErrCodeInvalidLambdaResponseException for service response error code
// "InvalidLambdaResponseException".
//
// This exception is thrown when the Amazon Cognito service encounters an invalid
// AWS Lambda response.
ErrCodeInvalidLambdaResponseException = "InvalidLambdaResponseException"
// ErrCodeInvalidOAuthFlowException for service response error code
// "InvalidOAuthFlowException".
//
// This exception is thrown when the specified OAuth flow is invalid.
ErrCodeInvalidOAuthFlowException = "InvalidOAuthFlowException"
// ErrCodeInvalidParameterException for service response error code
// "InvalidParameterException".
//
// This exception is thrown when the Amazon Cognito service encounters an invalid
// parameter.
ErrCodeInvalidParameterException = "InvalidParameterException"
// ErrCodeInvalidPasswordException for service response error code
// "InvalidPasswordException".
//
// This exception is thrown when the Amazon Cognito service encounters an invalid
// password.
ErrCodeInvalidPasswordException = "InvalidPasswordException"
// ErrCodeInvalidSmsRoleAccessPolicyException for service response error code
// "InvalidSmsRoleAccessPolicyException".
//
// This exception is returned when the role provided for SMS configuration does
// not have permission to publish using Amazon SNS.
ErrCodeInvalidSmsRoleAccessPolicyException = "InvalidSmsRoleAccessPolicyException"
// ErrCodeInvalidSmsRoleTrustRelationshipException for service response error code
// "InvalidSmsRoleTrustRelationshipException".
//
// This exception is thrown when the trust relationship is invalid for the role
// provided for SMS configuration. This can happen if you do not trust cognito-idp.amazonaws.com
// or the external ID provided in the role does not match what is provided in
// the SMS configuration for the user pool.
ErrCodeInvalidSmsRoleTrustRelationshipException = "InvalidSmsRoleTrustRelationshipException"
// ErrCodeInvalidUserPoolConfigurationException for service response error code
// "InvalidUserPoolConfigurationException".
//
// This exception is thrown when the user pool configuration is invalid.
ErrCodeInvalidUserPoolConfigurationException = "InvalidUserPoolConfigurationException"
// ErrCodeLimitExceededException for service response error code
// "LimitExceededException".
//
// This exception is thrown when a user exceeds the limit for a requested AWS
// resource.
ErrCodeLimitExceededException = "LimitExceededException"
// ErrCodeMFAMethodNotFoundException for service response error code
// "MFAMethodNotFoundException".
//
// This exception is thrown when Amazon Cognito cannot find a multi-factor authentication
// (MFA) method.
ErrCodeMFAMethodNotFoundException = "MFAMethodNotFoundException"
// ErrCodeNotAuthorizedException for service response error code
// "NotAuthorizedException".
//
// This exception is thrown when a user is not authorized.
ErrCodeNotAuthorizedException = "NotAuthorizedException"
// ErrCodePasswordResetRequiredException for service response error code
// "PasswordResetRequiredException".
//
// This exception is thrown when a password reset is required.
ErrCodePasswordResetRequiredException = "PasswordResetRequiredException"
// ErrCodePreconditionNotMetException for service response error code
// "PreconditionNotMetException".
//
// This exception is thrown when a precondition is not met.
ErrCodePreconditionNotMetException = "PreconditionNotMetException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// This exception is thrown when the Amazon Cognito service cannot find the
// requested resource.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeScopeDoesNotExistException for service response error code
// "ScopeDoesNotExistException".
//
// This exception is thrown when the specified scope does not exist.
ErrCodeScopeDoesNotExistException = "ScopeDoesNotExistException"
// ErrCodeTooManyFailedAttemptsException for service response error code
// "TooManyFailedAttemptsException".
//
// This exception is thrown when the user has made too many failed attempts
// for a given action (e.g., sign in).
ErrCodeTooManyFailedAttemptsException = "TooManyFailedAttemptsException"
// ErrCodeTooManyRequestsException for service response error code
// "TooManyRequestsException".
//
// This exception is thrown when the user has made too many requests for a given
// operation.
ErrCodeTooManyRequestsException = "TooManyRequestsException"
// ErrCodeUnexpectedLambdaException for service response error code
// "UnexpectedLambdaException".
//
// This exception is thrown when the Amazon Cognito service encounters an unexpected
// exception with the AWS Lambda service.
ErrCodeUnexpectedLambdaException = "UnexpectedLambdaException"
// ErrCodeUnsupportedIdentityProviderException for service response error code
// "UnsupportedIdentityProviderException".
//
// This exception is thrown when the specified identifier is not supported.
ErrCodeUnsupportedIdentityProviderException = "UnsupportedIdentityProviderException"
// ErrCodeUnsupportedUserStateException for service response error code
// "UnsupportedUserStateException".
//
// The request failed because the user is in an unsupported state.
ErrCodeUnsupportedUserStateException = "UnsupportedUserStateException"
// ErrCodeUserImportInProgressException for service response error code
// "UserImportInProgressException".
//
// This exception is thrown when you are trying to modify a user pool while
// a user import job is in progress for that pool.
ErrCodeUserImportInProgressException = "UserImportInProgressException"
// ErrCodeUserLambdaValidationException for service response error code
// "UserLambdaValidationException".
//
// This exception is thrown when the Amazon Cognito service encounters a user
// validation exception with the AWS Lambda service.
ErrCodeUserLambdaValidationException = "UserLambdaValidationException"
// ErrCodeUserNotConfirmedException for service response error code
// "UserNotConfirmedException".
//
// This exception is thrown when a user is not confirmed successfully.
ErrCodeUserNotConfirmedException = "UserNotConfirmedException"
// ErrCodeUserNotFoundException for service response error code
// "UserNotFoundException".
//
// This exception is thrown when a user is not found.
ErrCodeUserNotFoundException = "UserNotFoundException"
// ErrCodeUserPoolTaggingException for service response error code
// "UserPoolTaggingException".
//
// This exception is thrown when a user pool tag cannot be set or updated.
ErrCodeUserPoolTaggingException = "UserPoolTaggingException"
// ErrCodeUsernameExistsException for service response error code
// "UsernameExistsException".
//
// This exception is thrown when Amazon Cognito encounters a user name that
// already exists in the user pool.
ErrCodeUsernameExistsException = "UsernameExistsException"
)