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-swf/source/model/WorkflowExecutionOpenCounts.cpp

130 lines
2.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/swf/model/WorkflowExecutionOpenCounts.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace SWF
{
namespace Model
{
WorkflowExecutionOpenCounts::WorkflowExecutionOpenCounts() :
m_openActivityTasks(0),
m_openActivityTasksHasBeenSet(false),
m_openDecisionTasks(0),
m_openDecisionTasksHasBeenSet(false),
m_openTimers(0),
m_openTimersHasBeenSet(false),
m_openChildWorkflowExecutions(0),
m_openChildWorkflowExecutionsHasBeenSet(false),
m_openLambdaFunctions(0),
m_openLambdaFunctionsHasBeenSet(false)
{
}
WorkflowExecutionOpenCounts::WorkflowExecutionOpenCounts(JsonView jsonValue) :
m_openActivityTasks(0),
m_openActivityTasksHasBeenSet(false),
m_openDecisionTasks(0),
m_openDecisionTasksHasBeenSet(false),
m_openTimers(0),
m_openTimersHasBeenSet(false),
m_openChildWorkflowExecutions(0),
m_openChildWorkflowExecutionsHasBeenSet(false),
m_openLambdaFunctions(0),
m_openLambdaFunctionsHasBeenSet(false)
{
*this = jsonValue;
}
WorkflowExecutionOpenCounts& WorkflowExecutionOpenCounts::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("openActivityTasks"))
{
m_openActivityTasks = jsonValue.GetInteger("openActivityTasks");
m_openActivityTasksHasBeenSet = true;
}
if(jsonValue.ValueExists("openDecisionTasks"))
{
m_openDecisionTasks = jsonValue.GetInteger("openDecisionTasks");
m_openDecisionTasksHasBeenSet = true;
}
if(jsonValue.ValueExists("openTimers"))
{
m_openTimers = jsonValue.GetInteger("openTimers");
m_openTimersHasBeenSet = true;
}
if(jsonValue.ValueExists("openChildWorkflowExecutions"))
{
m_openChildWorkflowExecutions = jsonValue.GetInteger("openChildWorkflowExecutions");
m_openChildWorkflowExecutionsHasBeenSet = true;
}
if(jsonValue.ValueExists("openLambdaFunctions"))
{
m_openLambdaFunctions = jsonValue.GetInteger("openLambdaFunctions");
m_openLambdaFunctionsHasBeenSet = true;
}
return *this;
}
JsonValue WorkflowExecutionOpenCounts::Jsonize() const
{
JsonValue payload;
if(m_openActivityTasksHasBeenSet)
{
payload.WithInteger("openActivityTasks", m_openActivityTasks);
}
if(m_openDecisionTasksHasBeenSet)
{
payload.WithInteger("openDecisionTasks", m_openDecisionTasks);
}
if(m_openTimersHasBeenSet)
{
payload.WithInteger("openTimers", m_openTimers);
}
if(m_openChildWorkflowExecutionsHasBeenSet)
{
payload.WithInteger("openChildWorkflowExecutions", m_openChildWorkflowExecutions);
}
if(m_openLambdaFunctionsHasBeenSet)
{
payload.WithInteger("openLambdaFunctions", m_openLambdaFunctions);
}
return payload;
}
} // namespace Model
} // namespace SWF
} // namespace Aws