forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
36 lines (29 loc) · 1.15 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package mediastore
const (
// ErrCodeContainerInUseException for service response error code
// "ContainerInUseException".
//
// Resource already exists or is being updated.
ErrCodeContainerInUseException = "ContainerInUseException"
// ErrCodeContainerNotFoundException for service response error code
// "ContainerNotFoundException".
//
// Could not perform an operation on a container that does not exist.
ErrCodeContainerNotFoundException = "ContainerNotFoundException"
// ErrCodeInternalServerError for service response error code
// "InternalServerError".
//
// The service is temporarily unavailable.
ErrCodeInternalServerError = "InternalServerError"
// ErrCodeLimitExceededException for service response error code
// "LimitExceededException".
//
// A service limit has been exceeded.
ErrCodeLimitExceededException = "LimitExceededException"
// ErrCodePolicyNotFoundException for service response error code
// "PolicyNotFoundException".
//
// Could not perform an operation on a policy that does not exist.
ErrCodePolicyNotFoundException = "PolicyNotFoundException"
)