{-# 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.UpdateIPSet
-- 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
-- <https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html AWS WAF Classic>
-- in the developer guide.
--
-- __For the latest version of AWS WAF__, use the AWS WAFV2 API and see the
-- <https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html AWS WAF Developer Guide>.
-- With the latest version, AWS WAF has a single set of endpoints for
-- regional and global use.
--
-- Inserts or deletes IPSetDescriptor objects in an @IPSet@. For each
-- @IPSetDescriptor@ object, you specify the following values:
--
-- -   Whether to insert or delete the object from the array. If you want
--     to change an @IPSetDescriptor@ object, you delete the existing
--     object and add a new one.
--
-- -   The IP address version, @IPv4@ or @IPv6@.
--
-- -   The IP address in CIDR notation, for example, @192.0.2.0\/24@ (for
--     the range of IP addresses from @192.0.2.0@ to @192.0.2.255@) or
--     @192.0.2.44\/32@ (for the individual IP address @192.0.2.44@).
--
-- AWS WAF supports IPv4 address ranges: \/8 and any range between \/16
-- through \/32. AWS WAF supports IPv6 address ranges: \/24, \/32, \/48,
-- \/56, \/64, and \/128. For more information about CIDR notation, see the
-- Wikipedia entry
-- <https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing Classless Inter-Domain Routing>.
--
-- IPv6 addresses can be represented using any of the following formats:
--
-- -   1111:0000:0000:0000:0000:0000:0000:0111\/128
--
-- -   1111:0:0:0:0:0:0:0111\/128
--
-- -   1111::0111\/128
--
-- -   1111::111\/128
--
-- You use an @IPSet@ to specify which web requests you want to allow or
-- block based on the IP addresses that the requests originated from. For
-- example, if you\'re receiving a lot of requests from one or a small
-- number of IP addresses and you want to block the requests, you can
-- create an @IPSet@ that specifies those IP addresses, and then configure
-- AWS WAF to block the requests.
--
-- To create and configure an @IPSet@, perform the following steps:
--
-- 1.  Submit a CreateIPSet request.
--
-- 2.  Use GetChangeToken to get the change token that you provide in the
--     @ChangeToken@ parameter of an UpdateIPSet request.
--
-- 3.  Submit an @UpdateIPSet@ request to specify the IP addresses that you
--     want AWS WAF to watch for.
--
-- When you update an @IPSet@, you specify the IP addresses that you want
-- to add and\/or the IP addresses that you want to delete. If you want to
-- change an IP address, you delete the existing IP address and add the new
-- one.
--
-- You can insert a maximum of 1000 addresses in a single request.
--
-- For more information about how to use the AWS WAF API to allow or block
-- HTTP requests, see the
-- <https://docs.aws.amazon.com/waf/latest/developerguide/ AWS WAF Developer Guide>.
module Amazonka.WAFRegional.UpdateIPSet
  ( -- * Creating a Request
    UpdateIPSet (..),
    newUpdateIPSet,

    -- * Request Lenses
    updateIPSet_iPSetId,
    updateIPSet_changeToken,
    updateIPSet_updates,

    -- * Destructuring the Response
    UpdateIPSetResponse (..),
    newUpdateIPSetResponse,

    -- * Response Lenses
    updateIPSetResponse_changeToken,
    updateIPSetResponse_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:/ 'newUpdateIPSet' smart constructor.
data UpdateIPSet = UpdateIPSet'
  { -- | The @IPSetId@ of the IPSet that you want to update. @IPSetId@ is
    -- returned by CreateIPSet and by ListIPSets.
    UpdateIPSet -> Text
iPSetId :: Prelude.Text,
    -- | The value returned by the most recent call to GetChangeToken.
    UpdateIPSet -> Text
changeToken :: Prelude.Text,
    -- | An array of @IPSetUpdate@ objects that you want to insert into or delete
    -- from an IPSet. For more information, see the applicable data types:
    --
    -- -   IPSetUpdate: Contains @Action@ and @IPSetDescriptor@
    --
    -- -   IPSetDescriptor: Contains @Type@ and @Value@
    --
    -- You can insert a maximum of 1000 addresses in a single request.
    UpdateIPSet -> NonEmpty IPSetUpdate
updates :: Prelude.NonEmpty IPSetUpdate
  }
  deriving (UpdateIPSet -> UpdateIPSet -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateIPSet -> UpdateIPSet -> Bool
$c/= :: UpdateIPSet -> UpdateIPSet -> Bool
== :: UpdateIPSet -> UpdateIPSet -> Bool
$c== :: UpdateIPSet -> UpdateIPSet -> Bool
Prelude.Eq, ReadPrec [UpdateIPSet]
ReadPrec UpdateIPSet
Int -> ReadS UpdateIPSet
ReadS [UpdateIPSet]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateIPSet]
$creadListPrec :: ReadPrec [UpdateIPSet]
readPrec :: ReadPrec UpdateIPSet
$creadPrec :: ReadPrec UpdateIPSet
readList :: ReadS [UpdateIPSet]
$creadList :: ReadS [UpdateIPSet]
readsPrec :: Int -> ReadS UpdateIPSet
$creadsPrec :: Int -> ReadS UpdateIPSet
Prelude.Read, Int -> UpdateIPSet -> ShowS
[UpdateIPSet] -> ShowS
UpdateIPSet -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateIPSet] -> ShowS
$cshowList :: [UpdateIPSet] -> ShowS
show :: UpdateIPSet -> String
$cshow :: UpdateIPSet -> String
showsPrec :: Int -> UpdateIPSet -> ShowS
$cshowsPrec :: Int -> UpdateIPSet -> ShowS
Prelude.Show, forall x. Rep UpdateIPSet x -> UpdateIPSet
forall x. UpdateIPSet -> Rep UpdateIPSet x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateIPSet x -> UpdateIPSet
$cfrom :: forall x. UpdateIPSet -> Rep UpdateIPSet x
Prelude.Generic)

