121 lines
2.3 KiB
C++
121 lines
2.3 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/wafv2/model/SampledHTTPRequest.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
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
SampledHTTPRequest::SampledHTTPRequest() :
|
|||
|
|
m_requestHasBeenSet(false),
|
|||
|
|
m_weight(0),
|
|||
|
|
m_weightHasBeenSet(false),
|
|||
|
|
m_timestampHasBeenSet(false),
|
|||
|
|
m_actionHasBeenSet(false),
|
|||
|
|
m_ruleNameWithinRuleGroupHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
SampledHTTPRequest::SampledHTTPRequest(JsonView jsonValue) :
|
|||
|
|
m_requestHasBeenSet(false),
|
|||
|
|
m_weight(0),
|
|||
|
|
m_weightHasBeenSet(false),
|
|||
|
|
m_timestampHasBeenSet(false),
|
|||
|
|
m_actionHasBeenSet(false),
|
|||
|
|
m_ruleNameWithinRuleGroupHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
SampledHTTPRequest& SampledHTTPRequest::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("Request"))
|
|||
|
|
{
|
|||
|
|
m_request = jsonValue.GetObject("Request");
|
|||
|
|
|
|||
|
|
m_requestHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("Weight"))
|
|||
|
|
{
|
|||
|
|
m_weight = jsonValue.GetInt64("Weight");
|
|||
|
|
|
|||
|
|
m_weightHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("Timestamp"))
|
|||
|
|
{
|
|||
|
|
m_timestamp = jsonValue.GetDouble("Timestamp");
|
|||
|
|
|
|||
|
|
m_timestampHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("Action"))
|
|||
|
|
{
|
|||
|
|
m_action = jsonValue.GetString("Action");
|
|||
|
|
|
|||
|
|
m_actionHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("RuleNameWithinRuleGroup"))
|
|||
|
|
{
|
|||
|
|
m_ruleNameWithinRuleGroup = jsonValue.GetString("RuleNameWithinRuleGroup");
|
|||
|
|
|
|||
|
|
m_ruleNameWithinRuleGroupHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue SampledHTTPRequest::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_requestHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("Request", m_request.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_weightHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithInt64("Weight", m_weight);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_timestampHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithDouble("Timestamp", m_timestamp.SecondsWithMSPrecision());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_actionHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("Action", m_action);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_ruleNameWithinRuleGroupHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("RuleNameWithinRuleGroup", m_ruleNameWithinRuleGroup);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace WAFV2
|
|||
|
|
} // namespace Aws
|