/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include using namespace Aws::Utils; namespace Aws { namespace SageMaker { namespace Model { namespace TrainingInputModeMapper { static const int Pipe_HASH = HashingUtils::HashString("Pipe"); static const int File_HASH = HashingUtils::HashString("File"); static const int FastFile_HASH = HashingUtils::HashString("FastFile"); TrainingInputMode GetTrainingInputModeForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == Pipe_HASH) { return TrainingInputMode::Pipe; } else if (hashCode == File_HASH) { return TrainingInputMode::File; } else if (hashCode == FastFile_HASH) { return TrainingInputMode::FastFile; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return TrainingInputMode::NOT_SET; } Aws::String GetNameForTrainingInputMode(TrainingInputMode enumValue) { switch(enumValue) { case TrainingInputMode::Pipe: return "Pipe"; case TrainingInputMode::File: return "File"; case TrainingInputMode::FastFile: return "FastFile"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace TrainingInputModeMapper } // namespace Model } // namespace SageMaker } // namespace Aws