{-# 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.NetworkFirewall.DeleteRuleGroup
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Deletes the specified RuleGroup.
module Amazonka.NetworkFirewall.DeleteRuleGroup
  ( -- * Creating a Request
    DeleteRuleGroup (..),
    newDeleteRuleGroup,

    -- * Request Lenses
    deleteRuleGroup_ruleGroupArn,
    deleteRuleGroup_type,
    deleteRuleGroup_ruleGroupName,

    -- * Destructuring the Response
    DeleteRuleGroupResponse (..),
    newDeleteRuleGroupResponse,

    -- * Response Lenses
    deleteRuleGroupResponse_httpStatus,
    deleteRuleGroupResponse_ruleGroupResponse,
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import Amazonka.NetworkFirewall.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

-- | /See:/ 'newDeleteRuleGroup' smart constructor.
data DeleteRuleGroup = DeleteRuleGroup'
  { -- | The Amazon Resource Name (ARN) of the rule group.
    --
    -- You must specify the ARN or the name, and you can specify both.
    DeleteRuleGroup -> Maybe Text
ruleGroupArn :: Prelude.Maybe Prelude.Text,
    -- | Indicates whether the rule group is stateless or stateful. If the rule
    -- group is stateless, it contains stateless rules. If it is stateful, it
    -- contains stateful rules.
    --
    -- This setting is required for requests that do not include the
    -- @RuleGroupARN@.
    DeleteRuleGroup -> Maybe RuleGroupType
type' :: Prelude.Maybe RuleGroupType,
    -- | The descriptive name of the rule group. You can\'t change the name of a
    -- rule group after you create it.
    --
    -- You must specify the ARN or the name, and you can specify both.
    DeleteRuleGroup -> Maybe Text
ruleGroupName :: Prelude.Maybe Prelude.Text
  }
  deriving (DeleteRuleGroup -> DeleteRuleGroup -> Bool
(DeleteRuleGroup -> DeleteRuleGroup -> Bool)
-> (DeleteRuleGroup -> DeleteRuleGroup -> Bool)
-> Eq DeleteRuleGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRuleGroup -> DeleteRuleGroup -> Bool
$c/= :: DeleteRuleGroup -> DeleteRuleGroup -> Bool
== :: DeleteRuleGroup -> DeleteRuleGroup -> Bool
$c== :: DeleteRuleGroup -> DeleteRuleGroup -> Bool
Prelude.Eq, ReadPrec [DeleteRuleGroup]
ReadPrec DeleteRuleGroup
Int -> ReadS DeleteRuleGroup
ReadS [DeleteRuleGroup]
(Int -> ReadS DeleteRuleGroup)
-> ReadS [DeleteRuleGroup]
-> ReadPrec DeleteRuleGroup
-> ReadPrec [DeleteRuleGroup]
-> Read DeleteRuleGroup
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRuleGroup]
$creadListPrec :: ReadPrec [DeleteRuleGroup]
readPrec :: ReadPrec DeleteRuleGroup
$creadPrec :: ReadPrec DeleteRuleGroup
readList :: ReadS [DeleteRuleGroup]
$creadList :: ReadS [DeleteRuleGroup]
readsPrec :: Int -> ReadS DeleteRuleGroup
$creadsPrec :: Int -> ReadS DeleteRuleGroup
Prelude.Read, Int -> DeleteRuleGroup -> ShowS
[DeleteRuleGroup] -> ShowS
DeleteRuleGroup -> String
(Int -> DeleteRuleGroup -> ShowS)
-> (DeleteRuleGroup -> String)
-> ([DeleteRuleGroup] -> ShowS)
-> Show DeleteRuleGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRuleGroup] -> ShowS
$cshowList :: [DeleteRuleGroup] -> ShowS
show :: DeleteRuleGroup -> String
$cshow :: DeleteRuleGroup -> String
showsPrec :: Int -> DeleteRuleGroup -> ShowS
$cshowsPrec :: Int -> DeleteRuleGroup -> ShowS
Prelude.Show, (forall x. DeleteRuleGroup -> Rep DeleteRuleGroup x)
-> (forall x. Rep DeleteRuleGroup x -> DeleteRuleGroup)
-> Generic DeleteRuleGroup
forall x. Rep DeleteRuleGroup x -> DeleteRuleGroup
forall x. DeleteRuleGroup -> Rep DeleteRuleGroup x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteRuleGroup x -> DeleteRuleGroup
$cfrom :: forall x. DeleteRuleGroup -> Rep DeleteRuleGroup x
Prelude.Generic)

