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

The IPSetId of the IPSet that you want to delete. * IPSetId is returned by CreateIPSet and by * ListIPSets.

*/ inline const Aws::String& GetIPSetId() const{ return m_iPSetId; } /** *

The IPSetId of the IPSet that you want to delete. * IPSetId is returned by CreateIPSet and by * ListIPSets.

*/ inline bool IPSetIdHasBeenSet() const { return m_iPSetIdHasBeenSet; } /** *

The IPSetId of the IPSet that you want to delete. * IPSetId is returned by CreateIPSet and by * ListIPSets.

*/ inline void SetIPSetId(const Aws::String& value) { m_iPSetIdHasBeenSet = true; m_iPSetId = value; } /** *

The IPSetId of the IPSet that you want to delete. * IPSetId is returned by CreateIPSet and by * ListIPSets.

*/ inline void SetIPSetId(Aws::String&& value) { m_iPSetIdHasBeenSet = true; m_iPSetId = std::move(value); } /** *

The IPSetId of the IPSet that you want to delete. * IPSetId is returned by CreateIPSet and by * ListIPSets.

*/ inline void SetIPSetId(const char* value) { m_iPSetIdHasBeenSet = true; m_iPSetId.assign(value); } /** *

The IPSetId of the IPSet that you want to delete. * IPSetId is returned by CreateIPSet and by * ListIPSets.

*/ inline DeleteIPSetRequest& WithIPSetId(const Aws::String& value) { SetIPSetId(value); return *this;} /** *

The IPSetId of the IPSet that you want to delete. * IPSetId is returned by CreateIPSet and by * ListIPSets.

*/ inline DeleteIPSetRequest& WithIPSetId(Aws::String&& value) { SetIPSetId(std::move(value)); return *this;} /** *

The IPSetId of the IPSet that you want to delete. * IPSetId is returned by CreateIPSet and by * ListIPSets.

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

The value returned by the most recent call to GetChangeToken.

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

The value returned by the most recent call to GetChangeToken.

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