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
|
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package chimesdkmediapipelines
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeBadRequestException for service response error code
// "BadRequestException".
//
// The input parameters don't match the service's restrictions.
ErrCodeBadRequestException = "BadRequestException"
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// The request could not be processed because of conflict in the current state
// of the resource.
ErrCodeConflictException = "ConflictException"
// ErrCodeForbiddenException for service response error code
// "ForbiddenException".
//
// The client is permanently forbidden from making the request.
ErrCodeForbiddenException = "ForbiddenException"
// ErrCodeNotFoundException for service response error code
// "NotFoundException".
//
// One or more of the resources in the request does not exist in the system.
ErrCodeNotFoundException = "NotFoundException"
// ErrCodeResourceLimitExceededException for service response error code
// "ResourceLimitExceededException".
//
// The request exceeds the resource limit.
ErrCodeResourceLimitExceededException = "ResourceLimitExceededException"
// ErrCodeServiceFailureException for service response error code
// "ServiceFailureException".
//
// The service encountered an unexpected error.
ErrCodeServiceFailureException = "ServiceFailureException"
// ErrCodeServiceUnavailableException for service response error code
// "ServiceUnavailableException".
//
// The service is currently unavailable.
ErrCodeServiceUnavailableException = "ServiceUnavailableException"
// ErrCodeThrottledClientException for service response error code
// "ThrottledClientException".
//
// The client exceeded its request rate limit.
ErrCodeThrottledClientException = "ThrottledClientException"
// ErrCodeUnauthorizedClientException for service response error code
// "UnauthorizedClientException".
//
// The client is not currently authorized to make the request.
ErrCodeUnauthorizedClientException = "UnauthorizedClientException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"BadRequestException": newErrorBadRequestException,
"ConflictException": newErrorConflictException,
"ForbiddenException": newErrorForbiddenException,
"NotFoundException": newErrorNotFoundException,
"ResourceLimitExceededException": newErrorResourceLimitExceededException,
"ServiceFailureException": newErrorServiceFailureException,
"ServiceUnavailableException": newErrorServiceUnavailableException,
"ThrottledClientException": newErrorThrottledClientException,
"UnauthorizedClientException": newErrorUnauthorizedClientException,
}
|