forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
33 lines (27 loc) · 1.11 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package directconnect
const (
// ErrCodeClientException for service response error code
// "DirectConnectClientException".
//
// The API was called with invalid parameters. The error message will contain
// additional details about the cause.
ErrCodeClientException = "DirectConnectClientException"
// ErrCodeDuplicateTagKeysException for service response error code
// "DuplicateTagKeysException".
//
// A tag key was specified more than once.
ErrCodeDuplicateTagKeysException = "DuplicateTagKeysException"
// ErrCodeServerException for service response error code
// "DirectConnectServerException".
//
// A server-side error occurred during the API call. The error message will
// contain additional details about the cause.
ErrCodeServerException = "DirectConnectServerException"
// ErrCodeTooManyTagsException for service response error code
// "TooManyTagsException".
//
// You have reached the limit on the number of tags that can be assigned to
// a Direct Connect resource.
ErrCodeTooManyTagsException = "TooManyTagsException"
)