-- |
-- Create a value of 'DeleteRuleGroup' 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:
--
-- 'ruleGroupArn', 'deleteRuleGroup_ruleGroupArn' - The Amazon Resource Name (ARN) of the rule group.
--
-- You must specify the ARN or the name, and you can specify both.
--
-- 'type'', 'deleteRuleGroup_type' - Indicates whether the rule group is stateless or stateful. If the rule
-- group is stateless, it contains stateless rules. If it is stateful, it
-- contains stateful rules.
--
-- This setting is required for requests that do not include the
-- @RuleGroupARN@.
--
-- 'ruleGroupName', 'deleteRuleGroup_ruleGroupName' - The descriptive name of the rule group. You can\'t change the name of a
-- rule group after you create it.
--
-- You must specify the ARN or the name, and you can specify both.
newDeleteRuleGroup ::
  DeleteRuleGroup
newDeleteRuleGroup :: DeleteRuleGroup
newDeleteRuleGroup =
  DeleteRuleGroup' :: Maybe Text -> Maybe RuleGroupType -> Maybe Text -> DeleteRuleGroup
DeleteRuleGroup'
    { $sel:ruleGroupArn:DeleteRuleGroup' :: Maybe Text
ruleGroupArn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:type':DeleteRuleGroup' :: Maybe RuleGroupType
type' = Maybe RuleGroupType
forall a. Maybe a
Prelude.Nothing,
      $sel:ruleGroupName:DeleteRuleGroup' :: Maybe Text
ruleGroupName = Maybe Text
forall a. Maybe a
Prelude.Nothing
    }

-- | The Amazon Resource Name (ARN) of the rule group.
--
-- You must specify the ARN or the name, and you can specify both.
deleteRuleGroup_ruleGroupArn :: Lens.Lens' DeleteRuleGroup (Prelude.Maybe Prelude.Text)
deleteRuleGroup_ruleGroupArn :: (Maybe Text -> f (Maybe Text))
-> DeleteRuleGroup -> f DeleteRuleGroup
deleteRuleGroup_ruleGroupArn = (DeleteRuleGroup -> Maybe Text)
-> (DeleteRuleGroup -> Maybe Text -> DeleteRuleGroup)
-> Lens DeleteRuleGroup DeleteRuleGroup (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRuleGroup' {Maybe Text
ruleGroupArn :: Maybe Text
$sel:ruleGroupArn:DeleteRuleGroup' :: DeleteRuleGroup -> Maybe Text
ruleGroupArn} -> Maybe Text
ruleGroupArn) (\s :: DeleteRuleGroup
s@DeleteRuleGroup' {} Maybe Text
a -> DeleteRuleGroup
s {$sel:ruleGroupArn:DeleteRuleGroup' :: Maybe Text
ruleGroupArn = Maybe Text
a} :: DeleteRuleGroup)

-- | Indicates whether the rule group is stateless or stateful. If the rule
-- group is stateless, it contains stateless rules. If it is stateful, it
-- contains stateful rules.
--
-- This setting is required for requests that do not include the
-- @RuleGroupARN@.
deleteRuleGroup_type :: Lens.Lens' DeleteRuleGroup (Prelude.Maybe RuleGroupType)
deleteRuleGroup_type :: (Maybe RuleGroupType -> f (Maybe RuleGroupType))
-> DeleteRuleGroup -> f DeleteRuleGroup
deleteRuleGroup_type = (DeleteRuleGroup -> Maybe RuleGroupType)
-> (DeleteRuleGroup -> Maybe RuleGroupType -> DeleteRuleGroup)
-> Lens
     DeleteRuleGroup
     DeleteRuleGroup
     (Maybe RuleGroupType)
     (Maybe RuleGroupType)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRuleGroup' {Maybe RuleGroupType
type' :: Maybe RuleGroupType
$sel:type':DeleteRuleGroup' :: DeleteRuleGroup -> Maybe RuleGroupType
type'} -> Maybe RuleGroupType
type') (\s :: DeleteRuleGroup
s@DeleteRuleGroup' {} Maybe RuleGroupType
a -> DeleteRuleGroup
s {$sel:type':DeleteRuleGroup' :: Maybe RuleGroupType
type' = Maybe RuleGroupType
a} :: DeleteRuleGroup)

-- | The descriptive name of the rule group. You can\'t change the name of a
-- rule group after you create it.
--
-- You must specify the ARN or the name, and you can specify both.
deleteRuleGroup_ruleGroupName :: Lens.Lens' DeleteRuleGroup (Prelude.Maybe Prelude.Text)
deleteRuleGroup_ruleGroupName :: (Maybe Text -> f (Maybe Text))
-> DeleteRuleGroup -> f DeleteRuleGroup
deleteRuleGroup_ruleGroupName = (DeleteRuleGroup -> Maybe Text)
-> (DeleteRuleGroup -> Maybe Text -> DeleteRuleGroup)
-> Lens DeleteRuleGroup DeleteRuleGroup (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRuleGroup' {Maybe Text
ruleGroupName :: Maybe Text
$sel:ruleGroupName:DeleteRuleGroup' :: DeleteRuleGroup -> Maybe Text
ruleGroupName} -> Maybe Text
ruleGroupName) (\s :: DeleteRuleGroup
s@DeleteRuleGroup' {} Maybe Text
a -> DeleteRuleGroup
s {$sel:ruleGroupName:DeleteRuleGroup' :: Maybe Text
ruleGroupName = Maybe Text
a} :: DeleteRuleGroup)

