forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
45 lines (37 loc) · 1.69 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package applicationdiscoveryservice
const (
// ErrCodeAuthorizationErrorException for service response error code
// "AuthorizationErrorException".
//
// The AWS user account does not have permission to perform the action. Check
// the IAM policy associated with this account.
ErrCodeAuthorizationErrorException = "AuthorizationErrorException"
// ErrCodeInvalidParameterException for service response error code
// "InvalidParameterException".
//
// One or more parameters are not valid. Verify the parameters and try again.
ErrCodeInvalidParameterException = "InvalidParameterException"
// ErrCodeInvalidParameterValueException for service response error code
// "InvalidParameterValueException".
//
// The value of one or more parameters are either invalid or out of range. Verify
// the parameter values and try again.
ErrCodeInvalidParameterValueException = "InvalidParameterValueException"
// ErrCodeOperationNotPermittedException for service response error code
// "OperationNotPermittedException".
//
// This operation is not permitted.
ErrCodeOperationNotPermittedException = "OperationNotPermittedException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// The specified configuration ID was not located. Verify the configuration
// ID and try again.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServerInternalErrorException for service response error code
// "ServerInternalErrorException".
//
// The server experienced an internal error. Try again.
ErrCodeServerInternalErrorException = "ServerInternalErrorException"
)