/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace WAF { namespace Model { /** */ class UpdateRegexMatchSetRequest : public WAFRequest { public: AWS_WAF_API UpdateRegexMatchSetRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateRegexMatchSet"; } AWS_WAF_API Aws::String SerializePayload() const override; AWS_WAF_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The RegexMatchSetId of the RegexMatchSet that you want to * update. RegexMatchSetId is returned by CreateRegexMatchSet * and by ListRegexMatchSets.

*/ inline const Aws::String& GetRegexMatchSetId() const{ return m_regexMatchSetId; } /** *

The RegexMatchSetId of the RegexMatchSet that you want to * update. RegexMatchSetId is returned by CreateRegexMatchSet * and by ListRegexMatchSets.

*/ inline bool RegexMatchSetIdHasBeenSet() const { return m_regexMatchSetIdHasBeenSet; } /** *

The RegexMatchSetId of the RegexMatchSet that you want to * update. RegexMatchSetId is returned by CreateRegexMatchSet * and by ListRegexMatchSets.

*/ inline void SetRegexMatchSetId(const Aws::String& value) { m_regexMatchSetIdHasBeenSet = true; m_regexMatchSetId = value; } /** *

The RegexMatchSetId of the RegexMatchSet that you want to * update. RegexMatchSetId is returned by CreateRegexMatchSet * and by ListRegexMatchSets.

*/ inline void SetRegexMatchSetId(Aws::String&& value) { m_regexMatchSetIdHasBeenSet = true; m_regexMatchSetId = std::move(value); } /** *

The RegexMatchSetId of the RegexMatchSet that you want to * update. RegexMatchSetId is returned by CreateRegexMatchSet * and by ListRegexMatchSets.

*/ inline void SetRegexMatchSetId(const char* value) { m_regexMatchSetIdHasBeenSet = true; m_regexMatchSetId.assign(value); } /** *

The RegexMatchSetId of the RegexMatchSet that you want to * update. RegexMatchSetId is returned by CreateRegexMatchSet * and by ListRegexMatchSets.

*/ inline UpdateRegexMatchSetRequest& WithRegexMatchSetId(const Aws::String& value) { SetRegexMatchSetId(value); return *this;} /** *

The RegexMatchSetId of the RegexMatchSet that you want to * update. RegexMatchSetId is returned by CreateRegexMatchSet * and by ListRegexMatchSets.

*/ inline UpdateRegexMatchSetRequest& WithRegexMatchSetId(Aws::String&& value) { SetRegexMatchSetId(std::move(value)); return *this;} /** *

The RegexMatchSetId of the RegexMatchSet that you want to * update. RegexMatchSetId is returned by CreateRegexMatchSet * and by ListRegexMatchSets.

*/ inline UpdateRegexMatchSetRequest& WithRegexMatchSetId(const char* value) { SetRegexMatchSetId(value); return *this;} /** *

An array of RegexMatchSetUpdate objects that you want to insert * into or delete from a RegexMatchSet. For more information, see * RegexMatchTuple.

*/ inline const Aws::Vector& GetUpdates() const{ return m_updates; } /** *

An array of RegexMatchSetUpdate objects that you want to insert * into or delete from a RegexMatchSet. For more information, see * RegexMatchTuple.

*/ inline bool UpdatesHasBeenSet() const { return m_updatesHasBeenSet; } /** *

An array of RegexMatchSetUpdate objects that you want to insert * into or delete from a RegexMatchSet. For more information, see * RegexMatchTuple.

*/ inline void SetUpdates(const Aws::Vector& value) { m_updatesHasBeenSet = true; m_updates = value; } /** *

An array of RegexMatchSetUpdate objects that you want to insert * into or delete from a RegexMatchSet. For more information, see * RegexMatchTuple.

*/ inline void SetUpdates(Aws::Vector&& value) { m_updatesHasBeenSet = true; m_updates = std::move(value); } /** *

An array of RegexMatchSetUpdate objects that you want to insert * into or delete from a RegexMatchSet. For more information, see * RegexMatchTuple.

*/ inline UpdateRegexMatchSetRequest& WithUpdates(const Aws::Vector& value) { SetUpdates(value); return *this;} /** *

An array of RegexMatchSetUpdate objects that you want to insert * into or delete from a RegexMatchSet. For more information, see * RegexMatchTuple.

*/ inline UpdateRegexMatchSetRequest& WithUpdates(Aws::Vector&& value) { SetUpdates(std::move(value)); return *this;} /** *

An array of RegexMatchSetUpdate objects that you want to insert * into or delete from a RegexMatchSet. For more information, see * RegexMatchTuple.

*/ inline UpdateRegexMatchSetRequest& AddUpdates(const RegexMatchSetUpdate& value) { m_updatesHasBeenSet = true; m_updates.push_back(value); return *this; } /** *

An array of RegexMatchSetUpdate objects that you want to insert * into or delete from a RegexMatchSet. For more information, see * RegexMatchTuple.

*/ inline UpdateRegexMatchSetRequest& AddUpdates(RegexMatchSetUpdate&& value) { m_updatesHasBeenSet = true; m_updates.push_back(std::move(value)); return *this; } /** *

The value returned by the most recent call to GetChangeToken.

*/ inline const Aws::String& GetChangeToken() const{ return m_changeToken; } /** *

The value returned by the most recent call to GetChangeToken.

*/ inline bool ChangeTokenHasBeenSet() const { return m_changeTokenHasBeenSet; } /** *

The value returned by the most recent call to GetChangeToken.

*/ inline void SetChangeToken(const Aws::String& value) { m_changeTokenHasBeenSet = true; m_changeToken = value; } /** *

The value returned by the most recent call to GetChangeToken.

*/ inline void SetChangeToken(Aws::String&& value) { m_changeTokenHasBeenSet = true; m_changeToken = std::move(value); } /** *

The value returned by the most recent call to GetChangeToken.

*/ inline void SetChangeToken(const char* value) { m_changeTokenHasBeenSet = true; m_changeToken.assign(value); } /** *

The value returned by the most recent call to GetChangeToken.

*/ inline UpdateRegexMatchSetRequest& WithChangeToken(const Aws::String& value) { SetChangeToken(value); return *this;} /** *

The value returned by the most recent call to GetChangeToken.

*/ inline UpdateRegexMatchSetRequest& WithChangeToken(Aws::String&& value) { SetChangeToken(std::move(value)); return *this;} /** *

The value returned by the most recent call to GetChangeToken.

*/ inline UpdateRegexMatchSetRequest& WithChangeToken(const char* value) { SetChangeToken(value); return *this;} private: Aws::String m_regexMatchSetId; bool m_regexMatchSetIdHasBeenSet = false; Aws::Vector m_updates; bool m_updatesHasBeenSet = false; Aws::String m_changeToken; bool m_changeTokenHasBeenSet = false; }; } // namespace Model } // namespace WAF } // namespace Aws