// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package synthetics import ( "github.com/aws/aws-sdk-go/private/protocol" ) const ( // ErrCodeBadRequestException for service response error code // "BadRequestException". // // The request was not valid. ErrCodeBadRequestException = "BadRequestException" // ErrCodeConflictException for service response error code // "ConflictException". // // A conflicting operation is already in progress. ErrCodeConflictException = "ConflictException" // ErrCodeInternalFailureException for service response error code // "InternalFailureException". // // An internal failure occurred. Try the operation again. ErrCodeInternalFailureException = "InternalFailureException" // ErrCodeInternalServerException for service response error code // "InternalServerException". // // An unknown internal error occurred. ErrCodeInternalServerException = "InternalServerException" // ErrCodeNotFoundException for service response error code // "NotFoundException". // // The specified resource was not found. ErrCodeNotFoundException = "NotFoundException" // ErrCodeRequestEntityTooLargeException for service response error code // "RequestEntityTooLargeException". // // One of the input resources is larger than is allowed. ErrCodeRequestEntityTooLargeException = "RequestEntityTooLargeException" // ErrCodeResourceNotFoundException for service response error code // "ResourceNotFoundException". // // One of the specified resources was not found. ErrCodeResourceNotFoundException = "ResourceNotFoundException" // ErrCodeServiceQuotaExceededException for service response error code // "ServiceQuotaExceededException". // // The request exceeded a service quota value. ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException" // ErrCodeTooManyRequestsException for service response error code // "TooManyRequestsException". // // There were too many simultaneous requests. Try the operation again. ErrCodeTooManyRequestsException = "TooManyRequestsException" // ErrCodeValidationException for service response error code // "ValidationException". // // A parameter could not be validated. ErrCodeValidationException = "ValidationException" ) var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{ "BadRequestException": newErrorBadRequestException, "ConflictException": newErrorConflictException, "InternalFailureException": newErrorInternalFailureException, "InternalServerException": newErrorInternalServerException, "NotFoundException": newErrorNotFoundException, "RequestEntityTooLargeException": newErrorRequestEntityTooLargeException, "ResourceNotFoundException": newErrorResourceNotFoundException, "ServiceQuotaExceededException": newErrorServiceQuotaExceededException, "TooManyRequestsException": newErrorTooManyRequestsException, "ValidationException": newErrorValidationException, }