{-# 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.SSMContacts.UpdateContactChannel -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Updates a contact\'s contact channel. module Amazonka.SSMContacts.UpdateContactChannel ( -- * Creating a Request UpdateContactChannel (..), newUpdateContactChannel, -- * Request Lenses updateContactChannel_deliveryAddress, updateContactChannel_name, updateContactChannel_contactChannelId, -- * Destructuring the Response UpdateContactChannelResponse (..), newUpdateContactChannelResponse, -- * Response Lenses updateContactChannelResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.SSMContacts.Types -- | /See:/ 'newUpdateContactChannel' smart constructor. data UpdateContactChannel = UpdateContactChannel' { -- | The details that Incident Manager uses when trying to engage the contact -- channel. deliveryAddress :: Prelude.Maybe ContactChannelAddress, -- | The name of the contact channel. name :: Prelude.Maybe Prelude.Text, -- | The Amazon Resource Name (ARN) of the contact channel you want to -- update. contactChannelId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateContactChannel' 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: -- -- 'deliveryAddress', 'updateContactChannel_deliveryAddress' - The details that Incident Manager uses when trying to engage the contact -- channel. -- -- 'name', 'updateContactChannel_name' - The name of the contact channel. -- -- 'contactChannelId', 'updateContactChannel_contactChannelId' - The Amazon Resource Name (ARN) of the contact channel you want to -- update. newUpdateContactChannel :: -- | 'contactChannelId' Prelude.Text -> UpdateContactChannel newUpdateContactChannel pContactChannelId_ = UpdateContactChannel' { deliveryAddress = Prelude.Nothing, name = Prelude.Nothing, contactChannelId = pContactChannelId_ } -- | The details that Incident Manager uses when trying to engage the contact -- channel. updateContactChannel_deliveryAddress :: Lens.Lens' UpdateContactChannel (Prelude.Maybe ContactChannelAddress) updateContactChannel_deliveryAddress = Lens.lens (\UpdateContactChannel' {deliveryAddress} -> deliveryAddress) (\s@UpdateContactChannel' {} a -> s {deliveryAddress = a} :: UpdateContactChannel) -- | The name of the contact channel. updateContactChannel_name :: Lens.Lens' UpdateContactChannel (Prelude.Maybe Prelude.Text) updateContactChannel_name = Lens.lens (\UpdateContactChannel' {name} -> name) (\s@UpdateContactChannel' {} a -> s {name = a} :: UpdateContactChannel) -- | The Amazon Resource Name (ARN) of the contact channel you want to -- update. updateContactChannel_contactChannelId :: Lens.Lens' UpdateContactChannel Prelude.Text updateContactChannel_contactChannelId = Lens.lens (\UpdateContactChannel' {contactChannelId} -> contactChannelId) (\s@UpdateContactChannel' {} a -> s {contactChannelId = a} :: UpdateContactChannel) instance Core.AWSRequest UpdateContactChannel where type AWSResponse UpdateContactChannel = UpdateContactChannelResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveEmpty ( \s h x -> UpdateContactChannelResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable UpdateContactChannel where hashWithSalt _salt UpdateContactChannel' {..} = _salt `Prelude.hashWithSalt` deliveryAddress `Prelude.hashWithSalt` name `Prelude.hashWithSalt` contactChannelId instance Prelude.NFData UpdateContactChannel where rnf UpdateContactChannel' {..} = Prelude.rnf deliveryAddress `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf contactChannelId instance Data.ToHeaders UpdateContactChannel where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "SSMContacts.UpdateContactChannel" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON UpdateContactChannel where toJSON UpdateContactChannel' {..} = Data.object ( Prelude.catMaybes [ ("DeliveryAddress" Data..=) Prelude.<$> deliveryAddress, ("Name" Data..=) Prelude.<$> name, Prelude.Just ("ContactChannelId" Data..= contactChannelId) ] ) instance Data.ToPath UpdateContactChannel where toPath = Prelude.const "/" instance Data.ToQuery UpdateContactChannel where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newUpdateContactChannelResponse' smart constructor. data UpdateContactChannelResponse = UpdateContactChannelResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateContactChannelResponse' 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: -- -- 'httpStatus', 'updateContactChannelResponse_httpStatus' - The response's http status code. newUpdateContactChannelResponse :: -- | 'httpStatus' Prelude.Int -> UpdateContactChannelResponse newUpdateContactChannelResponse pHttpStatus_ = UpdateContactChannelResponse' { httpStatus = pHttpStatus_ } -- | The response's http status code. updateContactChannelResponse_httpStatus :: Lens.Lens' UpdateContactChannelResponse Prelude.Int updateContactChannelResponse_httpStatus = Lens.lens (\UpdateContactChannelResponse' {httpStatus} -> httpStatus) (\s@UpdateContactChannelResponse' {} a -> s {httpStatus = a} :: UpdateContactChannelResponse) instance Prelude.NFData UpdateContactChannelResponse where rnf UpdateContactChannelResponse' {..} = Prelude.rnf httpStatus