{-# 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.WAFV2.DeleteRegexPatternSet
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Deletes the specified RegexPatternSet.
module Amazonka.WAFV2.DeleteRegexPatternSet
  ( -- * Creating a Request
    DeleteRegexPatternSet (..),
    newDeleteRegexPatternSet,

    -- * Request Lenses
    deleteRegexPatternSet_name,
    deleteRegexPatternSet_scope,
    deleteRegexPatternSet_id,
    deleteRegexPatternSet_lockToken,

    -- * Destructuring the Response
    DeleteRegexPatternSetResponse (..),
    newDeleteRegexPatternSetResponse,

    -- * Response Lenses
    deleteRegexPatternSetResponse_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.WAFV2.Types

-- | /See:/ 'newDeleteRegexPatternSet' smart constructor.
data DeleteRegexPatternSet = DeleteRegexPatternSet'
  { -- | The name of the set. You cannot change the name after you create the
    -- set.
    DeleteRegexPatternSet -> Text
name :: Prelude.Text,
    -- | Specifies whether this is for an Amazon CloudFront distribution or for a
    -- regional application. A regional application can be an Application Load
    -- Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API,
    -- or an Amazon Cognito user pool.
    --
    -- To work with CloudFront, you must also specify the Region US East (N.
    -- Virginia) as follows:
    --
    -- -   CLI - Specify the Region when you use the CloudFront scope:
    --     @--scope=CLOUDFRONT --region=us-east-1@.
    --
    -- -   API and SDKs - For all calls, use the Region endpoint us-east-1.
    DeleteRegexPatternSet -> Scope
scope :: Scope,
    -- | A unique identifier for the set. This ID is returned in the responses to
    -- create and list commands. You provide it to operations like update and
    -- delete.
    DeleteRegexPatternSet -> Text
id :: Prelude.Text,
    -- | A token used for optimistic locking. WAF returns a token to your @get@
    -- and @list@ requests, to mark the state of the entity at the time of the
    -- request. To make changes to the entity associated with the token, you
    -- provide the token to operations like @update@ and @delete@. WAF uses the
    -- token to ensure that no changes have been made to the entity since you
    -- last retrieved it. If a change has been made, the update fails with a
    -- @WAFOptimisticLockException@. If this happens, perform another @get@,
    -- and use the new token returned by that operation.
    DeleteRegexPatternSet -> Text
lockToken :: Prelude.Text
  }
  deriving (DeleteRegexPatternSet -> DeleteRegexPatternSet -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRegexPatternSet -> DeleteRegexPatternSet -> Bool
$c/= :: DeleteRegexPatternSet -> DeleteRegexPatternSet -> Bool
== :: DeleteRegexPatternSet -> DeleteRegexPatternSet -> Bool
$c== :: DeleteRegexPatternSet -> DeleteRegexPatternSet -> Bool
Prelude.Eq, ReadPrec [DeleteRegexPatternSet]
ReadPrec DeleteRegexPatternSet
Int -> ReadS DeleteRegexPatternSet
ReadS [DeleteRegexPatternSet]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRegexPatternSet]
$creadListPrec :: ReadPrec [DeleteRegexPatternSet]
readPrec :: ReadPrec DeleteRegexPatternSet
$creadPrec :: ReadPrec DeleteRegexPatternSet
readList :: ReadS [DeleteRegexPatternSet]
$creadList :: ReadS [DeleteRegexPatternSet]
readsPrec :: Int -> ReadS DeleteRegexPatternSet
$creadsPrec :: Int -> ReadS DeleteRegexPatternSet
Prelude.Read, Int -> DeleteRegexPatternSet -> ShowS
[DeleteRegexPatternSet] -> ShowS
DeleteRegexPatternSet -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRegexPatternSet] -> ShowS
$cshowList :: [DeleteRegexPatternSet] -> ShowS
show :: DeleteRegexPatternSet -> String
$cshow :: DeleteRegexPatternSet -> String
showsPrec :: Int -> DeleteRegexPatternSet -> ShowS
$cshowsPrec :: Int -> DeleteRegexPatternSet -> ShowS
Prelude.Show, forall x. Rep DeleteRegexPatternSet x -> DeleteRegexPatternSet
forall x. DeleteRegexPatternSet -> Rep DeleteRegexPatternSet x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteRegexPatternSet x -> DeleteRegexPatternSet
$cfrom :: forall x. DeleteRegexPatternSet -> Rep DeleteRegexPatternSet x
Prelude.Generic)