instance Core.AWSRequest DeleteRuleGroup where
  type
    AWSResponse DeleteRuleGroup =
      DeleteRuleGroupResponse
  request :: DeleteRuleGroup -> Request DeleteRuleGroup
request = Service -> DeleteRuleGroup -> Request DeleteRuleGroup
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy DeleteRuleGroup
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteRuleGroup)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse DeleteRuleGroup))
-> Logger
-> Service
-> Proxy DeleteRuleGroup
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteRuleGroup)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
      ( \Int
s ResponseHeaders
h Object
x ->
          Int -> RuleGroupResponse -> DeleteRuleGroupResponse
DeleteRuleGroupResponse'
            (Int -> RuleGroupResponse -> DeleteRuleGroupResponse)
-> Either String Int
-> Either String (RuleGroupResponse -> DeleteRuleGroupResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
            Either String (RuleGroupResponse -> DeleteRuleGroupResponse)
-> Either String RuleGroupResponse
-> Either String DeleteRuleGroupResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String RuleGroupResponse
forall a. FromJSON a => Object -> Text -> Either String a
Core..:> Text
"RuleGroupResponse")
      )

instance Prelude.Hashable DeleteRuleGroup

instance Prelude.NFData DeleteRuleGroup

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

instance Core.ToJSON DeleteRuleGroup where
  toJSON :: DeleteRuleGroup -> Value
toJSON DeleteRuleGroup' {Maybe Text
Maybe RuleGroupType
ruleGroupName :: Maybe Text
type' :: Maybe RuleGroupType
ruleGroupArn :: Maybe Text
$sel:ruleGroupName:DeleteRuleGroup' :: DeleteRuleGroup -> Maybe Text
$sel:type':DeleteRuleGroup' :: DeleteRuleGroup -> Maybe RuleGroupType
$sel:ruleGroupArn:DeleteRuleGroup' :: DeleteRuleGroup -> Maybe Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"RuleGroupArn" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
ruleGroupArn,
            (Text
"Type" Text -> RuleGroupType -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (RuleGroupType -> Pair) -> Maybe RuleGroupType -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RuleGroupType
type',
            (Text
"RuleGroupName" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
ruleGroupName
          ]
      )

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

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

-- | /See:/ 'newDeleteRuleGroupResponse' smart constructor.
data DeleteRuleGroupResponse = DeleteRuleGroupResponse'
  { -- | The response's http status code.
    DeleteRuleGroupResponse -> Int
httpStatus :: Prelude.Int,
    -- | The high-level properties of a rule group. This, along with the
    -- RuleGroup, define the rule group. You can retrieve all objects for a
    -- rule group by calling DescribeRuleGroup.
    DeleteRuleGroupResponse -> RuleGroupResponse
ruleGroupResponse :: RuleGroupResponse
  }
  deriving (DeleteRuleGroupResponse -> DeleteRuleGroupResponse -> Bool
(DeleteRuleGroupResponse -> DeleteRuleGroupResponse -> Bool)
-> (DeleteRuleGroupResponse -> DeleteRuleGroupResponse -> Bool)
-> Eq DeleteRuleGroupResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteRuleGroupResponse -> DeleteRuleGroupResponse -> Bool
$c/= :: DeleteRuleGroupResponse -> DeleteRuleGroupResponse -> Bool
== :: DeleteRuleGroupResponse -> DeleteRuleGroupResponse -> Bool
$c== :: DeleteRuleGroupResponse -> DeleteRuleGroupResponse -> Bool
Prelude.Eq, ReadPrec [DeleteRuleGroupResponse]
ReadPrec DeleteRuleGroupResponse
Int -> ReadS DeleteRuleGroupResponse
ReadS [DeleteRuleGroupResponse]
(Int -> ReadS DeleteRuleGroupResponse)
-> ReadS [DeleteRuleGroupResponse]
-> ReadPrec DeleteRuleGroupResponse
-> ReadPrec [DeleteRuleGroupResponse]
-> Read DeleteRuleGroupResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteRuleGroupResponse]
$creadListPrec :: ReadPrec [DeleteRuleGroupResponse]
readPrec :: ReadPrec DeleteRuleGroupResponse
$creadPrec :: ReadPrec DeleteRuleGroupResponse
readList :: ReadS [DeleteRuleGroupResponse]
$creadList :: ReadS [DeleteRuleGroupResponse]
readsPrec :: Int -> ReadS DeleteRuleGroupResponse
$creadsPrec :: Int -> ReadS DeleteRuleGroupResponse
Prelude.Read, Int -> DeleteRuleGroupResponse -> ShowS
[DeleteRuleGroupResponse] -> ShowS
DeleteRuleGroupResponse -> String
(Int -> DeleteRuleGroupResponse -> ShowS)
-> (DeleteRuleGroupResponse -> String)
-> ([DeleteRuleGroupResponse] -> ShowS)
-> Show DeleteRuleGroupResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteRuleGroupResponse] -> ShowS
$cshowList :: [DeleteRuleGroupResponse] -> ShowS
show :: DeleteRuleGroupResponse -> String
$cshow :: DeleteRuleGroupResponse -> String
showsPrec :: Int -> DeleteRuleGroupResponse -> ShowS
$cshowsPrec :: Int -> DeleteRuleGroupResponse -> ShowS
Prelude.Show, (forall x.
 DeleteRuleGroupResponse -> Rep DeleteRuleGroupResponse x)
