forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
64 lines (54 loc) · 2.41 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package migrationhub
const (
// ErrCodeAccessDeniedException for service response error code
// "AccessDeniedException".
//
// Exception raised when the account making the call is not whitelisted or there
// are other authentication errors.
ErrCodeAccessDeniedException = "AccessDeniedException"
// ErrCodeDryRunOperation for service response error code
// "DryRunOperation".
//
// Exception raised to indicate a successfully authorized action when the DryRun
// flag is set to "true".
ErrCodeDryRunOperation = "DryRunOperation"
// ErrCodeInternalServerError for service response error code
// "InternalServerError".
//
// Exception raised when there is an internal, configuration, or dependency
// error encountered.
ErrCodeInternalServerError = "InternalServerError"
// ErrCodeInvalidInputException for service response error code
// "InvalidInputException".
//
// Exception raised when the provided input violates a policy constraint or
// is entered in the wrong format or data type.
ErrCodeInvalidInputException = "InvalidInputException"
// ErrCodePolicyErrorException for service response error code
// "PolicyErrorException".
//
// Exception raised when there are problems accessing ADS (Application Discovery
// Service); most likely due to a misconfigured policy or the ADSCaller role
// is missing or not configured correctly.
ErrCodePolicyErrorException = "PolicyErrorException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// Exception raised when the request references a resource (ADS configuration,
// update stream, migration task, etc.) that does not exist in ADS (Application
// Discovery Service) or in Migration Hub's repository.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServiceUnavailableException for service response error code
// "ServiceUnavailableException".
//
// Exception raised when the service encounters throttled communication with
// upstream dependencies or is overloaded with requests.
ErrCodeServiceUnavailableException = "ServiceUnavailableException"
// ErrCodeUnauthorizedOperation for service response error code
// "UnauthorizedOperation".
//
// Exception raised to indicate a request was not authorized when the DryRun
// flag is set to "true".
ErrCodeUnauthorizedOperation = "UnauthorizedOperation"
)