-- |
-- Create a value of 'UpdateIPSet' 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:
--
-- 'iPSetId', 'updateIPSet_iPSetId' - The @IPSetId@ of the IPSet that you want to update. @IPSetId@ is
-- returned by CreateIPSet and by ListIPSets.
--
-- 'changeToken', 'updateIPSet_changeToken' - The value returned by the most recent call to GetChangeToken.
--
-- 'updates', 'updateIPSet_updates' - An array of @IPSetUpdate@ objects that you want to insert into or delete
-- from an IPSet. For more information, see the applicable data types:
--
-- -   IPSetUpdate: Contains @Action@ and @IPSetDescriptor@
--
-- -   IPSetDescriptor: Contains @Type@ and @Value@
--
-- You can insert a maximum of 1000 addresses in a single request.
newUpdateIPSet ::
  -- | 'iPSetId'
  Prelude.Text ->
  -- | 'changeToken'
  Prelude.Text ->
  -- | 'updates'
  Prelude.NonEmpty IPSetUpdate ->
  UpdateIPSet
newUpdateIPSet :: Text -> Text -> NonEmpty IPSetUpdate -> UpdateIPSet
newUpdateIPSet Text
pIPSetId_ Text
pChangeToken_ NonEmpty IPSetUpdate
pUpdates_ =
  UpdateIPSet'
    { $sel:iPSetId:UpdateIPSet' :: Text
iPSetId = Text
pIPSetId_,
      $sel:changeToken:UpdateIPSet' :: Text
changeToken = Text
pChangeToken_,
      $sel:updates:UpdateIPSet' :: NonEmpty IPSetUpdate
updates = forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced forall t b. AReview t b -> b -> t
Lens.# NonEmpty IPSetUpdate
pUpdates_
    }

-- | The @IPSetId@ of the IPSet that you want to update. @IPSetId@ is
-- returned by CreateIPSet and by ListIPSets.
updateIPSet_iPSetId :: Lens.Lens' UpdateIPSet Prelude.Text
updateIPSet_iPSetId :: Lens' UpdateIPSet Text
updateIPSet_iPSetId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {Text
iPSetId :: Text
$sel:iPSetId:UpdateIPSet' :: UpdateIPSet -> Text
iPSetId} -> Text
iPSetId) (\s :: UpdateIPSet
s@UpdateIPSet' {} Text
a -> UpdateIPSet
s {$sel:iPSetId:UpdateIPSet' :: Text
iPSetId = Text
a} :: UpdateIPSet)

