94 lines
1.9 KiB
C++
94 lines
1.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/sagemaker/model/DesiredWeightAndCapacity.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace SageMaker
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
DesiredWeightAndCapacity::DesiredWeightAndCapacity() :
|
|
m_variantNameHasBeenSet(false),
|
|
m_desiredWeight(0.0),
|
|
m_desiredWeightHasBeenSet(false),
|
|
m_desiredInstanceCount(0),
|
|
m_desiredInstanceCountHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
DesiredWeightAndCapacity::DesiredWeightAndCapacity(JsonView jsonValue) :
|
|
m_variantNameHasBeenSet(false),
|
|
m_desiredWeight(0.0),
|
|
m_desiredWeightHasBeenSet(false),
|
|
m_desiredInstanceCount(0),
|
|
m_desiredInstanceCountHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
DesiredWeightAndCapacity& DesiredWeightAndCapacity::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("VariantName"))
|
|
{
|
|
m_variantName = jsonValue.GetString("VariantName");
|
|
|
|
m_variantNameHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("DesiredWeight"))
|
|
{
|
|
m_desiredWeight = jsonValue.GetDouble("DesiredWeight");
|
|
|
|
m_desiredWeightHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("DesiredInstanceCount"))
|
|
{
|
|
m_desiredInstanceCount = jsonValue.GetInteger("DesiredInstanceCount");
|
|
|
|
m_desiredInstanceCountHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue DesiredWeightAndCapacity::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_variantNameHasBeenSet)
|
|
{
|
|
payload.WithString("VariantName", m_variantName);
|
|
|
|
}
|
|
|
|
if(m_desiredWeightHasBeenSet)
|
|
{
|
|
payload.WithDouble("DesiredWeight", m_desiredWeight);
|
|
|
|
}
|
|
|
|
if(m_desiredInstanceCountHasBeenSet)
|
|
{
|
|
payload.WithInteger("DesiredInstanceCount", m_desiredInstanceCount);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace SageMaker
|
|
} // namespace Aws
|