-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
errors.go
74 lines (62 loc) · 2.85 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package appflow
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// There was a conflict when processing the request (for example, a flow with
// the given name already exists within the account. Check for conflicting resource
// names and try again.
ErrCodeConflictException = "ConflictException"
// ErrCodeConnectorAuthenticationException for service response error code
// "ConnectorAuthenticationException".
//
// An error occurred when authenticating with the connector endpoint.
ErrCodeConnectorAuthenticationException = "ConnectorAuthenticationException"
// ErrCodeConnectorServerException for service response error code
// "ConnectorServerException".
//
// An error occurred when retrieving data from the connector endpoint.
ErrCodeConnectorServerException = "ConnectorServerException"
// ErrCodeInternalServerException for service response error code
// "InternalServerException".
//
// An internal service error occurred during the processing of your request.
// Try again later.
ErrCodeInternalServerException = "InternalServerException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// The resource specified in the request (such as the source or destination
// connector profile) is not found.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServiceQuotaExceededException for service response error code
// "ServiceQuotaExceededException".
//
// The request would cause a service quota (such as the number of flows) to
// be exceeded.
ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException"
// ErrCodeUnsupportedOperationException for service response error code
// "UnsupportedOperationException".
//
// The requested operation is not supported for the current flow.
ErrCodeUnsupportedOperationException = "UnsupportedOperationException"
// ErrCodeValidationException for service response error code
// "ValidationException".
//
// The request has invalid or missing parameters.
ErrCodeValidationException = "ValidationException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"ConflictException": newErrorConflictException,
"ConnectorAuthenticationException": newErrorConnectorAuthenticationException,
"ConnectorServerException": newErrorConnectorServerException,
"InternalServerException": newErrorInternalServerException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
"ServiceQuotaExceededException": newErrorServiceQuotaExceededException,
"UnsupportedOperationException": newErrorUnsupportedOperationException,
"ValidationException": newErrorValidationException,
}