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