113 lines
2.3 KiB
C++
113 lines
2.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/medialive/model/HlsBasicPutSettings.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace MediaLive
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
HlsBasicPutSettings::HlsBasicPutSettings() :
|
|
m_connectionRetryInterval(0),
|
|
m_connectionRetryIntervalHasBeenSet(false),
|
|
m_filecacheDuration(0),
|
|
m_filecacheDurationHasBeenSet(false),
|
|
m_numRetries(0),
|
|
m_numRetriesHasBeenSet(false),
|
|
m_restartDelay(0),
|
|
m_restartDelayHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
HlsBasicPutSettings::HlsBasicPutSettings(JsonView jsonValue) :
|
|
m_connectionRetryInterval(0),
|
|
m_connectionRetryIntervalHasBeenSet(false),
|
|
m_filecacheDuration(0),
|
|
m_filecacheDurationHasBeenSet(false),
|
|
m_numRetries(0),
|
|
m_numRetriesHasBeenSet(false),
|
|
m_restartDelay(0),
|
|
m_restartDelayHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
HlsBasicPutSettings& HlsBasicPutSettings::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("connectionRetryInterval"))
|
|
{
|
|
m_connectionRetryInterval = jsonValue.GetInteger("connectionRetryInterval");
|
|
|
|
m_connectionRetryIntervalHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("filecacheDuration"))
|
|
{
|
|
m_filecacheDuration = jsonValue.GetInteger("filecacheDuration");
|
|
|
|
m_filecacheDurationHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("numRetries"))
|
|
{
|
|
m_numRetries = jsonValue.GetInteger("numRetries");
|
|
|
|
m_numRetriesHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("restartDelay"))
|
|
{
|
|
m_restartDelay = jsonValue.GetInteger("restartDelay");
|
|
|
|
m_restartDelayHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue HlsBasicPutSettings::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_connectionRetryIntervalHasBeenSet)
|
|
{
|
|
payload.WithInteger("connectionRetryInterval", m_connectionRetryInterval);
|
|
|
|
}
|
|
|
|
if(m_filecacheDurationHasBeenSet)
|
|
{
|
|
payload.WithInteger("filecacheDuration", m_filecacheDuration);
|
|
|
|
}
|
|
|
|
if(m_numRetriesHasBeenSet)
|
|
{
|
|
payload.WithInteger("numRetries", m_numRetries);
|
|
|
|
}
|
|
|
|
if(m_restartDelayHasBeenSet)
|
|
{
|
|
payload.WithInteger("restartDelay", m_restartDelay);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace MediaLive
|
|
} // namespace Aws
|