75 lines
1.2 KiB
C++
75 lines
1.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/wafv2/model/DefaultAction.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace WAFV2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
DefaultAction::DefaultAction() :
|
|
m_blockHasBeenSet(false),
|
|
m_allowHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
DefaultAction::DefaultAction(JsonView jsonValue) :
|
|
m_blockHasBeenSet(false),
|
|
m_allowHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
DefaultAction& DefaultAction::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("Block"))
|
|
{
|
|
m_block = jsonValue.GetObject("Block");
|
|
|
|
m_blockHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Allow"))
|
|
{
|
|
m_allow = jsonValue.GetObject("Allow");
|
|
|
|
m_allowHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue DefaultAction::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_blockHasBeenSet)
|
|
{
|
|
payload.WithObject("Block", m_block.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_allowHasBeenSet)
|
|
{
|
|
payload.WithObject("Allow", m_allow.Jsonize());
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace WAFV2
|
|
} // namespace Aws
|