-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
errors.go
71 lines (61 loc) · 2.57 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package appconfig
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeBadRequestException for service response error code
// "BadRequestException".
//
// The input fails to satisfy the constraints specified by an Amazon Web Services
// service.
ErrCodeBadRequestException = "BadRequestException"
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// The request could not be processed because of conflict in the current state
// of the resource.
ErrCodeConflictException = "ConflictException"
// ErrCodeInternalServerException for service response error code
// "InternalServerException".
//
// There was an internal failure in the AppConfig service.
ErrCodeInternalServerException = "InternalServerException"
// ErrCodePayloadTooLargeException for service response error code
// "PayloadTooLargeException".
//
// The configuration size is too large.
ErrCodePayloadTooLargeException = "PayloadTooLargeException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// The requested resource could not be found.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServiceQuotaExceededException for service response error code
// "ServiceQuotaExceededException".
//
// The number of one more AppConfig resources exceeds the maximum allowed. Verify
// that your environment doesn't exceed the following service quotas:
//
// Applications: 100 max
//
// Deployment strategies: 20 max
//
// Configuration profiles: 100 max per application
//
// Environments: 20 max per application
//
// To resolve this issue, you can delete one or more resources and try again.
// Or, you can request a quota increase. For more information about quotas and
// to request an increase, see Service quotas for AppConfig (https://docs.aws.amazon.com/general/latest/gr/appconfig.html#limits_appconfig)
// in the Amazon Web Services General Reference.
ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"BadRequestException": newErrorBadRequestException,
"ConflictException": newErrorConflictException,
"InternalServerException": newErrorInternalServerException,
"PayloadTooLargeException": newErrorPayloadTooLargeException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
"ServiceQuotaExceededException": newErrorServiceQuotaExceededException,
}