107 lines
2.4 KiB
C++
107 lines
2.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/machinelearning/model/RealtimeEndpointInfo.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace MachineLearning
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
RealtimeEndpointInfo::RealtimeEndpointInfo() :
|
|
m_peakRequestsPerSecond(0),
|
|
m_peakRequestsPerSecondHasBeenSet(false),
|
|
m_createdAtHasBeenSet(false),
|
|
m_endpointUrlHasBeenSet(false),
|
|
m_endpointStatus(RealtimeEndpointStatus::NOT_SET),
|
|
m_endpointStatusHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
RealtimeEndpointInfo::RealtimeEndpointInfo(JsonView jsonValue) :
|
|
m_peakRequestsPerSecond(0),
|
|
m_peakRequestsPerSecondHasBeenSet(false),
|
|
m_createdAtHasBeenSet(false),
|
|
m_endpointUrlHasBeenSet(false),
|
|
m_endpointStatus(RealtimeEndpointStatus::NOT_SET),
|
|
m_endpointStatusHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
RealtimeEndpointInfo& RealtimeEndpointInfo::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("PeakRequestsPerSecond"))
|
|
{
|
|
m_peakRequestsPerSecond = jsonValue.GetInteger("PeakRequestsPerSecond");
|
|
|
|
m_peakRequestsPerSecondHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("CreatedAt"))
|
|
{
|
|
m_createdAt = jsonValue.GetDouble("CreatedAt");
|
|
|
|
m_createdAtHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("EndpointUrl"))
|
|
{
|
|
m_endpointUrl = jsonValue.GetString("EndpointUrl");
|
|
|
|
m_endpointUrlHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("EndpointStatus"))
|
|
{
|
|
m_endpointStatus = RealtimeEndpointStatusMapper::GetRealtimeEndpointStatusForName(jsonValue.GetString("EndpointStatus"));
|
|
|
|
m_endpointStatusHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue RealtimeEndpointInfo::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_peakRequestsPerSecondHasBeenSet)
|
|
{
|
|
payload.WithInteger("PeakRequestsPerSecond", m_peakRequestsPerSecond);
|
|
|
|
}
|
|
|
|
if(m_createdAtHasBeenSet)
|
|
{
|
|
payload.WithDouble("CreatedAt", m_createdAt.SecondsWithMSPrecision());
|
|
}
|
|
|
|
if(m_endpointUrlHasBeenSet)
|
|
{
|
|
payload.WithString("EndpointUrl", m_endpointUrl);
|
|
|
|
}
|
|
|
|
if(m_endpointStatusHasBeenSet)
|
|
{
|
|
payload.WithString("EndpointStatus", RealtimeEndpointStatusMapper::GetNameForRealtimeEndpointStatus(m_endpointStatus));
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace MachineLearning
|
|
} // namespace Aws
|