forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
39 lines (32 loc) · 1.33 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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package datapipeline
const (
// ErrCodeInternalServiceError for service response error code
// "InternalServiceError".
//
// An internal service error occurred.
ErrCodeInternalServiceError = "InternalServiceError"
// ErrCodeInvalidRequestException for service response error code
// "InvalidRequestException".
//
// The request was not valid. Verify that your request was properly formatted,
// that the signature was generated with the correct credentials, and that you
// haven't exceeded any of the service limits for your account.
ErrCodeInvalidRequestException = "InvalidRequestException"
// ErrCodePipelineDeletedException for service response error code
// "PipelineDeletedException".
//
// The specified pipeline has been deleted.
ErrCodePipelineDeletedException = "PipelineDeletedException"
// ErrCodePipelineNotFoundException for service response error code
// "PipelineNotFoundException".
//
// The specified pipeline was not found. Verify that you used the correct user
// and account identifiers.
ErrCodePipelineNotFoundException = "PipelineNotFoundException"
// ErrCodeTaskNotFoundException for service response error code
// "TaskNotFoundException".
//
// The specified task was not found.
ErrCodeTaskNotFoundException = "TaskNotFoundException"
)