{-# 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.ApiGatewayV2.DeleteAuthorizer
-- 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 an Authorizer.
module Amazonka.ApiGatewayV2.DeleteAuthorizer
  ( -- * Creating a Request
    DeleteAuthorizer (..),
    newDeleteAuthorizer,

    -- * Request Lenses
    deleteAuthorizer_authorizerId,
    deleteAuthorizer_apiId,

    -- * Destructuring the Response
    DeleteAuthorizerResponse (..),
    newDeleteAuthorizerResponse,
  )
where

import Amazonka.ApiGatewayV2.Types
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

-- | /See:/ 'newDeleteAuthorizer' smart constructor.
data DeleteAuthorizer = DeleteAuthorizer'
  { -- | The authorizer identifier.
    DeleteAuthorizer -> Text
authorizerId :: Prelude.Text,
    -- | The API identifier.
    DeleteAuthorizer -> Text
apiId :: Prelude.Text
  }
  deriving (DeleteAuthorizer -> DeleteAuthorizer -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DeleteAuthorizer -> DeleteAuthorizer -> Bool
$c/= :: DeleteAuthorizer -> DeleteAuthorizer -> Bool
== :: DeleteAuthorizer -> DeleteAuthorizer -> Bool
$c== :: DeleteAuthorizer -> DeleteAuthorizer -> Bool
Prelude.Eq, ReadPrec [DeleteAuthorizer]
ReadPrec DeleteAuthorizer
Int -> ReadS DeleteAuthorizer
ReadS [DeleteAuthorizer]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DeleteAuthorizer]
$creadListPrec :: ReadPrec [DeleteAuthorizer]
readPrec :: ReadPrec DeleteAuthorizer
$creadPrec :: ReadPrec DeleteAuthorizer
readList :: ReadS [DeleteAuthorizer]
$creadList :: ReadS [DeleteAuthorizer]
readsPrec :: Int -> ReadS DeleteAuthorizer
$creadsPrec :: Int -> ReadS DeleteAuthorizer
Prelude.Read, Int -> DeleteAuthorizer -> ShowS
[DeleteAuthorizer] -> ShowS
DeleteAuthorizer -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DeleteAuthorizer] -> ShowS
$cshowList :: [DeleteAuthorizer] -> ShowS
show :: DeleteAuthorizer -> String
$cshow :: DeleteAuthorizer -> String
showsPrec :: Int -> DeleteAuthorizer -> ShowS
$cshowsPrec :: Int -> DeleteAuthorizer -> ShowS
Prelude.Show, forall x. Rep DeleteAuthorizer x -> DeleteAuthorizer
forall x. DeleteAuthorizer -> Rep DeleteAuthorizer x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DeleteAuthorizer x -> DeleteAuthorizer
$cfrom :: forall x. DeleteAuthorizer -> Rep DeleteAuthorizer x
Prelude.Generic)

-- |
-- Create a value of 'DeleteAuthorizer' 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:
--
-- 'authorizerId', 'deleteAuthorizer_authorizerId' - The authorizer identifier.
--
-- 'apiId', 'deleteAuthorizer_apiId' - The API identifier.
newDeleteAuthorizer ::
  -- | 'authorizerId'
  Prelude.Text ->
  -- | 'apiId'
  Prelude.Text ->
  DeleteAuthorizer
newDeleteAuthorizer :: Text -> Text -> DeleteAuthorizer
newDeleteAuthorizer Text
pAuthorizerId_ Text
pApiId_ =
  DeleteAuthorizer'
    { $sel:authorizerId:DeleteAuthorizer' :: Text
authorizerId = Text
pAuthorizerId_,
      $sel:apiId:DeleteAuthorizer' :: Text
apiId = Text
pApiId_
    }

