{-# 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.DeleteTransitGatewayPrefixListReference -- 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 reference (route) to a prefix list in a specified transit -- gateway route table. module Amazonka.EC2.DeleteTransitGatewayPrefixListReference ( -- * Creating a Request DeleteTransitGatewayPrefixListReference (..), newDeleteTransitGatewayPrefixListReference, -- * Request Lenses deleteTransitGatewayPrefixListReference_dryRun, deleteTransitGatewayPrefixListReference_transitGatewayRouteTableId, deleteTransitGatewayPrefixListReference_prefixListId, -- * Destructuring the Response DeleteTransitGatewayPrefixListReferenceResponse (..), newDeleteTransitGatewayPrefixListReferenceResponse, -- * Response Lenses deleteTransitGatewayPrefixListReferenceResponse_transitGatewayPrefixListReference, deleteTransitGatewayPrefixListReferenceResponse_httpStatus, ) 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:/ 'newDeleteTransitGatewayPrefixListReference' smart constructor. data DeleteTransitGatewayPrefixListReference = DeleteTransitGatewayPrefixListReference' { -- | 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. transitGatewayRouteTableId :: Prelude.Text, -- | The ID of the prefix list. prefixListId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteTransitGatewayPrefixListReference' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'dryRun', 'deleteTransitGatewayPrefixListReference_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@. -- -- 'transitGatewayRouteTableId', 'deleteTransitGatewayPrefixListReference_transitGatewayRouteTableId' - The ID of the route table. -- -- 'prefixListId', 'deleteTransitGatewayPrefixListReference_prefixListId' - The ID of the prefix list. newDeleteTransitGatewayPrefixListReference :: -- | 'transitGatewayRouteTableId' Prelude.Text -> -- | 'prefixListId' Prelude.Text -> DeleteTransitGatewayPrefixListReference newDeleteTransitGatewayPrefixListReference pTransitGatewayRouteTableId_ pPrefixListId_ = DeleteTransitGatewayPrefixListReference' { dryRun = Prelude.Nothing, transitGatewayRouteTableId = pTransitGatewayRouteTableId_, prefixListId = pPrefixListId_ } -- | 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@. deleteTransitGatewayPrefixListReference_dryRun :: Lens.Lens' DeleteTransitGatewayPrefixListReference (Prelude.Maybe Prelude.Bool) deleteTransitGatewayPrefixListReference_dryRun = Lens.lens (\DeleteTransitGatewayPrefixListReference' {dryRun} -> dryRun) (\s@DeleteTransitGatewayPrefixListReference' {} a -> s {dryRun = a} :: DeleteTransitGatewayPrefixListReference) -- | The ID of the route table. deleteTransitGatewayPrefixListReference_transitGatewayRouteTableId :: Lens.Lens' DeleteTransitGatewayPrefixListReference Prelude.Text deleteTransitGatewayPrefixListReference_transitGatewayRouteTableId = Lens.lens (\DeleteTransitGatewayPrefixListReference' {transitGatewayRouteTableId} -> transitGatewayRouteTableId) (\s@DeleteTransitGatewayPrefixListReference' {} a -> s {transitGatewayRouteTableId = a} :: DeleteTransitGatewayPrefixListReference) -- | The ID of the prefix list. deleteTransitGatewayPrefixListReference_prefixListId :: Lens.Lens' DeleteTransitGatewayPrefixListReference Prelude.Text deleteTransitGatewayPrefixListReference_prefixListId = Lens.lens (\DeleteTransitGatewayPrefixListReference' {prefixListId} -> prefixListId) (\s@DeleteTransitGatewayPrefixListReference' {} a -> s {prefixListId = a} :: DeleteTransitGatewayPrefixListReference) instance Core.AWSRequest DeleteTransitGatewayPrefixListReference where type AWSResponse DeleteTransitGatewayPrefixListReference = DeleteTransitGatewayPrefixListReferenceResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXML ( \s h x -> DeleteTransitGatewayPrefixListReferenceResponse' Prelude.<$> (x Data..@? "transitGatewayPrefixListReference") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteTransitGatewayPrefixListReference where hashWithSalt _salt DeleteTransitGatewayPrefixListReference' {..} = _salt `Prelude.hashWithSalt` dryRun `Prelude.hashWithSalt` transitGatewayRouteTableId `Prelude.hashWithSalt` prefixListId instance Prelude.NFData DeleteTransitGatewayPrefixListReference where rnf DeleteTransitGatewayPrefixListReference' {..} = Prelude.rnf dryRun `Prelude.seq` Prelude.rnf transitGatewayRouteTableId `Prelude.seq` Prelude.rnf prefixListId instance Data.ToHeaders DeleteTransitGatewayPrefixListReference where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath DeleteTransitGatewayPrefixListReference where toPath = Prelude.const "/" instance Data.ToQuery DeleteTransitGatewayPrefixListReference where toQuery DeleteTransitGatewayPrefixListReference' {..} = Prelude.mconcat [ "Action" Data.=: ( "DeleteTransitGatewayPrefixListReference" :: Prelude.ByteString ), "Version" Data.=: ("2016-11-15" :: Prelude.ByteString), "DryRun" Data.=: dryRun, "TransitGatewayRouteTableId" Data.=: transitGatewayRouteTableId, "PrefixListId" Data.=: prefixListId ] -- | /See:/ 'newDeleteTransitGatewayPrefixListReferenceResponse' smart constructor. data DeleteTransitGatewayPrefixListReferenceResponse = DeleteTransitGatewayPrefixListReferenceResponse' { -- | Information about the deleted prefix list reference. transitGatewayPrefixListReference :: Prelude.Maybe TransitGatewayPrefixListReference, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteTransitGatewayPrefixListReferenceResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'transitGatewayPrefixListReference', 'deleteTransitGatewayPrefixListReferenceResponse_transitGatewayPrefixListReference' - Information about the deleted prefix list reference. -- -- 'httpStatus', 'deleteTransitGatewayPrefixListReferenceResponse_httpStatus' - The response's http status code. newDeleteTransitGatewayPrefixListReferenceResponse :: -- | 'httpStatus' Prelude.Int -> DeleteTransitGatewayPrefixListReferenceResponse newDeleteTransitGatewayPrefixListReferenceResponse pHttpStatus_ = DeleteTransitGatewayPrefixListReferenceResponse' { transitGatewayPrefixListReference = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Information about the deleted prefix list reference. deleteTransitGatewayPrefixListReferenceResponse_transitGatewayPrefixListReference :: Lens.Lens' DeleteTransitGatewayPrefixListReferenceResponse (Prelude.Maybe TransitGatewayPrefixListReference) deleteTransitGatewayPrefixListReferenceResponse_transitGatewayPrefixListReference = Lens.lens (\DeleteTransitGatewayPrefixListReferenceResponse' {transitGatewayPrefixListReference} -> transitGatewayPrefixListReference) (\s@DeleteTransitGatewayPrefixListReferenceResponse' {} a -> s {transitGatewayPrefixListReference = a} :: DeleteTransitGatewayPrefixListReferenceResponse) -- | The response's http status code. deleteTransitGatewayPrefixListReferenceResponse_httpStatus :: Lens.Lens' DeleteTransitGatewayPrefixListReferenceResponse Prelude.Int deleteTransitGatewayPrefixListReferenceResponse_httpStatus = Lens.lens (\DeleteTransitGatewayPrefixListReferenceResponse' {httpStatus} -> httpStatus) (\s@DeleteTransitGatewayPrefixListReferenceResponse' {} a -> s {httpStatus = a} :: DeleteTransitGatewayPrefixListReferenceResponse) instance Prelude.NFData DeleteTransitGatewayPrefixListReferenceResponse where rnf DeleteTransitGatewayPrefixListReferenceResponse' {..} = Prelude.rnf transitGatewayPrefixListReference `Prelude.seq` Prelude.rnf httpStatus