{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.WAFRegional.DeleteByteMatchSet -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- This is __AWS WAF Classic__ documentation. For more information, see -- -- in the developer guide. -- -- __For the latest version of AWS WAF__, use the AWS WAFV2 API and see the -- . -- With the latest version, AWS WAF has a single set of endpoints for -- regional and global use. -- -- Permanently deletes a ByteMatchSet. You can\'t delete a @ByteMatchSet@ -- if it\'s still used in any @Rules@ or if it still includes any -- ByteMatchTuple objects (any filters). -- -- If you just want to remove a @ByteMatchSet@ from a @Rule@, use -- UpdateRule. -- -- To permanently delete a @ByteMatchSet@, perform the following steps: -- -- 1. Update the @ByteMatchSet@ to remove filters, if any. For more -- information, see UpdateByteMatchSet. -- -- 2. Use GetChangeToken to get the change token that you provide in the -- @ChangeToken@ parameter of a @DeleteByteMatchSet@ request. -- -- 3. Submit a @DeleteByteMatchSet@ request. module Amazonka.WAFRegional.DeleteByteMatchSet ( -- * Creating a Request DeleteByteMatchSet (..), newDeleteByteMatchSet, -- * Request Lenses deleteByteMatchSet_byteMatchSetId, deleteByteMatchSet_changeToken, -- * Destructuring the Response DeleteByteMatchSetResponse (..), newDeleteByteMatchSetResponse, -- * Response Lenses deleteByteMatchSetResponse_changeToken, deleteByteMatchSetResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.WAFRegional.Types -- | /See:/ 'newDeleteByteMatchSet' smart constructor. data DeleteByteMatchSet = DeleteByteMatchSet' { -- | The @ByteMatchSetId@ of the ByteMatchSet that you want to delete. -- @ByteMatchSetId@ is returned by CreateByteMatchSet and by -- ListByteMatchSets. byteMatchSetId :: Prelude.Text, -- | The value returned by the most recent call to GetChangeToken. changeToken :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteByteMatchSet' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'byteMatchSetId', 'deleteByteMatchSet_byteMatchSetId' - The @ByteMatchSetId@ of the ByteMatchSet that you want to delete. -- @ByteMatchSetId@ is returned by CreateByteMatchSet and by -- ListByteMatchSets. -- -- 'changeToken', 'deleteByteMatchSet_changeToken' - The value returned by the most recent call to GetChangeToken. newDeleteByteMatchSet :: -- | 'byteMatchSetId' Prelude.Text -> -- | 'changeToken' Prelude.Text -> DeleteByteMatchSet newDeleteByteMatchSet pByteMatchSetId_ pChangeToken_ = DeleteByteMatchSet' { byteMatchSetId = pByteMatchSetId_, changeToken = pChangeToken_ } -- | The @ByteMatchSetId@ of the ByteMatchSet that you want to delete. -- @ByteMatchSetId@ is returned by CreateByteMatchSet and by -- ListByteMatchSets. deleteByteMatchSet_byteMatchSetId :: Lens.Lens' DeleteByteMatchSet Prelude.Text deleteByteMatchSet_byteMatchSetId = Lens.lens (\DeleteByteMatchSet' {byteMatchSetId} -> byteMatchSetId) (\s@DeleteByteMatchSet' {} a -> s {byteMatchSetId = a} :: DeleteByteMatchSet) -- | The value returned by the most recent call to GetChangeToken. deleteByteMatchSet_changeToken :: Lens.Lens' DeleteByteMatchSet Prelude.Text deleteByteMatchSet_changeToken = Lens.lens (\DeleteByteMatchSet' {changeToken} -> changeToken) (\s@DeleteByteMatchSet' {} a -> s {changeToken = a} :: DeleteByteMatchSet) instance Core.AWSRequest DeleteByteMatchSet where type AWSResponse DeleteByteMatchSet = DeleteByteMatchSetResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> DeleteByteMatchSetResponse' Prelude.<$> (x Data..?> "ChangeToken") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteByteMatchSet where hashWithSalt _salt DeleteByteMatchSet' {..} = _salt `Prelude.hashWithSalt` byteMatchSetId `Prelude.hashWithSalt` changeToken instance Prelude.NFData DeleteByteMatchSet where rnf DeleteByteMatchSet' {..} = Prelude.rnf byteMatchSetId `Prelude.seq` Prelude.rnf changeToken instance Data.ToHeaders DeleteByteMatchSet where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AWSWAF_Regional_20161128.DeleteByteMatchSet" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON DeleteByteMatchSet where toJSON DeleteByteMatchSet' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("ByteMatchSetId" Data..= byteMatchSetId), Prelude.Just ("ChangeToken" Data..= changeToken) ] ) instance Data.ToPath DeleteByteMatchSet where toPath = Prelude.const "/" instance Data.ToQuery DeleteByteMatchSet where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDeleteByteMatchSetResponse' smart constructor. data DeleteByteMatchSetResponse = DeleteByteMatchSetResponse' { -- | The @ChangeToken@ that you used to submit the @DeleteByteMatchSet@ -- request. You can also use this value to query the status of the request. -- For more information, see GetChangeTokenStatus. changeToken :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteByteMatchSetResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'changeToken', 'deleteByteMatchSetResponse_changeToken' - The @ChangeToken@ that you used to submit the @DeleteByteMatchSet@ -- request. You can also use this value to query the status of the request. -- For more information, see GetChangeTokenStatus. -- -- 'httpStatus', 'deleteByteMatchSetResponse_httpStatus' - The response's http status code. newDeleteByteMatchSetResponse :: -- | 'httpStatus' Prelude.Int -> DeleteByteMatchSetResponse newDeleteByteMatchSetResponse pHttpStatus_ = DeleteByteMatchSetResponse' { changeToken = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The @ChangeToken@ that you used to submit the @DeleteByteMatchSet@ -- request. You can also use this value to query the status of the request. -- For more information, see GetChangeTokenStatus. deleteByteMatchSetResponse_changeToken :: Lens.Lens' DeleteByteMatchSetResponse (Prelude.Maybe Prelude.Text) deleteByteMatchSetResponse_changeToken = Lens.lens (\DeleteByteMatchSetResponse' {changeToken} -> changeToken) (\s@DeleteByteMatchSetResponse' {} a -> s {changeToken = a} :: DeleteByteMatchSetResponse) -- | The response's http status code. deleteByteMatchSetResponse_httpStatus :: Lens.Lens' DeleteByteMatchSetResponse Prelude.Int deleteByteMatchSetResponse_httpStatus = Lens.lens (\DeleteByteMatchSetResponse' {httpStatus} -> httpStatus) (\s@DeleteByteMatchSetResponse' {} a -> s {httpStatus = a} :: DeleteByteMatchSetResponse) instance Prelude.NFData DeleteByteMatchSetResponse where rnf DeleteByteMatchSetResponse' {..} = Prelude.rnf changeToken `Prelude.seq` Prelude.rnf httpStatus