amazonka-pinpoint-email-2.0: gen/Amazonka/PinpointEmail/DeleteDedicatedIpPool.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.PinpointEmail.DeleteDedicatedIpPool
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Delete a dedicated IP pool.
module Amazonka.PinpointEmail.DeleteDedicatedIpPool
( -- * Creating a Request
DeleteDedicatedIpPool (..),
newDeleteDedicatedIpPool,
-- * Request Lenses
deleteDedicatedIpPool_poolName,
-- * Destructuring the Response
DeleteDedicatedIpPoolResponse (..),
newDeleteDedicatedIpPoolResponse,
-- * Response Lenses
deleteDedicatedIpPoolResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.PinpointEmail.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | A request to delete a dedicated IP pool.
--
-- /See:/ 'newDeleteDedicatedIpPool' smart constructor.
data DeleteDedicatedIpPool = DeleteDedicatedIpPool'
{ -- | The name of the dedicated IP pool that you want to delete.
poolName :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteDedicatedIpPool' 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:
--
-- 'poolName', 'deleteDedicatedIpPool_poolName' - The name of the dedicated IP pool that you want to delete.
newDeleteDedicatedIpPool ::
-- | 'poolName'
Prelude.Text ->
DeleteDedicatedIpPool
newDeleteDedicatedIpPool pPoolName_ =
DeleteDedicatedIpPool' {poolName = pPoolName_}
-- | The name of the dedicated IP pool that you want to delete.
deleteDedicatedIpPool_poolName :: Lens.Lens' DeleteDedicatedIpPool Prelude.Text
deleteDedicatedIpPool_poolName = Lens.lens (\DeleteDedicatedIpPool' {poolName} -> poolName) (\s@DeleteDedicatedIpPool' {} a -> s {poolName = a} :: DeleteDedicatedIpPool)
instance Core.AWSRequest DeleteDedicatedIpPool where
type
AWSResponse DeleteDedicatedIpPool =
DeleteDedicatedIpPoolResponse
request overrides =
Request.delete (overrides defaultService)
response =
Response.receiveEmpty
( \s h x ->
DeleteDedicatedIpPoolResponse'
Prelude.<$> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable DeleteDedicatedIpPool where
hashWithSalt _salt DeleteDedicatedIpPool' {..} =
_salt `Prelude.hashWithSalt` poolName
instance Prelude.NFData DeleteDedicatedIpPool where
rnf DeleteDedicatedIpPool' {..} = Prelude.rnf poolName
instance Data.ToHeaders DeleteDedicatedIpPool where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToPath DeleteDedicatedIpPool where
toPath DeleteDedicatedIpPool' {..} =
Prelude.mconcat
["/v1/email/dedicated-ip-pools/", Data.toBS poolName]
instance Data.ToQuery DeleteDedicatedIpPool where
toQuery = Prelude.const Prelude.mempty
-- | An HTTP 200 response if the request succeeds, or an error message if the
-- request fails.
--
-- /See:/ 'newDeleteDedicatedIpPoolResponse' smart constructor.
data DeleteDedicatedIpPoolResponse = DeleteDedicatedIpPoolResponse'
{ -- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteDedicatedIpPoolResponse' 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', 'deleteDedicatedIpPoolResponse_httpStatus' - The response's http status code.
newDeleteDedicatedIpPoolResponse ::
-- | 'httpStatus'
Prelude.Int ->
DeleteDedicatedIpPoolResponse
newDeleteDedicatedIpPoolResponse pHttpStatus_ =
DeleteDedicatedIpPoolResponse'
{ httpStatus =
pHttpStatus_
}
-- | The response's http status code.
deleteDedicatedIpPoolResponse_httpStatus :: Lens.Lens' DeleteDedicatedIpPoolResponse Prelude.Int
deleteDedicatedIpPoolResponse_httpStatus = Lens.lens (\DeleteDedicatedIpPoolResponse' {httpStatus} -> httpStatus) (\s@DeleteDedicatedIpPoolResponse' {} a -> s {httpStatus = a} :: DeleteDedicatedIpPoolResponse)
instance Prelude.NFData DeleteDedicatedIpPoolResponse where
rnf DeleteDedicatedIpPoolResponse' {..} =
Prelude.rnf httpStatus