{-# 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.DeleteContactMethod -- 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 contact method. -- -- A contact method is used to send you notifications about your Amazon -- Lightsail resources. You can add one email address and one mobile phone -- number contact method in each Amazon Web Services Region. However, SMS -- text messaging is not supported in some Amazon Web Services Regions, and -- SMS text messages cannot be sent to some countries\/regions. For more -- information, see -- . module Amazonka.Lightsail.DeleteContactMethod ( -- * Creating a Request DeleteContactMethod (..), newDeleteContactMethod, -- * Request Lenses deleteContactMethod_protocol, -- * Destructuring the Response DeleteContactMethodResponse (..), newDeleteContactMethodResponse, -- * Response Lenses deleteContactMethodResponse_operations, deleteContactMethodResponse_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:/ 'newDeleteContactMethod' smart constructor. data DeleteContactMethod = DeleteContactMethod' { -- | The protocol that will be deleted, such as @Email@ or @SMS@ (text -- messaging). -- -- To delete an @Email@ and an @SMS@ contact method if you added both, you -- must run separate @DeleteContactMethod@ actions to delete each protocol. protocol :: ContactProtocol } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DeleteContactMethod' 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: -- -- 'protocol', 'deleteContactMethod_protocol' - The protocol that will be deleted, such as @Email@ or @SMS@ (text -- messaging). -- -- To delete an @Email@ and an @SMS@ contact method if you added both, you -- must run separate @DeleteContactMethod@ actions to delete each protocol. newDeleteContactMethod :: -- | 'protocol' ContactProtocol -> DeleteContactMethod newDeleteContactMethod pProtocol_ = DeleteContactMethod' {protocol = pProtocol_} -- | The protocol that will be deleted, such as @Email@ or @SMS@ (text -- messaging). -- -- To delete an @Email@ and an @SMS@ contact method if you added both, you -- must run separate @DeleteContactMethod@ actions to delete each protocol. deleteContactMethod_protocol :: Lens.Lens' DeleteContactMethod ContactProtocol deleteContactMethod_protocol = Lens.lens (\DeleteContactMethod' {protocol} -> protocol) (\s@DeleteContactMethod' {} a -> s {protocol = a} :: DeleteContactMethod) instance Core.AWSRequest DeleteContactMethod where type AWSResponse DeleteContactMethod = DeleteContactMethodResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> DeleteContactMethodResponse' Prelude.<$> (x Data..?> "operations" Core..!@ Prelude.mempty) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DeleteContactMethod where hashWithSalt _salt DeleteContactMethod' {..} = _salt `Prelude.hashWithSalt` protocol instance Prelude.NFData DeleteContactMethod where rnf DeleteContactMethod' {..} = Prelude.rnf protocol instance Data.ToHeaders DeleteContactMethod where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "Lightsail_20161128.DeleteContactMethod" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON DeleteContactMethod where toJSON DeleteContactMethod' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("protocol" Data..= protocol)] ) instance Data.ToPath DeleteContactMethod where toPath = Prelude.const "/" instance Data.ToQuery DeleteContactMethod where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDeleteContactMethodResponse' smart constructor. data DeleteContactMethodResponse = DeleteContactMethodResponse' { -- | 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 'DeleteContactMethodResponse' 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', 'deleteContactMethodResponse_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', 'deleteContactMethodResponse_httpStatus' - The response's http status code. newDeleteContactMethodResponse :: -- | 'httpStatus' Prelude.Int -> DeleteContactMethodResponse newDeleteContactMethodResponse pHttpStatus_ = DeleteContactMethodResponse' { 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. deleteContactMethodResponse_operations :: Lens.Lens' DeleteContactMethodResponse (Prelude.Maybe [Operation]) deleteContactMethodResponse_operations = Lens.lens (\DeleteContactMethodResponse' {operations} -> operations) (\s@DeleteContactMethodResponse' {} a -> s {operations = a} :: DeleteContactMethodResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. deleteContactMethodResponse_httpStatus :: Lens.Lens' DeleteContactMethodResponse Prelude.Int deleteContactMethodResponse_httpStatus = Lens.lens (\DeleteContactMethodResponse' {httpStatus} -> httpStatus) (\s@DeleteContactMethodResponse' {} a -> s {httpStatus = a} :: DeleteContactMethodResponse) instance Prelude.NFData DeleteContactMethodResponse where rnf DeleteContactMethodResponse' {..} = Prelude.rnf operations `Prelude.seq` Prelude.rnf httpStatus