{-# 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.Lightsail.ReleaseStaticIp -- 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 specific static IP from your account. module Amazonka.Lightsail.ReleaseStaticIp ( -- * Creating a Request ReleaseStaticIp (..), newReleaseStaticIp, -- * Request Lenses releaseStaticIp_staticIpName, -- * Destructuring the Response ReleaseStaticIpResponse (..), newReleaseStaticIpResponse, -- * Response Lenses releaseStaticIpResponse_operations, releaseStaticIpResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.Lightsail.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newReleaseStaticIp' smart constructor. data ReleaseStaticIp = ReleaseStaticIp' { -- | The name of the static IP to delete. staticIpName :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ReleaseStaticIp' 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: -- -- 'staticIpName', 'releaseStaticIp_staticIpName' - The name of the static IP to delete. newReleaseStaticIp :: -- | 'staticIpName' Prelude.Text -> ReleaseStaticIp newReleaseStaticIp pStaticIpName_ = ReleaseStaticIp' {staticIpName = pStaticIpName_} -- | The name of the static IP to delete. releaseStaticIp_staticIpName :: Lens.Lens' ReleaseStaticIp Prelude.Text releaseStaticIp_staticIpName = Lens.lens (\ReleaseStaticIp' {staticIpName} -> staticIpName) (\s@ReleaseStaticIp' {} a -> s {staticIpName = a} :: ReleaseStaticIp) instance Core.AWSRequest ReleaseStaticIp where type AWSResponse ReleaseStaticIp = ReleaseStaticIpResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> ReleaseStaticIpResponse' Prelude.<$> (x Data..?> "operations" Core..!@ Prelude.mempty) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ReleaseStaticIp where hashWithSalt _salt ReleaseStaticIp' {..} = _salt `Prelude.hashWithSalt` staticIpName instance Prelude.NFData ReleaseStaticIp where rnf ReleaseStaticIp' {..} = Prelude.rnf staticIpName instance Data.ToHeaders ReleaseStaticIp where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "Lightsail_20161128.ReleaseStaticIp" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON ReleaseStaticIp where toJSON ReleaseStaticIp' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("staticIpName" Data..= staticIpName)] ) instance Data.ToPath ReleaseStaticIp where toPath = Prelude.const "/" instance Data.ToQuery ReleaseStaticIp where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newReleaseStaticIpResponse' smart constructor. data ReleaseStaticIpResponse = ReleaseStaticIpResponse' { -- | An array of objects that describe the result of the action, such as the -- status of the request, the timestamp of the request, and the resources -- affected by the request. operations :: Prelude.Maybe [Operation], -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ReleaseStaticIpResponse' 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: -- -- 'operations', 'releaseStaticIpResponse_operations' - An array of objects that describe the result of the action, such as the -- status of the request, the timestamp of the request, and the resources -- affected by the request. -- -- 'httpStatus', 'releaseStaticIpResponse_httpStatus' - The response's http status code. newReleaseStaticIpResponse :: -- | 'httpStatus' Prelude.Int -> ReleaseStaticIpResponse newReleaseStaticIpResponse pHttpStatus_ = ReleaseStaticIpResponse' { operations = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | An array of objects that describe the result of the action, such as the -- status of the request, the timestamp of the request, and the resources -- affected by the request. releaseStaticIpResponse_operations :: Lens.Lens' ReleaseStaticIpResponse (Prelude.Maybe [Operation]) releaseStaticIpResponse_operations = Lens.lens (\ReleaseStaticIpResponse' {operations} -> operations) (\s@ReleaseStaticIpResponse' {} a -> s {operations = a} :: ReleaseStaticIpResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. releaseStaticIpResponse_httpStatus :: Lens.Lens' ReleaseStaticIpResponse Prelude.Int releaseStaticIpResponse_httpStatus = Lens.lens (\ReleaseStaticIpResponse' {httpStatus} -> httpStatus) (\s@ReleaseStaticIpResponse' {} a -> s {httpStatus = a} :: ReleaseStaticIpResponse) instance Prelude.NFData ReleaseStaticIpResponse where rnf ReleaseStaticIpResponse' {..} = Prelude.rnf operations `Prelude.seq` Prelude.rnf httpStatus