-- | The value returned by the most recent call to GetChangeToken.
updateIPSet_changeToken :: Lens.Lens' UpdateIPSet Prelude.Text
updateIPSet_changeToken :: Lens' UpdateIPSet Text
updateIPSet_changeToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {Text
changeToken :: Text
$sel:changeToken:UpdateIPSet' :: UpdateIPSet -> Text
changeToken} -> Text
changeToken) (\s :: UpdateIPSet
s@UpdateIPSet' {} Text
a -> UpdateIPSet
s {$sel:changeToken:UpdateIPSet' :: Text
changeToken = Text
a} :: UpdateIPSet)

-- | An array of @IPSetUpdate@ objects that you want to insert into or delete
-- from an IPSet. For more information, see the applicable data types:
--
-- -   IPSetUpdate: Contains @Action@ and @IPSetDescriptor@
--
-- -   IPSetDescriptor: Contains @Type@ and @Value@
--
-- You can insert a maximum of 1000 addresses in a single request.
updateIPSet_updates :: Lens.Lens' UpdateIPSet (Prelude.NonEmpty IPSetUpdate)
updateIPSet_updates :: Lens' UpdateIPSet (NonEmpty IPSetUpdate)
updateIPSet_updates = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {NonEmpty IPSetUpdate
updates :: NonEmpty IPSetUpdate
$sel:updates:UpdateIPSet' :: UpdateIPSet -> NonEmpty IPSetUpdate
updates} -> NonEmpty IPSetUpdate
updates) (\s :: UpdateIPSet
s@UpdateIPSet' {} NonEmpty IPSetUpdate
a -> UpdateIPSet
s {$sel:updates:UpdateIPSet' :: NonEmpty IPSetUpdate
updates = NonEmpty IPSetUpdate
a} :: UpdateIPSet) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Core.AWSRequest UpdateIPSet where
  type AWSResponse UpdateIPSet = UpdateIPSetResponse
  request :: (Service -> Service) -> UpdateIPSet -> Request UpdateIPSet
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 UpdateIPSet
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateIPSet)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
      ( \Int
s ResponseHeaders
h Object
x ->
          Maybe Text -> Int -> UpdateIPSetResponse
UpdateIPSetResponse'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Either String (Maybe a)
Data..?> Key
"ChangeToken")
            forall (f :: * -> *) a b. Applicative f => 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 UpdateIPSet where
  hashWithSalt :: Int -> UpdateIPSet -> Int