-- |
-- Create a value of 'DeleteRegexPatternSet' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'name', 'deleteRegexPatternSet_name' - The name of the set. You cannot change the name after you create the
-- set.
--
-- 'scope', 'deleteRegexPatternSet_scope' - Specifies whether this is for an Amazon CloudFront distribution or for a
-- regional application. A regional application can be an Application Load
-- Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API,
-- or an Amazon Cognito user pool.
--
-- To work with CloudFront, you must also specify the Region US East (N.
-- Virginia) as follows:
--
-- -   CLI - Specify the Region when you use the CloudFront scope:
--     @--scope=CLOUDFRONT --region=us-east-1@.
--
-- -   API and SDKs - For all calls, use the Region endpoint us-east-1.
--
-- 'id', 'deleteRegexPatternSet_id' - A unique identifier for the set. This ID is returned in the responses to
-- create and list commands. You provide it to operations like update and
-- delete.
--
-- 'lockToken', 'deleteRegexPatternSet_lockToken' - A token used for optimistic locking. WAF returns a token to your @get@
-- and @list@ requests, to mark the state of the entity at the time of the
-- request. To make changes to the entity associated with the token, you
-- provide the token to operations like @update@ and @delete@. WAF uses the
-- token to ensure that no changes have been made to the entity since you
-- last retrieved it. If a change has been made, the update fails with a
-- @WAFOptimisticLockException@. If this happens, perform another @get@,
-- and use the new token returned by that operation.
newDeleteRegexPatternSet ::
  -- | 'name'
  Prelude.Text ->
  -- | 'scope'
  Scope ->
  -- | 'id'
  Prelude.Text ->
  -- | 'lockToken'
  Prelude.Text ->
  DeleteRegexPatternSet
newDeleteRegexPatternSet :: Text -> Scope -> Text -> Text -> DeleteRegexPatternSet
newDeleteRegexPatternSet
  Text
pName_
  Scope
pScope_
  Text
pId_
  Text
pLockToken_ =
    DeleteRegexPatternSet'
      { $sel:name:DeleteRegexPatternSet' :: Text
name = Text
pName_,
        $sel:scope:DeleteRegexPatternSet' :: Scope
scope = Scope
pScope_,
        $sel:id:DeleteRegexPatternSet' :: Text
id = Text
pId_,
        $sel:lockToken:DeleteRegexPatternSet' :: Text
lockToken = Text
pLockToken_
      }

-- | The name of the set. You cannot change the name after you create the
-- set.
deleteRegexPatternSet_name :: Lens.Lens' DeleteRegexPatternSet Prelude.Text
deleteRegexPatternSet_name :: Lens' DeleteRegexPatternSet Text
deleteRegexPatternSet_name = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRegexPatternSet' {Text
name :: Text
$sel:name:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
name} -> Text
name) (\s :: DeleteRegexPatternSet
s@DeleteRegexPatternSet' {} Text
a -> DeleteRegexPatternSet
s {$sel:name:DeleteRegexPatternSet' :: Text
name = Text
a} :: DeleteRegexPatternSet)

-- | Specifies whether this is for an Amazon CloudFront distribution or for a
-- regional application. A regional application can be an Application Load
-- Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API,
-- or an Amazon Cognito user pool.
--
-- To work with CloudFront, you must also specify the Region US East (N.
-- Virginia) as follows:
--
-- -   CLI - Specify the Region when you use the CloudFront scope:
--     @--scope=CLOUDFRONT --region=us-east-1@.
--
-- -   API and SDKs - For all calls, use the Region endpoint us-east-1.
deleteRegexPatternSet_scope :: Lens.Lens' DeleteRegexPatternSet Scope
deleteRegexPatternSet_scope :: Lens' DeleteRegexPatternSet Scope
deleteRegexPatternSet_scope = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRegexPatternSet' {Scope
scope :: Scope
$sel:scope:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Scope
scope} -> Scope
scope) (\s :: DeleteRegexPatternSet
s@DeleteRegexPatternSet' {} Scope
a -> DeleteRegexPatternSet
s {$sel:scope:DeleteRegexPatternSet' :: Scope
scope = Scope
a} :: DeleteRegexPatternSet)

-- | A unique identifier for the set. This ID is returned in the responses to
-- create and list commands. You provide it to operations like update and
-- delete.
deleteRegexPatternSet_id :: Lens.Lens' DeleteRegexPatternSet Prelude.Text
deleteRegexPatternSet_id :: Lens' DeleteRegexPatternSet Text
deleteRegexPatternSet_id = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRegexPatternSet' {Text
id :: Text
$sel:id:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
id} -> Text
id) (\s :: DeleteRegexPatternSet
s@DeleteRegexPatternSet' {} Text
a -> DeleteRegexPatternSet
s {$sel:id:DeleteRegexPatternSet' :: Text
id = Text
a} :: DeleteRegexPatternSet)

-- | A token used for optimistic locking. WAF returns a token to your @get@
-- and @list@ requests, to mark the state of the entity at the time of the
-- request. To make changes to the entity associated with the token, you
-- provide the token to operations like @update@ and @delete@. WAF uses the
-- token to ensure that no changes have been made to the entity since you
-- last retrieved it. If a change has been made, the update fails with a
-- @WAFOptimisticLockException@. If this happens, perform another @get@,
-- and use the new token returned by that operation.
deleteRegexPatternSet_lockToken :: Lens.Lens' DeleteRegexPatternSet Prelude.Text
deleteRegexPatternSet_lockToken :: Lens' DeleteRegexPatternSet Text
deleteRegexPatternSet_lockToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRegexPatternSet' {Text
lockToken :: Text
$sel:lockToken:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
lockToken} -> Text
lockToken) (\s :: DeleteRegexPatternSet
s@DeleteRegexPatternSet' {} Text
a -> DeleteRegexPatternSet
s {$sel:lockToken:DeleteRegexPatternSet' :: Text
lockToken = Text
a} :: DeleteRegexPatternSet)

instance Core.AWSRequest DeleteRegexPatternSet where
  type
    AWSResponse DeleteRegexPatternSet =
      DeleteRegexPatternSetResponse
  request :: (Service -> Service)
-> DeleteRegexPatternSet -> Request DeleteRegexPatternSet
request Service -> Service
overrides =
    forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy DeleteRegexPatternSet
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse DeleteRegexPatternSet)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
      ( \Int
s ResponseHeaders
h ()
x ->
          Int -> DeleteRegexPatternSetResponse
DeleteRegexPatternSetResponse'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable DeleteRegexPatternSet where
  hashWithSalt :: Int -> DeleteRegexPatternSet -> Int
hashWithSalt Int
_salt DeleteRegexPatternSet' {Text
Scope
lockToken :: Text
id :: Text
scope :: Scope
name :: Text
$sel:lockToken:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
$sel:id:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
$sel:scope:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Scope
$sel:name:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
name
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Scope
scope
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
id
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
lockToken

instance Prelude.NFData DeleteRegexPatternSet where
  rnf :: DeleteRegexPatternSet -> ()
rnf DeleteRegexPatternSet' {Text
Scope
lockToken :: Text
id :: Text
scope :: Scope
name :: Text
$sel:lockToken:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
$sel:id:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
$sel:scope:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Scope
$sel:name:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Text
name
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Scope
scope
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
id
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
lockToken

instance Data.ToHeaders DeleteRegexPatternSet where
  toHeaders :: DeleteRegexPatternSet -> ResponseHeaders
toHeaders =
    forall a b. a -> b -> a
Prelude.const
      ( forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"X-Amz-Target"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"AWSWAF_20190729.DeleteRegexPatternSet" ::
                          Prelude.ByteString
                      ),
            HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Data.ToJSON DeleteRegexPatternSet where
  toJSON :: DeleteRegexPatternSet -> Value
toJSON DeleteRegexPatternSet' {Text
Scope
lockToken :: Text
id :: Text
scope :: Scope
name :: Text
$sel:lockToken:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
$sel:id:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
$sel:scope:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Scope
$sel:name:DeleteRegexPatternSet' :: DeleteRegexPatternSet -> Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ forall a. a -> Maybe a
Prelude.Just (Key
"Name" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
name),
            forall a. a -> Maybe a
Prelude.Just (Key
"Scope" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Scope
scope),
            forall a. a -> Maybe a
Prelude.Just (Key
"Id" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
id),
            forall a. a -> Maybe a
Prelude.Just (Key
"LockToken" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
lockToken)
          ]
      )

instance Data.ToPath DeleteRegexPatternSet where
  toPath :: DeleteRegexPatternSet -> ByteString
toPath = forall a b. a -> b -> a
Prelude.const ByteString
"/"

instance Data.ToQuery DeleteRegexPatternSet where
  toQuery :: DeleteRegexPatternSet -> QueryString
