129 lines
2.6 KiB
C++
129 lines
2.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/machinelearning/model/GetEvaluationResult.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
#include <aws/core/AmazonWebServiceResult.h>
|
|
#include <aws/core/utils/StringUtils.h>
|
|
#include <aws/core/utils/UnreferencedParam.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::MachineLearning::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
using namespace Aws;
|
|
|
|
GetEvaluationResult::GetEvaluationResult() :
|
|
m_status(EntityStatus::NOT_SET),
|
|
m_computeTime(0)
|
|
{
|
|
}
|
|
|
|
GetEvaluationResult::GetEvaluationResult(const Aws::AmazonWebServiceResult<JsonValue>& result) :
|
|
m_status(EntityStatus::NOT_SET),
|
|
m_computeTime(0)
|
|
{
|
|
*this = result;
|
|
}
|
|
|
|
GetEvaluationResult& GetEvaluationResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result)
|
|
{
|
|
JsonView jsonValue = result.GetPayload().View();
|
|
if(jsonValue.ValueExists("EvaluationId"))
|
|
{
|
|
m_evaluationId = jsonValue.GetString("EvaluationId");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("MLModelId"))
|
|
{
|
|
m_mLModelId = jsonValue.GetString("MLModelId");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("EvaluationDataSourceId"))
|
|
{
|
|
m_evaluationDataSourceId = jsonValue.GetString("EvaluationDataSourceId");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("InputDataLocationS3"))
|
|
{
|
|
m_inputDataLocationS3 = jsonValue.GetString("InputDataLocationS3");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("CreatedByIamUser"))
|
|
{
|
|
m_createdByIamUser = jsonValue.GetString("CreatedByIamUser");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("CreatedAt"))
|
|
{
|
|
m_createdAt = jsonValue.GetDouble("CreatedAt");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("LastUpdatedAt"))
|
|
{
|
|
m_lastUpdatedAt = jsonValue.GetDouble("LastUpdatedAt");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Name"))
|
|
{
|
|
m_name = jsonValue.GetString("Name");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Status"))
|
|
{
|
|
m_status = EntityStatusMapper::GetEntityStatusForName(jsonValue.GetString("Status"));
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("PerformanceMetrics"))
|
|
{
|
|
m_performanceMetrics = jsonValue.GetObject("PerformanceMetrics");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("LogUri"))
|
|
{
|
|
m_logUri = jsonValue.GetString("LogUri");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Message"))
|
|
{
|
|
m_message = jsonValue.GetString("Message");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("ComputeTime"))
|
|
{
|
|
m_computeTime = jsonValue.GetInt64("ComputeTime");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("FinishedAt"))
|
|
{
|
|
m_finishedAt = jsonValue.GetDouble("FinishedAt");
|
|
|
|
}
|
|
|
|
if(jsonValue.ValueExists("StartedAt"))
|
|
{
|
|
m_startedAt = jsonValue.GetDouble("StartedAt");
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
}
|