hashWithSalt Int
_salt UpdateIPSet' {NonEmpty IPSetUpdate
Text
updates :: NonEmpty IPSetUpdate
changeToken :: Text
iPSetId :: Text
$sel:updates:UpdateIPSet' :: UpdateIPSet -> NonEmpty IPSetUpdate
$sel:changeToken:UpdateIPSet' :: UpdateIPSet -> Text
$sel:iPSetId:UpdateIPSet' :: UpdateIPSet -> Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
iPSetId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
changeToken
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` NonEmpty IPSetUpdate
updates

instance Prelude.NFData UpdateIPSet where
  rnf :: UpdateIPSet -> ()
rnf UpdateIPSet' {NonEmpty IPSetUpdate
Text
updates :: NonEmpty IPSetUpdate
changeToken :: Text
iPSetId :: Text
$sel:updates:UpdateIPSet' :: UpdateIPSet -> NonEmpty IPSetUpdate
$sel:changeToken:UpdateIPSet' :: UpdateIPSet -> Text
$sel:iPSetId:UpdateIPSet' :: UpdateIPSet -> Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Text
iPSetId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
changeToken
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf NonEmpty IPSetUpdate
updates

instance Data.ToHeaders UpdateIPSet where
  toHeaders :: UpdateIPSet -> 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_Regional_20161128.UpdateIPSet" ::
                          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 UpdateIPSet where
  toJSON :: UpdateIPSet -> Value
toJSON UpdateIPSet' {NonEmpty IPSetUpdate
Text
updates :: NonEmpty IPSetUpdate
changeToken :: Text
iPSetId :: Text
$sel:updates:UpdateIPSet' :: UpdateIPSet -> NonEmpty IPSetUpdate
$sel:changeToken:UpdateIPSet' :: UpdateIPSet -> Text
$sel:iPSetId:UpdateIPSet' :: UpdateIPSet -> Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ forall a. a -> Maybe a
Prelude.Just (Key
"IPSetId" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
iPSetId),
            forall a. a -> Maybe a
Prelude.Just (Key
"ChangeToken" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
changeToken),
            forall a. a -> Maybe a
Prelude.Just (Key
"Updates" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= NonEmpty IPSetUpdate
updates)
          ]
      )

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

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

-- | /See:/ 'newUpdateIPSetResponse' smart constructor.
data UpdateIPSetResponse = UpdateIPSetResponse'
  { -- | The @ChangeToken@ that you used to submit the @UpdateIPSet@ request. You
    -- can also use this value to query the status of the request. For more
    -- information, see GetChangeTokenStatus.
    UpdateIPSetResponse -> Maybe Text
changeToken :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    UpdateIPSetResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
$c/= :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
== :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
$c== :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
Prelude.Eq, ReadPrec [UpdateIPSetResponse]
ReadPrec UpdateIPSetResponse
Int -> ReadS UpdateIPSetResponse
ReadS [UpdateIPSetResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateIPSetResponse]
$creadListPrec :: ReadPrec [UpdateIPSetResponse]
readPrec :: ReadPrec UpdateIPSetResponse
$creadPrec :: ReadPrec UpdateIPSetResponse
readList :: ReadS [UpdateIPSetResponse]
$creadList :: ReadS [UpdateIPSetResponse]
readsPrec :: Int -> ReadS UpdateIPSetResponse
$creadsPrec :: Int -> ReadS UpdateIPSetResponse
Prelude.Read, Int -> UpdateIPSetResponse -> ShowS
[UpdateIPSetResponse] -> ShowS
UpdateIPSetResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateIPSetResponse] -> ShowS
$cshowList :: [UpdateIPSetResponse] -> ShowS
show :: UpdateIPSetResponse -> String
$cshow :: UpdateIPSetResponse -> String
showsPrec :: Int -> UpdateIPSetResponse -> ShowS
$cshowsPrec :: Int -> UpdateIPSetResponse -> ShowS
Prelude.Show, forall x. Rep UpdateIPSetResponse x -> UpdateIPSetResponse
forall x. UpdateIPSetResponse -> Rep UpdateIPSetResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateIPSetResponse x -> UpdateIPSetResponse
$cfrom :: forall x. UpdateIPSetResponse -> Rep UpdateIPSetResponse x
Prelude.Generic)

-- |
-- Create a value of 'UpdateIPSetResponse' 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:
--
-- 'changeToken', 'updateIPSetResponse_changeToken' - The @ChangeToken@ that you used to submit the @UpdateIPSet@ request. You
-- can also use this value to query the status of the request. For more
-- information, see GetChangeTokenStatus.
--
-- 'httpStatus', 'updateIPSetResponse_httpStatus' - The response's http status code.
newUpdateIPSetResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  UpdateIPSetResponse
newUpdateIPSetResponse :: Int -> UpdateIPSetResponse
newUpdateIPSetResponse Int
pHttpStatus_ =
  UpdateIPSetResponse'
    { $sel:changeToken:UpdateIPSetResponse' :: Maybe Text
changeToken = forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:UpdateIPSetResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The @ChangeToken@ that you used to submit the @UpdateIPSet@ request. You
-- can also use this value to query the status of the request. For more
-- information, see GetChangeTokenStatus.
updateIPSetResponse_changeToken :: Lens.Lens' UpdateIPSetResponse (Prelude.Maybe Prelude.Text)
updateIPSetResponse_changeToken :: Lens' UpdateIPSetResponse (Maybe Text)
updateIPSetResponse_changeToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSetResponse' {Maybe Text
changeToken :: Maybe Text
$sel:changeToken:UpdateIPSetResponse' :: UpdateIPSetResponse -> Maybe Text
changeToken} -> Maybe Text
changeToken) (\s :: UpdateIPSetResponse
s@UpdateIPSetResponse' {} Maybe Text
a -> UpdateIPSetResponse
s {$sel:changeToken:UpdateIPSetResponse' :: Maybe Text
changeToken = Maybe Text
a} :: UpdateIPSetResponse)

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

instance Prelude.NFData UpdateIPSetResponse where
  rnf :: UpdateIPSetResponse -> ()
rnf UpdateIPSetResponse' {Int
Maybe Text
httpStatus :: Int
changeToken :: Maybe Text
$sel:httpStatus:UpdateIPSetResponse' :: UpdateIPSetResponse -> Int
$sel:changeToken:UpdateIPSetResponse' :: UpdateIPSetResponse -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
changeToken
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus