{-# 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.Connect.UpdateQuickConnectName -- 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 the name and description of a quick connect. The request accepts -- the following data in JSON format. At least @Name@ or @Description@ must -- be provided. module Amazonka.Connect.UpdateQuickConnectName ( -- * Creating a Request UpdateQuickConnectName (..), newUpdateQuickConnectName, -- * Request Lenses updateQuickConnectName_description, updateQuickConnectName_name, updateQuickConnectName_instanceId, updateQuickConnectName_quickConnectId, -- * Destructuring the Response UpdateQuickConnectNameResponse (..), newUpdateQuickConnectNameResponse, ) where import Amazonka.Connect.Types 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 -- | /See:/ 'newUpdateQuickConnectName' smart constructor. data UpdateQuickConnectName = UpdateQuickConnectName' { -- | The description of the quick connect. description :: Prelude.Maybe Prelude.Text, -- | The name of the quick connect. name :: Prelude.Maybe Prelude.Text, -- | The identifier of the Amazon Connect instance. You can find the -- instanceId in the ARN of the instance. instanceId :: Prelude.Text, -- | The identifier for the quick connect. quickConnectId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateQuickConnectName' 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: -- -- 'description', 'updateQuickConnectName_description' - The description of the quick connect. -- -- 'name', 'updateQuickConnectName_name' - The name of the quick connect. -- -- 'instanceId', 'updateQuickConnectName_instanceId' - The identifier of the Amazon Connect instance. You can find the -- instanceId in the ARN of the instance. -- -- 'quickConnectId', 'updateQuickConnectName_quickConnectId' - The identifier for the quick connect. newUpdateQuickConnectName :: -- | 'instanceId' Prelude.Text -> -- | 'quickConnectId' Prelude.Text -> UpdateQuickConnectName newUpdateQuickConnectName pInstanceId_ pQuickConnectId_ = UpdateQuickConnectName' { description = Prelude.Nothing, name = Prelude.Nothing, instanceId = pInstanceId_, quickConnectId = pQuickConnectId_ } -- | The description of the quick connect. updateQuickConnectName_description :: Lens.Lens' UpdateQuickConnectName (Prelude.Maybe Prelude.Text) updateQuickConnectName_description = Lens.lens (\UpdateQuickConnectName' {description} -> description) (\s@UpdateQuickConnectName' {} a -> s {description = a} :: UpdateQuickConnectName) -- | The name of the quick connect. updateQuickConnectName_name :: Lens.Lens' UpdateQuickConnectName (Prelude.Maybe Prelude.Text) updateQuickConnectName_name = Lens.lens (\UpdateQuickConnectName' {name} -> name) (\s@UpdateQuickConnectName' {} a -> s {name = a} :: UpdateQuickConnectName) -- | The identifier of the Amazon Connect instance. You can find the -- instanceId in the ARN of the instance. updateQuickConnectName_instanceId :: Lens.Lens' UpdateQuickConnectName Prelude.Text updateQuickConnectName_instanceId = Lens.lens (\UpdateQuickConnectName' {instanceId} -> instanceId) (\s@UpdateQuickConnectName' {} a -> s {instanceId = a} :: UpdateQuickConnectName) -- | The identifier for the quick connect. updateQuickConnectName_quickConnectId :: Lens.Lens' UpdateQuickConnectName Prelude.Text updateQuickConnectName_quickConnectId = Lens.lens (\UpdateQuickConnectName' {quickConnectId} -> quickConnectId) (\s@UpdateQuickConnectName' {} a -> s {quickConnectId = a} :: UpdateQuickConnectName) instance Core.AWSRequest UpdateQuickConnectName where type AWSResponse UpdateQuickConnectName = UpdateQuickConnectNameResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveNull UpdateQuickConnectNameResponse' instance Prelude.Hashable UpdateQuickConnectName where hashWithSalt _salt UpdateQuickConnectName' {..} = _salt `Prelude.hashWithSalt` description `Prelude.hashWithSalt` name `Prelude.hashWithSalt` instanceId `Prelude.hashWithSalt` quickConnectId instance Prelude.NFData UpdateQuickConnectName where rnf UpdateQuickConnectName' {..} = Prelude.rnf description `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf instanceId `Prelude.seq` Prelude.rnf quickConnectId instance Data.ToHeaders UpdateQuickConnectName where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON UpdateQuickConnectName where toJSON UpdateQuickConnectName' {..} = Data.object ( Prelude.catMaybes [ ("Description" Data..=) Prelude.<$> description, ("Name" Data..=) Prelude.<$> name ] ) instance Data.ToPath UpdateQuickConnectName where toPath UpdateQuickConnectName' {..} = Prelude.mconcat [ "/quick-connects/", Data.toBS instanceId, "/", Data.toBS quickConnectId, "/name" ] instance Data.ToQuery UpdateQuickConnectName where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newUpdateQuickConnectNameResponse' smart constructor. data UpdateQuickConnectNameResponse = UpdateQuickConnectNameResponse' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateQuickConnectNameResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. newUpdateQuickConnectNameResponse :: UpdateQuickConnectNameResponse newUpdateQuickConnectNameResponse = UpdateQuickConnectNameResponse' instance Prelude.NFData UpdateQuickConnectNameResponse where rnf _ = ()