// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package timestreamquery import ( "github.com/aws/aws-sdk-go/private/protocol" ) const ( // ErrCodeAccessDeniedException for service response error code // "AccessDeniedException". // // You are not authorized to perform this action. ErrCodeAccessDeniedException = "AccessDeniedException" // ErrCodeConflictException for service response error code // "ConflictException". // // Unable to poll results for a cancelled query. ErrCodeConflictException = "ConflictException" // ErrCodeInternalServerException for service response error code // "InternalServerException". // // Timestream was unable to fully process this request because of an internal // server error. ErrCodeInternalServerException = "InternalServerException" // ErrCodeInvalidEndpointException for service response error code // "InvalidEndpointException". // // The requested endpoint was invalid. ErrCodeInvalidEndpointException = "InvalidEndpointException" // ErrCodeQueryExecutionException for service response error code // "QueryExecutionException". // // Timestream was unable to run the query successfully. ErrCodeQueryExecutionException = "QueryExecutionException" // ErrCodeThrottlingException for service response error code // "ThrottlingException". // // The request was denied due to request throttling. ErrCodeThrottlingException = "ThrottlingException" // ErrCodeValidationException for service response error code // "ValidationException". // // Invalid or malformed request. ErrCodeValidationException = "ValidationException" ) var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{ "AccessDeniedException": newErrorAccessDeniedException, "ConflictException": newErrorConflictException, "InternalServerException": newErrorInternalServerException, "InvalidEndpointException": newErrorInvalidEndpointException, "QueryExecutionException": newErrorQueryExecutionException, "ThrottlingException": newErrorThrottlingException, "ValidationException": newErrorValidationException, }