105 lines
2.3 KiB
C++
105 lines
2.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/config/model/ConfigStreamDeliveryInfo.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ConfigService
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
ConfigStreamDeliveryInfo::ConfigStreamDeliveryInfo() :
|
|
m_lastStatus(DeliveryStatus::NOT_SET),
|
|
m_lastStatusHasBeenSet(false),
|
|
m_lastErrorCodeHasBeenSet(false),
|
|
m_lastErrorMessageHasBeenSet(false),
|
|
m_lastStatusChangeTimeHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
ConfigStreamDeliveryInfo::ConfigStreamDeliveryInfo(JsonView jsonValue) :
|
|
m_lastStatus(DeliveryStatus::NOT_SET),
|
|
m_lastStatusHasBeenSet(false),
|
|
m_lastErrorCodeHasBeenSet(false),
|
|
m_lastErrorMessageHasBeenSet(false),
|
|
m_lastStatusChangeTimeHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
ConfigStreamDeliveryInfo& ConfigStreamDeliveryInfo::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("lastStatus"))
|
|
{
|
|
m_lastStatus = DeliveryStatusMapper::GetDeliveryStatusForName(jsonValue.GetString("lastStatus"));
|
|
|
|
m_lastStatusHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("lastErrorCode"))
|
|
{
|
|
m_lastErrorCode = jsonValue.GetString("lastErrorCode");
|
|
|
|
m_lastErrorCodeHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("lastErrorMessage"))
|
|
{
|
|
m_lastErrorMessage = jsonValue.GetString("lastErrorMessage");
|
|
|
|
m_lastErrorMessageHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("lastStatusChangeTime"))
|
|
{
|
|
m_lastStatusChangeTime = jsonValue.GetDouble("lastStatusChangeTime");
|
|
|
|
m_lastStatusChangeTimeHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue ConfigStreamDeliveryInfo::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_lastStatusHasBeenSet)
|
|
{
|
|
payload.WithString("lastStatus", DeliveryStatusMapper::GetNameForDeliveryStatus(m_lastStatus));
|
|
}
|
|
|
|
if(m_lastErrorCodeHasBeenSet)
|
|
{
|
|
payload.WithString("lastErrorCode", m_lastErrorCode);
|
|
|
|
}
|
|
|
|
if(m_lastErrorMessageHasBeenSet)
|
|
{
|
|
payload.WithString("lastErrorMessage", m_lastErrorMessage);
|
|
|
|
}
|
|
|
|
if(m_lastStatusChangeTimeHasBeenSet)
|
|
{
|
|
payload.WithDouble("lastStatusChangeTime", m_lastStatusChangeTime.SecondsWithMSPrecision());
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace ConfigService
|
|
} // namespace Aws
|