-- | The authorizer identifier.
deleteAuthorizer_authorizerId :: Lens.Lens' DeleteAuthorizer Prelude.Text
deleteAuthorizer_authorizerId :: Lens' DeleteAuthorizer Text
deleteAuthorizer_authorizerId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAuthorizer' {Text
authorizerId :: Text
$sel:authorizerId:DeleteAuthorizer' :: DeleteAuthorizer -> Text
authorizerId} -> Text
authorizerId) (\s :: DeleteAuthorizer
s@DeleteAuthorizer' {} Text
a -> DeleteAuthorizer
s {$sel:authorizerId:DeleteAuthorizer' :: Text
authorizerId = Text
a} :: DeleteAuthorizer)

-- | The API identifier.
deleteAuthorizer_apiId :: Lens.Lens' DeleteAuthorizer Prelude.Text
deleteAuthorizer_apiId :: Lens' DeleteAuthorizer Text
deleteAuthorizer_apiId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DeleteAuthorizer' {Text
apiId :: Text
$sel:apiId:DeleteAuthorizer' :: DeleteAuthorizer -> Text
apiId} -> Text
apiId) (\s :: DeleteAuthorizer
s@DeleteAuthorizer' {} Text
a -> DeleteAuthorizer
s {$sel:apiId:DeleteAuthorizer' :: Text
apiId = Text
a} :: DeleteAuthorizer)

instance Core.AWSRequest DeleteAuthorizer where
  type
    AWSResponse DeleteAuthorizer =
      DeleteAuthorizerResponse
  request :: (Service -> Service)
-> DeleteAuthorizer -> Request DeleteAuthorizer
request Service -> Service
overrides =
    forall a. ToRequest a => Service -> a -> Request a
Request.delete (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy DeleteAuthorizer
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DeleteAuthorizer)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
AWSResponse a
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveNull DeleteAuthorizerResponse
DeleteAuthorizerResponse'

instance Prelude.Hashable DeleteAuthorizer where
  hashWithSalt :: Int -> DeleteAuthorizer -> Int
hashWithSalt Int
_salt DeleteAuthorizer' {Text
apiId :: Text
authorizerId :: Text
$sel:apiId:DeleteAuthorizer' :: DeleteAuthorizer -> Text
$sel:authorizerId:DeleteAuthorizer' :: DeleteAuthorizer -> Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
authorizerId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
apiId

instance Prelude.NFData DeleteAuthorizer where
  rnf :: DeleteAuthorizer -> ()
rnf DeleteAuthorizer' {Text
apiId :: Text
authorizerId :: Text
$sel:apiId:DeleteAuthorizer' :: DeleteAuthorizer -> Text
$sel:authorizerId:DeleteAuthorizer' :: DeleteAuthorizer -> Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Text
authorizerId
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
apiId

instance Data.ToHeaders DeleteAuthorizer where
  toHeaders :: DeleteAuthorizer -> [Header]
toHeaders =
    forall a b. a -> b -> a
Prelude.const
      ( forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> [Header]
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Data.ToPath DeleteAuthorizer where
  toPath :: DeleteAuthorizer -> ByteString
toPath DeleteAuthorizer' {Text
apiId :: Text
authorizerId :: Text
$sel:apiId:DeleteAuthorizer' :: DeleteAuthorizer -> Text
$sel:authorizerId:DeleteAuthorizer' :: DeleteAuthorizer -> Text
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ ByteString
"/v2/apis/",
        forall a. ToByteString a => a -> ByteString
Data.toBS Text
apiId,
        ByteString
"/authorizers/",
        forall a. ToByteString a => a -> ByteString
Data.toBS Text
authorizerId
      ]

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

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

-- |
-- Create a value of 'DeleteAuthorizerResponse' 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.
newDeleteAuthorizerResponse ::
  DeleteAuthorizerResponse
newDeleteAuthorizerResponse :: DeleteAuthorizerResponse
newDeleteAuthorizerResponse =
  DeleteAuthorizerResponse
DeleteAuthorizerResponse'

instance Prelude.NFData DeleteAuthorizerResponse where
  rnf :: DeleteAuthorizerResponse -> ()
rnf DeleteAuthorizerResponse
_ = ()