amazonka-apigateway-2.0: gen/Amazonka/APIGateway/DeleteUsagePlanKey.hs
{-# 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.APIGateway.DeleteUsagePlanKey
-- 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 a usage plan key and remove the underlying API key from the
-- associated usage plan.
module Amazonka.APIGateway.DeleteUsagePlanKey
( -- * Creating a Request
DeleteUsagePlanKey (..),
newDeleteUsagePlanKey,
-- * Request Lenses
deleteUsagePlanKey_usagePlanId,
deleteUsagePlanKey_keyId,
-- * Destructuring the Response
DeleteUsagePlanKeyResponse (..),
newDeleteUsagePlanKeyResponse,
)
where
import Amazonka.APIGateway.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
-- | The DELETE request to delete a usage plan key and remove the underlying
-- API key from the associated usage plan.
--
-- /See:/ 'newDeleteUsagePlanKey' smart constructor.
data DeleteUsagePlanKey = DeleteUsagePlanKey'
{ -- | The Id of the UsagePlan resource representing the usage plan containing
-- the to-be-deleted UsagePlanKey resource representing a plan customer.
usagePlanId :: Prelude.Text,
-- | The Id of the UsagePlanKey resource to be deleted.
keyId :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteUsagePlanKey' 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:
--
-- 'usagePlanId', 'deleteUsagePlanKey_usagePlanId' - The Id of the UsagePlan resource representing the usage plan containing
-- the to-be-deleted UsagePlanKey resource representing a plan customer.
--
-- 'keyId', 'deleteUsagePlanKey_keyId' - The Id of the UsagePlanKey resource to be deleted.
newDeleteUsagePlanKey ::
-- | 'usagePlanId'
Prelude.Text ->
-- | 'keyId'
Prelude.Text ->
DeleteUsagePlanKey
newDeleteUsagePlanKey pUsagePlanId_ pKeyId_ =
DeleteUsagePlanKey'
{ usagePlanId = pUsagePlanId_,
keyId = pKeyId_
}
-- | The Id of the UsagePlan resource representing the usage plan containing
-- the to-be-deleted UsagePlanKey resource representing a plan customer.
deleteUsagePlanKey_usagePlanId :: Lens.Lens' DeleteUsagePlanKey Prelude.Text
deleteUsagePlanKey_usagePlanId = Lens.lens (\DeleteUsagePlanKey' {usagePlanId} -> usagePlanId) (\s@DeleteUsagePlanKey' {} a -> s {usagePlanId = a} :: DeleteUsagePlanKey)
-- | The Id of the UsagePlanKey resource to be deleted.
deleteUsagePlanKey_keyId :: Lens.Lens' DeleteUsagePlanKey Prelude.Text
deleteUsagePlanKey_keyId = Lens.lens (\DeleteUsagePlanKey' {keyId} -> keyId) (\s@DeleteUsagePlanKey' {} a -> s {keyId = a} :: DeleteUsagePlanKey)
instance Core.AWSRequest DeleteUsagePlanKey where
type
AWSResponse DeleteUsagePlanKey =
DeleteUsagePlanKeyResponse
request overrides =
Request.delete (overrides defaultService)
response =
Response.receiveNull DeleteUsagePlanKeyResponse'
instance Prelude.Hashable DeleteUsagePlanKey where
hashWithSalt _salt DeleteUsagePlanKey' {..} =
_salt
`Prelude.hashWithSalt` usagePlanId
`Prelude.hashWithSalt` keyId
instance Prelude.NFData DeleteUsagePlanKey where
rnf DeleteUsagePlanKey' {..} =
Prelude.rnf usagePlanId
`Prelude.seq` Prelude.rnf keyId
instance Data.ToHeaders DeleteUsagePlanKey where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Accept"
Data.=# ("application/json" :: Prelude.ByteString)
]
)
instance Data.ToPath DeleteUsagePlanKey where
toPath DeleteUsagePlanKey' {..} =
Prelude.mconcat
[ "/usageplans/",
Data.toBS usagePlanId,
"/keys/",
Data.toBS keyId
]
instance Data.ToQuery DeleteUsagePlanKey where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newDeleteUsagePlanKeyResponse' smart constructor.
data DeleteUsagePlanKeyResponse = DeleteUsagePlanKeyResponse'
{
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteUsagePlanKeyResponse' 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.
newDeleteUsagePlanKeyResponse ::
DeleteUsagePlanKeyResponse
newDeleteUsagePlanKeyResponse =
DeleteUsagePlanKeyResponse'
instance Prelude.NFData DeleteUsagePlanKeyResponse where
rnf _ = ()