// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package qbusiness import ( "github.com/aws/aws-sdk-go/private/protocol" ) const ( // ErrCodeAccessDeniedException for service response error code // "AccessDeniedException". // // You don't have access to perform this action. Make sure you have the required // permission policies and user accounts and try again. ErrCodeAccessDeniedException = "AccessDeniedException" // ErrCodeConflictException for service response error code // "ConflictException". // // You are trying to perform an action that conflicts with the current status // of your resource. Fix any inconsistences with your resources and try again. ErrCodeConflictException = "ConflictException" // ErrCodeInternalServerException for service response error code // "InternalServerException". // // An issue occurred with the internal server used for your Amazon Q Business // service. Wait some minutes and try again, or contact Support (http://aws.amazon.com/contact-us/) // for help. ErrCodeInternalServerException = "InternalServerException" // ErrCodeLicenseNotFoundException for service response error code // "LicenseNotFoundException". // // You don't have permissions to perform the action because your license is // inactive. Ask your admin to activate your license and try again after your // licence is active. ErrCodeLicenseNotFoundException = "LicenseNotFoundException" // ErrCodeResourceNotFoundException for service response error code // "ResourceNotFoundException". // // The resource you want to use doesn’t exist. Make sure you have provided // the correct resource and try again. ErrCodeResourceNotFoundException = "ResourceNotFoundException" // ErrCodeServiceQuotaExceededException for service response error code // "ServiceQuotaExceededException". // // You have exceeded the set limits for your Amazon Q Business service. ErrCodeServiceQuotaExceededException = "ServiceQuotaExceededException" // ErrCodeThrottlingException for service response error code // "ThrottlingException". // // The request was denied due to throttling. Reduce the number of requests and // try again. ErrCodeThrottlingException = "ThrottlingException" // ErrCodeValidationException for service response error code // "ValidationException". // // The input doesn't meet the constraints set by the Amazon Q Business service. // Provide the correct input and try again. ErrCodeValidationException = "ValidationException" ) var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{ "AccessDeniedException": newErrorAccessDeniedException, "ConflictException": newErrorConflictException, "InternalServerException": newErrorInternalServerException, "LicenseNotFoundException": newErrorLicenseNotFoundException, "ResourceNotFoundException": newErrorResourceNotFoundException, "ServiceQuotaExceededException": newErrorServiceQuotaExceededException, "ThrottlingException": newErrorThrottlingException, "ValidationException": newErrorValidationException, }