/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include #include #include using namespace Aws::Client; using namespace Aws::Utils; using namespace Aws::CleanRooms; using namespace Aws::CleanRooms::Model; namespace Aws { namespace CleanRooms { template<> AWS_CLEANROOMS_API ConflictException CleanRoomsError::GetModeledError() { assert(this->GetErrorType() == CleanRoomsErrors::CONFLICT); return ConflictException(this->GetJsonPayload().View()); } template<> AWS_CLEANROOMS_API ServiceQuotaExceededException CleanRoomsError::GetModeledError() { assert(this->GetErrorType() == CleanRoomsErrors::SERVICE_QUOTA_EXCEEDED); return ServiceQuotaExceededException(this->GetJsonPayload().View()); } template<> AWS_CLEANROOMS_API ResourceNotFoundException CleanRoomsError::GetModeledError() { assert(this->GetErrorType() == CleanRoomsErrors::RESOURCE_NOT_FOUND); return ResourceNotFoundException(this->GetJsonPayload().View()); } template<> AWS_CLEANROOMS_API ValidationException CleanRoomsError::GetModeledError() { assert(this->GetErrorType() == CleanRoomsErrors::VALIDATION); return ValidationException(this->GetJsonPayload().View()); } template<> AWS_CLEANROOMS_API AccessDeniedException CleanRoomsError::GetModeledError() { assert(this->GetErrorType() == CleanRoomsErrors::ACCESS_DENIED); return AccessDeniedException(this->GetJsonPayload().View()); } namespace CleanRoomsErrorMapper { 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"); AWSError GetErrorForName(const char* errorName) { int hashCode = HashingUtils::HashString(errorName); if (hashCode == CONFLICT_HASH) { return AWSError(static_cast(CleanRoomsErrors::CONFLICT), false); } else if (hashCode == SERVICE_QUOTA_EXCEEDED_HASH) { return AWSError(static_cast(CleanRoomsErrors::SERVICE_QUOTA_EXCEEDED), false); } else if (hashCode == INTERNAL_SERVER_HASH) { return AWSError(static_cast(CleanRoomsErrors::INTERNAL_SERVER), false); } return AWSError(CoreErrors::UNKNOWN, false); } } // namespace CleanRoomsErrorMapper } // namespace CleanRooms } // namespace Aws