-> (forall x.
    Rep DeleteRuleGroupResponse x -> DeleteRuleGroupResponse)
-> Generic DeleteRuleGroupResponse
forall x. Rep DeleteRuleGroupResponse x -> DeleteRuleGroupResponse
forall x. DeleteRuleGroupResponse -> Rep DeleteRuleGroupResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteRuleGroupResponse x -> DeleteRuleGroupResponse
$cfrom :: forall x. DeleteRuleGroupResponse -> Rep DeleteRuleGroupResponse x
Prelude.Generic)

-- |
-- Create a value of 'DeleteRuleGroupResponse' 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', 'deleteRuleGroupResponse_httpStatus' - The response's http status code.
--
-- 'ruleGroupResponse', 'deleteRuleGroupResponse_ruleGroupResponse' - The high-level properties of a rule group. This, along with the
-- RuleGroup, define the rule group. You can retrieve all objects for a
-- rule group by calling DescribeRuleGroup.
newDeleteRuleGroupResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  -- | 'ruleGroupResponse'
  RuleGroupResponse ->
  DeleteRuleGroupResponse
newDeleteRuleGroupResponse :: Int -> RuleGroupResponse -> DeleteRuleGroupResponse
newDeleteRuleGroupResponse
  Int
pHttpStatus_
  RuleGroupResponse
pRuleGroupResponse_ =
    DeleteRuleGroupResponse' :: Int -> RuleGroupResponse -> DeleteRuleGroupResponse
DeleteRuleGroupResponse'
      { $sel:httpStatus:DeleteRuleGroupResponse' :: Int
httpStatus = Int
pHttpStatus_,
        $sel:ruleGroupResponse:DeleteRuleGroupResponse' :: RuleGroupResponse
ruleGroupResponse = RuleGroupResponse
pRuleGroupResponse_
      }

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

-- | The high-level properties of a rule group. This, along with the
-- RuleGroup, define the rule group. You can retrieve all objects for a
-- rule group by calling DescribeRuleGroup.
deleteRuleGroupResponse_ruleGroupResponse :: Lens.Lens' DeleteRuleGroupResponse RuleGroupResponse
deleteRuleGroupResponse_ruleGroupResponse :: (RuleGroupResponse -> f RuleGroupResponse)
-> DeleteRuleGroupResponse -> f DeleteRuleGroupResponse
deleteRuleGroupResponse_ruleGroupResponse = (DeleteRuleGroupResponse -> RuleGroupResponse)
-> (DeleteRuleGroupResponse
    -> RuleGroupResponse -> DeleteRuleGroupResponse)
-> Lens
     DeleteRuleGroupResponse
     DeleteRuleGroupResponse
     RuleGroupResponse
     RuleGroupResponse
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteRuleGroupResponse' {RuleGroupResponse
ruleGroupResponse :: RuleGroupResponse
$sel:ruleGroupResponse:DeleteRuleGroupResponse' :: DeleteRuleGroupResponse -> RuleGroupResponse
ruleGroupResponse} -> RuleGroupResponse
ruleGroupResponse) (\s :: DeleteRuleGroupResponse
s@DeleteRuleGroupResponse' {} RuleGroupResponse
a -> DeleteRuleGroupResponse
s {$sel:ruleGroupResponse:DeleteRuleGroupResponse' :: RuleGroupResponse
ruleGroupResponse = RuleGroupResponse
a} :: DeleteRuleGroupResponse)

instance Prelude.NFData DeleteRuleGroupResponse