-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
errors.go
138 lines (117 loc) · 5.51 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package elasticbeanstalk
const (
// ErrCodeCodeBuildNotInServiceRegionException for service response error code
// "CodeBuildNotInServiceRegionException".
//
// AWS CodeBuild is not available in the specified region.
ErrCodeCodeBuildNotInServiceRegionException = "CodeBuildNotInServiceRegionException"
// ErrCodeInsufficientPrivilegesException for service response error code
// "InsufficientPrivilegesException".
//
// The specified account does not have sufficient privileges for one or more
// AWS services.
ErrCodeInsufficientPrivilegesException = "InsufficientPrivilegesException"
// ErrCodeInvalidRequestException for service response error code
// "InvalidRequestException".
//
// One or more input parameters is not valid. Please correct the input parameters
// and try the operation again.
ErrCodeInvalidRequestException = "InvalidRequestException"
// ErrCodeManagedActionInvalidStateException for service response error code
// "ManagedActionInvalidStateException".
//
// Cannot modify the managed action in its current state.
ErrCodeManagedActionInvalidStateException = "ManagedActionInvalidStateException"
// ErrCodeOperationInProgressException for service response error code
// "OperationInProgressFailure".
//
// Unable to perform the specified operation because another operation that
// effects an element in this activity is already in progress.
ErrCodeOperationInProgressException = "OperationInProgressFailure"
// ErrCodePlatformVersionStillReferencedException for service response error code
// "PlatformVersionStillReferencedException".
//
// You cannot delete the platform version because there are still environments
// running on it.
ErrCodePlatformVersionStillReferencedException = "PlatformVersionStillReferencedException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// A resource doesn't exist for the specified Amazon Resource Name (ARN).
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeResourceTypeNotSupportedException for service response error code
// "ResourceTypeNotSupportedException".
//
// The type of the specified Amazon Resource Name (ARN) isn't supported for
// this operation.
ErrCodeResourceTypeNotSupportedException = "ResourceTypeNotSupportedException"
// ErrCodeS3LocationNotInServiceRegionException for service response error code
// "S3LocationNotInServiceRegionException".
//
// The specified S3 bucket does not belong to the S3 region in which the service
// is running. The following regions are supported:
//
// * IAD/us-east-1
//
// * PDX/us-west-2
//
// * DUB/eu-west-1
ErrCodeS3LocationNotInServiceRegionException = "S3LocationNotInServiceRegionException"
// ErrCodeS3SubscriptionRequiredException for service response error code
// "S3SubscriptionRequiredException".
//
// The specified account does not have a subscription to Amazon S3.
ErrCodeS3SubscriptionRequiredException = "S3SubscriptionRequiredException"
// ErrCodeServiceException for service response error code
// "ElasticBeanstalkServiceException".
//
// A generic service exception has occurred.
ErrCodeServiceException = "ElasticBeanstalkServiceException"
// ErrCodeSourceBundleDeletionException for service response error code
// "SourceBundleDeletionFailure".
//
// Unable to delete the Amazon S3 source bundle associated with the application
// version. The application version was deleted successfully.
ErrCodeSourceBundleDeletionException = "SourceBundleDeletionFailure"
// ErrCodeTooManyApplicationVersionsException for service response error code
// "TooManyApplicationVersionsException".
//
// The specified account has reached its limit of application versions.
ErrCodeTooManyApplicationVersionsException = "TooManyApplicationVersionsException"
// ErrCodeTooManyApplicationsException for service response error code
// "TooManyApplicationsException".
//
// The specified account has reached its limit of applications.
ErrCodeTooManyApplicationsException = "TooManyApplicationsException"
// ErrCodeTooManyBucketsException for service response error code
// "TooManyBucketsException".
//
// The specified account has reached its limit of Amazon S3 buckets.
ErrCodeTooManyBucketsException = "TooManyBucketsException"
// ErrCodeTooManyConfigurationTemplatesException for service response error code
// "TooManyConfigurationTemplatesException".
//
// The specified account has reached its limit of configuration templates.
ErrCodeTooManyConfigurationTemplatesException = "TooManyConfigurationTemplatesException"
// ErrCodeTooManyEnvironmentsException for service response error code
// "TooManyEnvironmentsException".
//
// The specified account has reached its limit of environments.
ErrCodeTooManyEnvironmentsException = "TooManyEnvironmentsException"
// ErrCodeTooManyPlatformsException for service response error code
// "TooManyPlatformsException".
//
// You have exceeded the maximum number of allowed platforms associated with
// the account.
ErrCodeTooManyPlatformsException = "TooManyPlatformsException"
// ErrCodeTooManyTagsException for service response error code
// "TooManyTagsException".
//
// The number of tags in the resource would exceed the number of tags that each
// resource can have.
//
// To calculate this, the operation considers both the number of tags the resource
// already has and the tags this operation would add if it succeeded.
ErrCodeTooManyTagsException = "TooManyTagsException"
)