/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include 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