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-glue/source/model/Predicate.cpp

84 lines
1.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/glue/model/Predicate.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Glue
{
namespace Model
{
Predicate::Predicate() :
m_logical(Logical::NOT_SET),
m_logicalHasBeenSet(false),
m_conditionsHasBeenSet(false)
{
}
Predicate::Predicate(JsonView jsonValue) :
m_logical(Logical::NOT_SET),
m_logicalHasBeenSet(false),
m_conditionsHasBeenSet(false)
{
*this = jsonValue;
}
Predicate& Predicate::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Logical"))
{
m_logical = LogicalMapper::GetLogicalForName(jsonValue.GetString("Logical"));
m_logicalHasBeenSet = true;
}
if(jsonValue.ValueExists("Conditions"))
{
Array<JsonView> conditionsJsonList = jsonValue.GetArray("Conditions");
for(unsigned conditionsIndex = 0; conditionsIndex < conditionsJsonList.GetLength(); ++conditionsIndex)
{
m_conditions.push_back(conditionsJsonList[conditionsIndex].AsObject());
}
m_conditionsHasBeenSet = true;
}
return *this;
}
JsonValue Predicate::Jsonize() const
{
JsonValue payload;
if(m_logicalHasBeenSet)
{
payload.WithString("Logical", LogicalMapper::GetNameForLogical(m_logical));
}
if(m_conditionsHasBeenSet)
{
Array<JsonValue> conditionsJsonList(m_conditions.size());
for(unsigned conditionsIndex = 0; conditionsIndex < conditionsJsonList.GetLength(); ++conditionsIndex)
{
conditionsJsonList[conditionsIndex].AsObject(m_conditions[conditionsIndex].Jsonize());
}
payload.WithArray("Conditions", std::move(conditionsJsonList));
}
return payload;
}
} // namespace Model
} // namespace Glue
} // namespace Aws