79 lines
1.3 KiB
C++
79 lines
1.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/elasticmapreduce/model/PortRange.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace EMR
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
PortRange::PortRange() :
|
|
m_minRange(0),
|
|
m_minRangeHasBeenSet(false),
|
|
m_maxRange(0),
|
|
m_maxRangeHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
PortRange::PortRange(JsonView jsonValue) :
|
|
m_minRange(0),
|
|
m_minRangeHasBeenSet(false),
|
|
m_maxRange(0),
|
|
m_maxRangeHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
PortRange& PortRange::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("MinRange"))
|
|
{
|
|
m_minRange = jsonValue.GetInteger("MinRange");
|
|
|
|
m_minRangeHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("MaxRange"))
|
|
{
|
|
m_maxRange = jsonValue.GetInteger("MaxRange");
|
|
|
|
m_maxRangeHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue PortRange::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_minRangeHasBeenSet)
|
|
{
|
|
payload.WithInteger("MinRange", m_minRange);
|
|
|
|
}
|
|
|
|
if(m_maxRangeHasBeenSet)
|
|
{
|
|
payload.WithInteger("MaxRange", m_maxRange);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace EMR
|
|
} // namespace Aws
|