This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-states/source/model/ActivityScheduledEventDetails.cpp

109 lines
2.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/states/model/ActivityScheduledEventDetails.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace SFN
{
namespace Model
{
ActivityScheduledEventDetails::ActivityScheduledEventDetails() :
m_resourceHasBeenSet(false),
m_inputHasBeenSet(false),
m_timeoutInSeconds(0),
m_timeoutInSecondsHasBeenSet(false),
m_heartbeatInSeconds(0),
m_heartbeatInSecondsHasBeenSet(false)
{
}
ActivityScheduledEventDetails::ActivityScheduledEventDetails(JsonView jsonValue) :
m_resourceHasBeenSet(false),
m_inputHasBeenSet(false),
m_timeoutInSeconds(0),
m_timeoutInSecondsHasBeenSet(false),
m_heartbeatInSeconds(0),
m_heartbeatInSecondsHasBeenSet(false)
{
*this = jsonValue;
}
ActivityScheduledEventDetails& ActivityScheduledEventDetails::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("resource"))
{
m_resource = jsonValue.GetString("resource");
m_resourceHasBeenSet = true;
}
if(jsonValue.ValueExists("input"))
{
m_input = jsonValue.GetString("input");
m_inputHasBeenSet = true;
}
if(jsonValue.ValueExists("timeoutInSeconds"))
{
m_timeoutInSeconds = jsonValue.GetInt64("timeoutInSeconds");
m_timeoutInSecondsHasBeenSet = true;
}
if(jsonValue.ValueExists("heartbeatInSeconds"))
{
m_heartbeatInSeconds = jsonValue.GetInt64("heartbeatInSeconds");
m_heartbeatInSecondsHasBeenSet = true;
}
return *this;
}
JsonValue ActivityScheduledEventDetails::Jsonize() const
{
JsonValue payload;
if(m_resourceHasBeenSet)
{
payload.WithString("resource", m_resource);
}
if(m_inputHasBeenSet)
{
payload.WithString("input", m_input);
}
if(m_timeoutInSecondsHasBeenSet)
{
payload.WithInt64("timeoutInSeconds", m_timeoutInSeconds);
}
if(m_heartbeatInSecondsHasBeenSet)
{
payload.WithInt64("heartbeatInSeconds", m_heartbeatInSeconds);
}
return payload;
}
} // namespace Model
} // namespace SFN
} // namespace Aws