/** * 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 the part of a * web request that you want to inspect the size of and indicates whether you want * to add the specification to a SizeConstraintSet or delete it from a * SizeConstraintSet.

See Also:

AWS * API Reference

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

Specify INSERT to add a SizeConstraintSetUpdate to a * SizeConstraintSet. Use DELETE to remove a * SizeConstraintSetUpdate from a SizeConstraintSet.

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

Specify INSERT to add a SizeConstraintSetUpdate to a * SizeConstraintSet. Use DELETE to remove a * SizeConstraintSetUpdate from a SizeConstraintSet.

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

Specify INSERT to add a SizeConstraintSetUpdate to a * SizeConstraintSet. Use DELETE to remove a * SizeConstraintSetUpdate from a SizeConstraintSet.

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

Specify INSERT to add a SizeConstraintSetUpdate to a * SizeConstraintSet. Use DELETE to remove a * SizeConstraintSetUpdate from a SizeConstraintSet.

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

Specify INSERT to add a SizeConstraintSetUpdate to a * SizeConstraintSet. Use DELETE to remove a * SizeConstraintSetUpdate from a SizeConstraintSet.

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

Specify INSERT to add a SizeConstraintSetUpdate to a * SizeConstraintSet. Use DELETE to remove a * SizeConstraintSetUpdate from a SizeConstraintSet.

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

Specifies a constraint on the size of a part of the web request. AWS WAF uses * the Size, ComparisonOperator, and * FieldToMatch to build an expression in the form of * "Size ComparisonOperator size in bytes of * FieldToMatch". If that expression is true, the * SizeConstraint is considered to match.

*/ inline const SizeConstraint& GetSizeConstraint() const{ return m_sizeConstraint; } /** *

Specifies a constraint on the size of a part of the web request. AWS WAF uses * the Size, ComparisonOperator, and * FieldToMatch to build an expression in the form of * "Size ComparisonOperator size in bytes of * FieldToMatch". If that expression is true, the * SizeConstraint is considered to match.

*/ inline bool SizeConstraintHasBeenSet() const { return m_sizeConstraintHasBeenSet; } /** *

Specifies a constraint on the size of a part of the web request. AWS WAF uses * the Size, ComparisonOperator, and * FieldToMatch to build an expression in the form of * "Size ComparisonOperator size in bytes of * FieldToMatch". If that expression is true, the * SizeConstraint is considered to match.

*/ inline void SetSizeConstraint(const SizeConstraint& value) { m_sizeConstraintHasBeenSet = true; m_sizeConstraint = value; } /** *

Specifies a constraint on the size of a part of the web request. AWS WAF uses * the Size, ComparisonOperator, and * FieldToMatch to build an expression in the form of * "Size ComparisonOperator size in bytes of * FieldToMatch". If that expression is true, the * SizeConstraint is considered to match.

*/ inline void SetSizeConstraint(SizeConstraint&& value) { m_sizeConstraintHasBeenSet = true; m_sizeConstraint = std::move(value); } /** *

Specifies a constraint on the size of a part of the web request. AWS WAF uses * the Size, ComparisonOperator, and * FieldToMatch to build an expression in the form of * "Size ComparisonOperator size in bytes of * FieldToMatch". If that expression is true, the * SizeConstraint is considered to match.

*/ inline SizeConstraintSetUpdate& WithSizeConstraint(const SizeConstraint& value) { SetSizeConstraint(value); return *this;} /** *

Specifies a constraint on the size of a part of the web request. AWS WAF uses * the Size, ComparisonOperator, and * FieldToMatch to build an expression in the form of * "Size ComparisonOperator size in bytes of * FieldToMatch". If that expression is true, the * SizeConstraint is considered to match.

*/ inline SizeConstraintSetUpdate& WithSizeConstraint(SizeConstraint&& value) { SetSizeConstraint(std::move(value)); return *this;} private: ChangeAction m_action; bool m_actionHasBeenSet = false; SizeConstraint m_sizeConstraint; bool m_sizeConstraintHasBeenSet = false; }; } // namespace Model } // namespace WAF } // namespace Aws