/** * 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 WAF { namespace Model { /** *

A request to delete an XssMatchSet from AWS WAF.

See * Also:

AWS * API Reference

*/ class DeleteXssMatchSetRequest : public WAFRequest { public: AWS_WAF_API DeleteXssMatchSetRequest(); // 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 "DeleteXssMatchSet"; } AWS_WAF_API Aws::String SerializePayload() const override; AWS_WAF_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The XssMatchSetId of the XssMatchSet that you want to * delete. XssMatchSetId is returned by CreateXssMatchSet and * by ListXssMatchSets.

*/ inline const Aws::String& GetXssMatchSetId() const{ return m_xssMatchSetId; } /** *

The XssMatchSetId of the XssMatchSet that you want to * delete. XssMatchSetId is returned by CreateXssMatchSet and * by ListXssMatchSets.

*/ inline bool XssMatchSetIdHasBeenSet() const { return m_xssMatchSetIdHasBeenSet; } /** *

The XssMatchSetId of the XssMatchSet that you want to * delete. XssMatchSetId is returned by CreateXssMatchSet and * by ListXssMatchSets.

*/ inline void SetXssMatchSetId(const Aws::String& value) { m_xssMatchSetIdHasBeenSet = true; m_xssMatchSetId = value; } /** *

The XssMatchSetId of the XssMatchSet that you want to * delete. XssMatchSetId is returned by CreateXssMatchSet and * by ListXssMatchSets.

*/ inline void SetXssMatchSetId(Aws::String&& value) { m_xssMatchSetIdHasBeenSet = true; m_xssMatchSetId = std::move(value); } /** *

The XssMatchSetId of the XssMatchSet that you want to * delete. XssMatchSetId is returned by CreateXssMatchSet and * by ListXssMatchSets.

*/ inline void SetXssMatchSetId(const char* value) { m_xssMatchSetIdHasBeenSet = true; m_xssMatchSetId.assign(value); } /** *

The XssMatchSetId of the XssMatchSet that you want to * delete. XssMatchSetId is returned by CreateXssMatchSet and * by ListXssMatchSets.

*/ inline DeleteXssMatchSetRequest& WithXssMatchSetId(const Aws::String& value) { SetXssMatchSetId(value); return *this;} /** *

The XssMatchSetId of the XssMatchSet that you want to * delete. XssMatchSetId is returned by CreateXssMatchSet and * by ListXssMatchSets.

*/ inline DeleteXssMatchSetRequest& WithXssMatchSetId(Aws::String&& value) { SetXssMatchSetId(std::move(value)); return *this;} /** *

The XssMatchSetId of the XssMatchSet that you want to * delete. XssMatchSetId is returned by CreateXssMatchSet and * by ListXssMatchSets.

*/ inline DeleteXssMatchSetRequest& WithXssMatchSetId(const char* value) { SetXssMatchSetId(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 DeleteXssMatchSetRequest& WithChangeToken(const Aws::String& value) { SetChangeToken(value); return *this;} /** *

The value returned by the most recent call to GetChangeToken.

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

The value returned by the most recent call to GetChangeToken.

*/ inline DeleteXssMatchSetRequest& WithChangeToken(const char* value) { SetChangeToken(value); return *this;} private: Aws::String m_xssMatchSetId; bool m_xssMatchSetIdHasBeenSet = false; Aws::String m_changeToken; bool m_changeTokenHasBeenSet = false; }; } // namespace Model } // namespace WAF } // namespace Aws