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
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package appflow
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeAccessDeniedException for service response error code
// "AccessDeniedException".
//
// AppFlow/Requester has invalid or missing permissions.
ErrCodeAccessDeniedException = "AccessDeniedException"
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// There was a conflict when processing the request (for example, a flow with
// the given name already exists within the account. Check for conflicting resource
// names and try again.
ErrCodeConflictException = "ConflictException"
// ErrCodeConnectorAuthenticationException for service response error code
// "ConnectorAuthenticationException".
//
// An error occurred when authenticating with the connector endpoint.
ErrCodeConnectorAuthenticationException = "ConnectorAuthenticationException"
// ErrCodeConnectorServerException for service response error code
// "ConnectorServerException".
//
// An error occurred when retrieving data from the connector endpoint.
ErrCodeConnectorServerException = "ConnectorServerException"
// ErrCodeInternalServerException for service response error code
// "InternalServerException".
//
// An internal service error occurred during the processing of your request.
// Try again later.
ErrCodeInternalServerException = "InternalServerException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// The resource specified in the request (such as the source or destination
// connector profile) is not found.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServiceQuotaExceededException for service response error code
// "ServiceQuotaExceededException".
//
// The request would cause a service quota (such as the number of flows) to
// be exceeded.
ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException"
// ErrCodeThrottlingException for service response error code
// "ThrottlingException".
//
// API calls have exceeded the maximum allowed API request rate per account
// and per Region.
ErrCodeThrottlingException = "ThrottlingException"
// ErrCodeUnsupportedOperationException for service response error code
// "UnsupportedOperationException".
//
// The requested operation is not supported for the current flow.
ErrCodeUnsupportedOperationException = "UnsupportedOperationException"
// ErrCodeValidationException for service response error code
// "ValidationException".
//
// The request has invalid or missing parameters.
ErrCodeValidationException = "ValidationException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"AccessDeniedException": newErrorAccessDeniedException,
"ConflictException": newErrorConflictException,
"ConnectorAuthenticationException": newErrorConnectorAuthenticationException,
"ConnectorServerException": newErrorConnectorServerException,
"InternalServerException": newErrorInternalServerException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
"ServiceQuotaExceededException": newErrorServiceQuotaExceededException,
"ThrottlingException": newErrorThrottlingException,
"UnsupportedOperationException": newErrorUnsupportedOperationException,
"ValidationException": newErrorValidationException,
}
|