/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Client; using namespace Aws::Utils; using namespace Aws::KendraRanking; namespace Aws { namespace KendraRanking { namespace KendraRankingErrorMapper { static const int CONFLICT_HASH = HashingUtils::HashString("ConflictException"); static const int SERVICE_QUOTA_EXCEEDED_HASH = HashingUtils::HashString("ServiceQuotaExceededException"); static const int INTERNAL_SERVER_HASH = HashingUtils::HashString("InternalServerException"); static const int RESOURCE_UNAVAILABLE_HASH = HashingUtils::HashString("ResourceUnavailableException"); AWSError GetErrorForName(const char* errorName) { int hashCode = HashingUtils::HashString(errorName); if (hashCode == CONFLICT_HASH) { return AWSError(static_cast(KendraRankingErrors::CONFLICT), false); } else if (hashCode == SERVICE_QUOTA_EXCEEDED_HASH) { return AWSError(static_cast(KendraRankingErrors::SERVICE_QUOTA_EXCEEDED), false); } else if (hashCode == INTERNAL_SERVER_HASH) { return AWSError(static_cast(KendraRankingErrors::INTERNAL_SERVER), false); } else if (hashCode == RESOURCE_UNAVAILABLE_HASH) { return AWSError(static_cast(KendraRankingErrors::RESOURCE_UNAVAILABLE), false); } return AWSError(CoreErrors::UNKNOWN, false); } } // namespace KendraRankingErrorMapper } // namespace KendraRanking } // namespace Aws