File: //opt/go/pkg/mod/github.com/aws/aws-sdk-go@v1.50.8/service/kafkaconnect/errors.go
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package kafkaconnect
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeBadRequestException for service response error code
// "BadRequestException".
//
// HTTP Status Code 400: Bad request due to incorrect input. Correct your request
// and then retry it.
ErrCodeBadRequestException = "BadRequestException"
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// HTTP Status Code 409: Conflict. A resource with this name already exists.
// Retry your request with another name.
ErrCodeConflictException = "ConflictException"
// ErrCodeForbiddenException for service response error code
// "ForbiddenException".
//
// HTTP Status Code 403: Access forbidden. Correct your credentials and then
// retry your request.
ErrCodeForbiddenException = "ForbiddenException"
// ErrCodeInternalServerErrorException for service response error code
// "InternalServerErrorException".
//
// HTTP Status Code 500: Unexpected internal server error. Retrying your request
// might resolve the issue.
ErrCodeInternalServerErrorException = "InternalServerErrorException"
// ErrCodeNotFoundException for service response error code
// "NotFoundException".
//
// HTTP Status Code 404: Resource not found due to incorrect input. Correct
// your request and then retry it.
ErrCodeNotFoundException = "NotFoundException"
// ErrCodeServiceUnavailableException for service response error code
// "ServiceUnavailableException".
//
// HTTP Status Code 503: Service Unavailable. Retrying your request in some
// time might resolve the issue.
ErrCodeServiceUnavailableException = "ServiceUnavailableException"
// ErrCodeTooManyRequestsException for service response error code
// "TooManyRequestsException".
//
// HTTP Status Code 429: Limit exceeded. Resource limit reached.
ErrCodeTooManyRequestsException = "TooManyRequestsException"
// ErrCodeUnauthorizedException for service response error code
// "UnauthorizedException".
//
// HTTP Status Code 401: Unauthorized request. The provided credentials couldn't
// be validated.
ErrCodeUnauthorizedException = "UnauthorizedException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"BadRequestException": newErrorBadRequestException,
"ConflictException": newErrorConflictException,
"ForbiddenException": newErrorForbiddenException,
"InternalServerErrorException": newErrorInternalServerErrorException,
"NotFoundException": newErrorNotFoundException,
"ServiceUnavailableException": newErrorServiceUnavailableException,
"TooManyRequestsException": newErrorTooManyRequestsException,
"UnauthorizedException": newErrorUnauthorizedException,
}