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
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package amplifyuibuilder
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeInternalServerException for service response error code
// "InternalServerException".
//
// An internal error has occurred. Please retry your request.
ErrCodeInternalServerException = "InternalServerException"
// ErrCodeInvalidParameterException for service response error code
// "InvalidParameterException".
//
// An invalid or out-of-range value was supplied for the input parameter.
ErrCodeInvalidParameterException = "InvalidParameterException"
// ErrCodeResourceConflictException for service response error code
// "ResourceConflictException".
//
// The resource specified in the request conflicts with an existing resource.
ErrCodeResourceConflictException = "ResourceConflictException"
// ErrCodeResourceNotFoundException for service response error code
// "ResourceNotFoundException".
//
// The requested resource does not exist, or access was denied.
ErrCodeResourceNotFoundException = "ResourceNotFoundException"
// ErrCodeServiceQuotaExceededException for service response error code
// "ServiceQuotaExceededException".
//
// You exceeded your service quota. Service quotas, also referred to as limits,
// are the maximum number of service resources or operations for your Amazon
// Web Services account.
ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException"
// ErrCodeUnauthorizedException for service response error code
// "UnauthorizedException".
//
// You don't have permission to perform this operation.
ErrCodeUnauthorizedException = "UnauthorizedException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"InternalServerException": newErrorInternalServerException,
"InvalidParameterException": newErrorInvalidParameterException,
"ResourceConflictException": newErrorResourceConflictException,
"ResourceNotFoundException": newErrorResourceNotFoundException,
"ServiceQuotaExceededException": newErrorServiceQuotaExceededException,
"UnauthorizedException": newErrorUnauthorizedException,
}
|