amazonka-ec2-2.0: gen/Amazonka/EC2/DeleteRouteTable.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.EC2.DeleteRouteTable
-- 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 the specified route table. You must disassociate the route table
-- from any subnets before you can delete it. You can\'t delete the main
-- route table.
module Amazonka.EC2.DeleteRouteTable
( -- * Creating a Request
DeleteRouteTable (..),
newDeleteRouteTable,
-- * Request Lenses
deleteRouteTable_dryRun,
deleteRouteTable_routeTableId,
-- * Destructuring the Response
DeleteRouteTableResponse (..),
newDeleteRouteTableResponse,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.EC2.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newDeleteRouteTable' smart constructor.
data DeleteRouteTable = DeleteRouteTable'
{ -- | Checks whether you have the required permissions for the action, without
-- actually making the request, and provides an error response. If you have
-- the required permissions, the error response is @DryRunOperation@.
-- Otherwise, it is @UnauthorizedOperation@.
dryRun :: Prelude.Maybe Prelude.Bool,
-- | The ID of the route table.
routeTableId :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteRouteTable' 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:
--
-- 'dryRun', 'deleteRouteTable_dryRun' - Checks whether you have the required permissions for the action, without
-- actually making the request, and provides an error response. If you have
-- the required permissions, the error response is @DryRunOperation@.
-- Otherwise, it is @UnauthorizedOperation@.
--
-- 'routeTableId', 'deleteRouteTable_routeTableId' - The ID of the route table.
newDeleteRouteTable ::
-- | 'routeTableId'
Prelude.Text ->
DeleteRouteTable
newDeleteRouteTable pRouteTableId_ =
DeleteRouteTable'
{ dryRun = Prelude.Nothing,
routeTableId = pRouteTableId_
}
-- | Checks whether you have the required permissions for the action, without
-- actually making the request, and provides an error response. If you have
-- the required permissions, the error response is @DryRunOperation@.
-- Otherwise, it is @UnauthorizedOperation@.
deleteRouteTable_dryRun :: Lens.Lens' DeleteRouteTable (Prelude.Maybe Prelude.Bool)
deleteRouteTable_dryRun = Lens.lens (\DeleteRouteTable' {dryRun} -> dryRun) (\s@DeleteRouteTable' {} a -> s {dryRun = a} :: DeleteRouteTable)
-- | The ID of the route table.
deleteRouteTable_routeTableId :: Lens.Lens' DeleteRouteTable Prelude.Text
deleteRouteTable_routeTableId = Lens.lens (\DeleteRouteTable' {routeTableId} -> routeTableId) (\s@DeleteRouteTable' {} a -> s {routeTableId = a} :: DeleteRouteTable)
instance Core.AWSRequest DeleteRouteTable where
type
AWSResponse DeleteRouteTable =
DeleteRouteTableResponse
request overrides =
Request.postQuery (overrides defaultService)
response =
Response.receiveNull DeleteRouteTableResponse'
instance Prelude.Hashable DeleteRouteTable where
hashWithSalt _salt DeleteRouteTable' {..} =
_salt
`Prelude.hashWithSalt` dryRun
`Prelude.hashWithSalt` routeTableId
instance Prelude.NFData DeleteRouteTable where
rnf DeleteRouteTable' {..} =
Prelude.rnf dryRun
`Prelude.seq` Prelude.rnf routeTableId
instance Data.ToHeaders DeleteRouteTable where
toHeaders = Prelude.const Prelude.mempty
instance Data.ToPath DeleteRouteTable where
toPath = Prelude.const "/"
instance Data.ToQuery DeleteRouteTable where
toQuery DeleteRouteTable' {..} =
Prelude.mconcat
[ "Action"
Data.=: ("DeleteRouteTable" :: Prelude.ByteString),
"Version"
Data.=: ("2016-11-15" :: Prelude.ByteString),
"DryRun" Data.=: dryRun,
"RouteTableId" Data.=: routeTableId
]
-- | /See:/ 'newDeleteRouteTableResponse' smart constructor.
data DeleteRouteTableResponse = DeleteRouteTableResponse'
{
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteRouteTableResponse' 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.
newDeleteRouteTableResponse ::
DeleteRouteTableResponse
newDeleteRouteTableResponse =
DeleteRouteTableResponse'
instance Prelude.NFData DeleteRouteTableResponse where
rnf _ = ()