toQuery = forall a b. a -> b -> a
Prelude.const forall a. Monoid a => a
Prelude.mempty

-- | /See:/ 'newDeleteRegexPatternSetResponse' smart constructor.
data DeleteRegexPatternSetResponse = DeleteRegexPatternSetResponse'
  { -- | The response's http status code.
    DeleteRegexPatternSetResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (DeleteRegexPatternSetResponse
-> DeleteRegexPatternSetResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRegexPatternSetResponse
-> DeleteRegexPatternSetResponse -> Bool
$c/= :: DeleteRegexPatternSetResponse
-> DeleteRegexPatternSetResponse -> Bool
== :: DeleteRegexPatternSetResponse
-> DeleteRegexPatternSetResponse -> Bool
$c== :: DeleteRegexPatternSetResponse
-> DeleteRegexPatternSetResponse -> Bool
Prelude.Eq, ReadPrec [DeleteRegexPatternSetResponse]
ReadPrec DeleteRegexPatternSetResponse
Int -> ReadS DeleteRegexPatternSetResponse
ReadS [DeleteRegexPatternSetResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRegexPatternSetResponse]
$creadListPrec :: ReadPrec [DeleteRegexPatternSetResponse]
readPrec :: ReadPrec DeleteRegexPatternSetResponse
$creadPrec :: ReadPrec DeleteRegexPatternSetResponse
readList :: ReadS [DeleteRegexPatternSetResponse]
$creadList :: ReadS [DeleteRegexPatternSetResponse]
readsPrec :: Int -> ReadS DeleteRegexPatternSetResponse
$creadsPrec :: Int -> ReadS DeleteRegexPatternSetResponse
Prelude.Read, Int -> DeleteRegexPatternSetResponse -> ShowS
[DeleteRegexPatternSetResponse] -> ShowS
DeleteRegexPatternSetResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRegexPatternSetResponse] -> ShowS
$cshowList :: [DeleteRegexPatternSetResponse] -> ShowS
show :: DeleteRegexPatternSetResponse -> String
$cshow :: DeleteRegexPatternSetResponse -> String
showsPrec :: Int -> DeleteRegexPatternSetResponse -> ShowS
$cshowsPrec :: Int -> DeleteRegexPatternSetResponse -> ShowS
Prelude.Show, forall x.
Rep DeleteRegexPatternSetResponse x
-> DeleteRegexPatternSetResponse
forall x.
DeleteRegexPatternSetResponse
-> Rep DeleteRegexPatternSetResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DeleteRegexPatternSetResponse x
-> DeleteRegexPatternSetResponse
$cfrom :: forall x.
DeleteRegexPatternSetResponse
-> Rep DeleteRegexPatternSetResponse x
Prelude.Generic)

-- |
-- Create a value of 'DeleteRegexPatternSetResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'httpStatus', 'deleteRegexPatternSetResponse_httpStatus' - The response's http status code.
newDeleteRegexPatternSetResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  DeleteRegexPatternSetResponse
newDeleteRegexPatternSetResponse :: Int -> DeleteRegexPatternSetResponse
newDeleteRegexPatternSetResponse Int
pHttpStatus_ =
  DeleteRegexPatternSetResponse'
    { $sel:httpStatus:DeleteRegexPatternSetResponse' :: Int
httpStatus =
        Int
pHttpStatus_
    }

-- | The response's http status code.
deleteRegexPatternSetResponse_httpStatus :: Lens.Lens' DeleteRegexPatternSetResponse Prelude.Int
deleteRegexPatternSetResponse_httpStatus :: Lens' DeleteRegexPatternSetResponse Int
deleteRegexPatternSetResponse_httpStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRegexPatternSetResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteRegexPatternSetResponse' :: DeleteRegexPatternSetResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DeleteRegexPatternSetResponse
s@DeleteRegexPatternSetResponse' {} Int
a -> DeleteRegexPatternSetResponse
s {$sel:httpStatus:DeleteRegexPatternSetResponse' :: Int
httpStatus = Int
a} :: DeleteRegexPatternSetResponse)

instance Prelude.NFData DeleteRegexPatternSetResponse where
  rnf :: DeleteRegexPatternSetResponse -> ()
rnf DeleteRegexPatternSetResponse' {Int
httpStatus :: Int
$sel:httpStatus:DeleteRegexPatternSetResponse' :: DeleteRegexPatternSetResponse -> Int
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus