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

93 lines
1.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/waf/model/Predicate.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace WAF
{
namespace Model
{
Predicate::Predicate() :
m_negated(false),
m_negatedHasBeenSet(false),
m_type(PredicateType::NOT_SET),
m_typeHasBeenSet(false),
m_dataIdHasBeenSet(false)
{
}
Predicate::Predicate(JsonView jsonValue) :
m_negated(false),
m_negatedHasBeenSet(false),
m_type(PredicateType::NOT_SET),
m_typeHasBeenSet(false),
m_dataIdHasBeenSet(false)
{
*this = jsonValue;
}
Predicate& Predicate::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Negated"))
{
m_negated = jsonValue.GetBool("Negated");
m_negatedHasBeenSet = true;
}
if(jsonValue.ValueExists("Type"))
{
m_type = PredicateTypeMapper::GetPredicateTypeForName(jsonValue.GetString("Type"));
m_typeHasBeenSet = true;
}
if(jsonValue.ValueExists("DataId"))
{
m_dataId = jsonValue.GetString("DataId");
m_dataIdHasBeenSet = true;
}
return *this;
}
JsonValue Predicate::Jsonize() const
{
JsonValue payload;
if(m_negatedHasBeenSet)
{
payload.WithBool("Negated", m_negated);
}
if(m_typeHasBeenSet)
{
payload.WithString("Type", PredicateTypeMapper::GetNameForPredicateType(m_type));
}
if(m_dataIdHasBeenSet)
{
payload.WithString("DataId", m_dataId);
}
return payload;
}
} // namespace Model
} // namespace WAF
} // namespace Aws