99 lines
3.1 KiB
C++
99 lines
3.1 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/sagemaker/model/LabelingJobStatus.h>
|
|||
|
|
#include <aws/core/utils/HashingUtils.h>
|
|||
|
|
#include <aws/core/Globals.h>
|
|||
|
|
#include <aws/core/utils/EnumParseOverflowContainer.h>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace SageMaker
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
namespace LabelingJobStatusMapper
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
static const int Initializing_HASH = HashingUtils::HashString("Initializing");
|
|||
|
|
static const int InProgress_HASH = HashingUtils::HashString("InProgress");
|
|||
|
|
static const int Completed_HASH = HashingUtils::HashString("Completed");
|
|||
|
|
static const int Failed_HASH = HashingUtils::HashString("Failed");
|
|||
|
|
static const int Stopping_HASH = HashingUtils::HashString("Stopping");
|
|||
|
|
static const int Stopped_HASH = HashingUtils::HashString("Stopped");
|
|||
|
|
|
|||
|
|
|
|||
|
|
LabelingJobStatus GetLabelingJobStatusForName(const Aws::String& name)
|
|||
|
|
{
|
|||
|
|
int hashCode = HashingUtils::HashString(name.c_str());
|
|||
|
|
if (hashCode == Initializing_HASH)
|
|||
|
|
{
|
|||
|
|
return LabelingJobStatus::Initializing;
|
|||
|
|
}
|
|||
|
|
else if (hashCode == InProgress_HASH)
|
|||
|
|
{
|
|||
|
|
return LabelingJobStatus::InProgress;
|
|||
|
|
}
|
|||
|
|
else if (hashCode == Completed_HASH)
|
|||
|
|
{
|
|||
|
|
return LabelingJobStatus::Completed;
|
|||
|
|
}
|
|||
|
|
else if (hashCode == Failed_HASH)
|
|||
|
|
{
|
|||
|
|
return LabelingJobStatus::Failed;
|
|||
|
|
}
|
|||
|
|
else if (hashCode == Stopping_HASH)
|
|||
|
|
{
|
|||
|
|
return LabelingJobStatus::Stopping;
|
|||
|
|
}
|
|||
|
|
else if (hashCode == Stopped_HASH)
|
|||
|
|
{
|
|||
|
|
return LabelingJobStatus::Stopped;
|
|||
|
|
}
|
|||
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|||
|
|
if(overflowContainer)
|
|||
|
|
{
|
|||
|
|
overflowContainer->StoreOverflow(hashCode, name);
|
|||
|
|
return static_cast<LabelingJobStatus>(hashCode);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return LabelingJobStatus::NOT_SET;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::String GetNameForLabelingJobStatus(LabelingJobStatus enumValue)
|
|||
|
|
{
|
|||
|
|
switch(enumValue)
|
|||
|
|
{
|
|||
|
|
case LabelingJobStatus::Initializing:
|
|||
|
|
return "Initializing";
|
|||
|
|
case LabelingJobStatus::InProgress:
|
|||
|
|
return "InProgress";
|
|||
|
|
case LabelingJobStatus::Completed:
|
|||
|
|
return "Completed";
|
|||
|
|
case LabelingJobStatus::Failed:
|
|||
|
|
return "Failed";
|
|||
|
|
case LabelingJobStatus::Stopping:
|
|||
|
|
return "Stopping";
|
|||
|
|
case LabelingJobStatus::Stopped:
|
|||
|
|
return "Stopped";
|
|||
|
|
default:
|
|||
|
|
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
|
|||
|
|
if(overflowContainer)
|
|||
|
|
{
|
|||
|
|
return overflowContainer->RetrieveOverflow(static_cast<int>(enumValue));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return {};
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace LabelingJobStatusMapper
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace SageMaker
|
|||
|
|
} // namespace Aws
|