/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace WAF { namespace Model { /** *

This is AWS WAF Classic documentation. For more information, * see AWS * WAF Classic in the developer guide.

For the latest version of AWS * WAF, use the AWS WAFV2 API and see the AWS * WAF Developer Guide. With the latest version, AWS WAF has a single set of * endpoints for regional and global use.

Specifies a * Predicate (such as an IPSet) and indicates whether you * want to add it to a Rule or delete it from a * Rule.

See Also:

AWS API * Reference

*/ class RuleUpdate { public: AWS_WAF_API RuleUpdate(); AWS_WAF_API RuleUpdate(Aws::Utils::Json::JsonView jsonValue); AWS_WAF_API RuleUpdate& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_WAF_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Specify INSERT to add a Predicate to a * Rule. Use DELETE to remove a Predicate * from a Rule.

*/ inline const ChangeAction& GetAction() const{ return m_action; } /** *

Specify INSERT to add a Predicate to a * Rule. Use DELETE to remove a Predicate * from a Rule.

*/ inline bool ActionHasBeenSet() const { return m_actionHasBeenSet; } /** *

Specify INSERT to add a Predicate to a * Rule. Use DELETE to remove a Predicate * from a Rule.

*/ inline void SetAction(const ChangeAction& value) { m_actionHasBeenSet = true; m_action = value; } /** *

Specify INSERT to add a Predicate to a * Rule. Use DELETE to remove a Predicate * from a Rule.

*/ inline void SetAction(ChangeAction&& value) { m_actionHasBeenSet = true; m_action = std::move(value); } /** *

Specify INSERT to add a Predicate to a * Rule. Use DELETE to remove a Predicate * from a Rule.

*/ inline RuleUpdate& WithAction(const ChangeAction& value) { SetAction(value); return *this;} /** *

Specify INSERT to add a Predicate to a * Rule. Use DELETE to remove a Predicate * from a Rule.

*/ inline RuleUpdate& WithAction(ChangeAction&& value) { SetAction(std::move(value)); return *this;} /** *

The ID of the Predicate (such as an IPSet) that you * want to add to a Rule.

*/ inline const Predicate& GetPredicate() const{ return m_predicate; } /** *

The ID of the Predicate (such as an IPSet) that you * want to add to a Rule.

*/ inline bool PredicateHasBeenSet() const { return m_predicateHasBeenSet; } /** *

The ID of the Predicate (such as an IPSet) that you * want to add to a Rule.

*/ inline void SetPredicate(const Predicate& value) { m_predicateHasBeenSet = true; m_predicate = value; } /** *

The ID of the Predicate (such as an IPSet) that you * want to add to a Rule.

*/ inline void SetPredicate(Predicate&& value) { m_predicateHasBeenSet = true; m_predicate = std::move(value); } /** *

The ID of the Predicate (such as an IPSet) that you * want to add to a Rule.

*/ inline RuleUpdate& WithPredicate(const Predicate& value) { SetPredicate(value); return *this;} /** *

The ID of the Predicate (such as an IPSet) that you * want to add to a Rule.

*/ inline RuleUpdate& WithPredicate(Predicate&& value) { SetPredicate(std::move(value)); return *this;} private: ChangeAction m_action; bool m_actionHasBeenSet = false; Predicate m_predicate; bool m_predicateHasBeenSet = false; }; } // namespace Model } // namespace WAF } // namespace Aws