{-# 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.AppConfig.UpdateApplication -- 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 an application. module Amazonka.AppConfig.UpdateApplication ( -- * Creating a Request UpdateApplication (..), newUpdateApplication, -- * Request Lenses updateApplication_description, updateApplication_name, updateApplication_applicationId, -- * Destructuring the Response Application (..), newApplication, -- * Response Lenses application_description, application_id, application_name, ) where import Amazonka.AppConfig.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:/ 'newUpdateApplication' smart constructor. data UpdateApplication = UpdateApplication' { -- | A description of the application. description :: Prelude.Maybe Prelude.Text, -- | The name of the application. name :: Prelude.Maybe Prelude.Text, -- | The application ID. applicationId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateApplication' 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', 'updateApplication_description' - A description of the application. -- -- 'name', 'updateApplication_name' - The name of the application. -- -- 'applicationId', 'updateApplication_applicationId' - The application ID. newUpdateApplication :: -- | 'applicationId' Prelude.Text -> UpdateApplication newUpdateApplication pApplicationId_ = UpdateApplication' { description = Prelude.Nothing, name = Prelude.Nothing, applicationId = pApplicationId_ } -- | A description of the application. updateApplication_description :: Lens.Lens' UpdateApplication (Prelude.Maybe Prelude.Text) updateApplication_description = Lens.lens (\UpdateApplication' {description} -> description) (\s@UpdateApplication' {} a -> s {description = a} :: UpdateApplication) -- | The name of the application. updateApplication_name :: Lens.Lens' UpdateApplication (Prelude.Maybe Prelude.Text) updateApplication_name = Lens.lens (\UpdateApplication' {name} -> name) (\s@UpdateApplication' {} a -> s {name = a} :: UpdateApplication) -- | The application ID. updateApplication_applicationId :: Lens.Lens' UpdateApplication Prelude.Text updateApplication_applicationId = Lens.lens (\UpdateApplication' {applicationId} -> applicationId) (\s@UpdateApplication' {} a -> s {applicationId = a} :: UpdateApplication) instance Core.AWSRequest UpdateApplication where type AWSResponse UpdateApplication = Application request overrides = Request.patchJSON (overrides defaultService) response = Response.receiveJSON (\s h x -> Data.eitherParseJSON x) instance Prelude.Hashable UpdateApplication where hashWithSalt _salt UpdateApplication' {..} = _salt `Prelude.hashWithSalt` description `Prelude.hashWithSalt` name `Prelude.hashWithSalt` applicationId instance Prelude.NFData UpdateApplication where rnf UpdateApplication' {..} = Prelude.rnf description `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf applicationId instance Data.ToHeaders UpdateApplication where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON UpdateApplication where toJSON UpdateApplication' {..} = Data.object ( Prelude.catMaybes [ ("Description" Data..=) Prelude.<$> description, ("Name" Data..=) Prelude.<$> name ] ) instance Data.ToPath UpdateApplication where toPath UpdateApplication' {..} = Prelude.mconcat ["/applications/", Data.toBS applicationId] instance Data.ToQuery UpdateApplication where toQuery = Prelude.const Prelude.mempty