{-# 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.DeleteEgressOnlyInternetGateway -- 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 egress-only internet gateway. module Amazonka.EC2.DeleteEgressOnlyInternetGateway ( -- * Creating a Request DeleteEgressOnlyInternetGateway (..), newDeleteEgressOnlyInternetGateway, -- * Request Lenses deleteEgressOnlyInternetGateway_dryRun, deleteEgressOnlyInternetGateway_egressOnlyInternetGatewayId, -- * Destructuring the Response DeleteEgressOnlyInternetGatewayResponse (..), newDeleteEgressOnlyInternetGatewayResponse, -- * Response Lenses deleteEgressOnlyInternetGatewayResponse_returnCode, deleteEgressOnlyInternetGatewayResponse_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:/ 'newDeleteEgressOnlyInternetGateway' smart constructor. data DeleteEgressOnlyInternetGateway = DeleteEgressOnlyInternetGateway' { -- | 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 egress-only internet gateway. egressOnlyInternetGatewayId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteEgressOnlyInternetGateway' 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', 'deleteEgressOnlyInternetGateway_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@. -- -- 'egressOnlyInternetGatewayId', 'deleteEgressOnlyInternetGateway_egressOnlyInternetGatewayId' - The ID of the egress-only internet gateway. newDeleteEgressOnlyInternetGateway :: -- | 'egressOnlyInternetGatewayId' Prelude.Text -> DeleteEgressOnlyInternetGateway newDeleteEgressOnlyInternetGateway pEgressOnlyInternetGatewayId_ = DeleteEgressOnlyInternetGateway' { dryRun = Prelude.Nothing, egressOnlyInternetGatewayId = pEgressOnlyInternetGatewayId_ } -- | 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@. deleteEgressOnlyInternetGateway_dryRun :: Lens.Lens' DeleteEgressOnlyInternetGateway (Prelude.Maybe Prelude.Bool) deleteEgressOnlyInternetGateway_dryRun = Lens.lens (\DeleteEgressOnlyInternetGateway' {dryRun} -> dryRun) (\s@DeleteEgressOnlyInternetGateway' {} a -> s {dryRun = a} :: DeleteEgressOnlyInternetGateway) -- | The ID of the egress-only internet gateway. deleteEgressOnlyInternetGateway_egressOnlyInternetGatewayId :: Lens.Lens' DeleteEgressOnlyInternetGateway Prelude.Text deleteEgressOnlyInternetGateway_egressOnlyInternetGatewayId = Lens.lens (\DeleteEgressOnlyInternetGateway' {egressOnlyInternetGatewayId} -> egressOnlyInternetGatewayId) (\s@DeleteEgressOnlyInternetGateway' {} a -> s {egressOnlyInternetGatewayId = a} :: DeleteEgressOnlyInternetGateway) instance Core.AWSRequest DeleteEgressOnlyInternetGateway where type AWSResponse DeleteEgressOnlyInternetGateway = DeleteEgressOnlyInternetGatewayResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXML ( \s h x -> DeleteEgressOnlyInternetGatewayResponse' Prelude.<$> (x Data..@? "returnCode") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteEgressOnlyInternetGateway where hashWithSalt _salt DeleteEgressOnlyInternetGateway' {..} = _salt `Prelude.hashWithSalt` dryRun `Prelude.hashWithSalt` egressOnlyInternetGatewayId instance Prelude.NFData DeleteEgressOnlyInternetGateway where rnf DeleteEgressOnlyInternetGateway' {..} = Prelude.rnf dryRun `Prelude.seq` Prelude.rnf egressOnlyInternetGatewayId instance Data.ToHeaders DeleteEgressOnlyInternetGateway where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath DeleteEgressOnlyInternetGateway where toPath = Prelude.const "/" instance Data.ToQuery DeleteEgressOnlyInternetGateway where toQuery DeleteEgressOnlyInternetGateway' {..} = Prelude.mconcat [ "Action" Data.=: ( "DeleteEgressOnlyInternetGateway" :: Prelude.ByteString ), "Version" Data.=: ("2016-11-15" :: Prelude.ByteString), "DryRun" Data.=: dryRun, "EgressOnlyInternetGatewayId" Data.=: egressOnlyInternetGatewayId ] -- | /See:/ 'newDeleteEgressOnlyInternetGatewayResponse' smart constructor. data DeleteEgressOnlyInternetGatewayResponse = DeleteEgressOnlyInternetGatewayResponse' { -- | Returns @true@ if the request succeeds; otherwise, it returns an error. returnCode :: Prelude.Maybe Prelude.Bool, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteEgressOnlyInternetGatewayResponse' 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: -- -- 'returnCode', 'deleteEgressOnlyInternetGatewayResponse_returnCode' - Returns @true@ if the request succeeds; otherwise, it returns an error. -- -- 'httpStatus', 'deleteEgressOnlyInternetGatewayResponse_httpStatus' - The response's http status code. newDeleteEgressOnlyInternetGatewayResponse :: -- | 'httpStatus' Prelude.Int -> DeleteEgressOnlyInternetGatewayResponse newDeleteEgressOnlyInternetGatewayResponse pHttpStatus_ = DeleteEgressOnlyInternetGatewayResponse' { returnCode = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Returns @true@ if the request succeeds; otherwise, it returns an error. deleteEgressOnlyInternetGatewayResponse_returnCode :: Lens.Lens' DeleteEgressOnlyInternetGatewayResponse (Prelude.Maybe Prelude.Bool) deleteEgressOnlyInternetGatewayResponse_returnCode = Lens.lens (\DeleteEgressOnlyInternetGatewayResponse' {returnCode} -> returnCode) (\s@DeleteEgressOnlyInternetGatewayResponse' {} a -> s {returnCode = a} :: DeleteEgressOnlyInternetGatewayResponse) -- | The response's http status code. deleteEgressOnlyInternetGatewayResponse_httpStatus :: Lens.Lens' DeleteEgressOnlyInternetGatewayResponse Prelude.Int deleteEgressOnlyInternetGatewayResponse_httpStatus = Lens.lens (\DeleteEgressOnlyInternetGatewayResponse' {httpStatus} -> httpStatus) (\s@DeleteEgressOnlyInternetGatewayResponse' {} a -> s {httpStatus = a} :: DeleteEgressOnlyInternetGatewayResponse) instance Prelude.NFData DeleteEgressOnlyInternetGatewayResponse where rnf DeleteEgressOnlyInternetGatewayResponse' {..} = Prelude.rnf returnCode `Prelude.seq` Prelude.rnf httpStatus