{-# 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.Chime.UpdateAppInstance -- 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 @AppInstance@ metadata. module Amazonka.Chime.UpdateAppInstance ( -- * Creating a Request UpdateAppInstance (..), newUpdateAppInstance, -- * Request Lenses updateAppInstance_metadata, updateAppInstance_appInstanceArn, updateAppInstance_name, -- * Destructuring the Response UpdateAppInstanceResponse (..), newUpdateAppInstanceResponse, -- * Response Lenses updateAppInstanceResponse_appInstanceArn, updateAppInstanceResponse_httpStatus, ) where import Amazonka.Chime.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:/ 'newUpdateAppInstance' smart constructor. data UpdateAppInstance = UpdateAppInstance' { -- | The metadata that you want to change. metadata :: Prelude.Maybe (Data.Sensitive Prelude.Text), -- | The ARN of the @AppInstance@. appInstanceArn :: Prelude.Text, -- | The name that you want to change. name :: Data.Sensitive Prelude.Text } deriving (Prelude.Eq, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateAppInstance' 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: -- -- 'metadata', 'updateAppInstance_metadata' - The metadata that you want to change. -- -- 'appInstanceArn', 'updateAppInstance_appInstanceArn' - The ARN of the @AppInstance@. -- -- 'name', 'updateAppInstance_name' - The name that you want to change. newUpdateAppInstance :: -- | 'appInstanceArn' Prelude.Text -> -- | 'name' Prelude.Text -> UpdateAppInstance newUpdateAppInstance pAppInstanceArn_ pName_ = UpdateAppInstance' { metadata = Prelude.Nothing, appInstanceArn = pAppInstanceArn_, name = Data._Sensitive Lens.# pName_ } -- | The metadata that you want to change. updateAppInstance_metadata :: Lens.Lens' UpdateAppInstance (Prelude.Maybe Prelude.Text) updateAppInstance_metadata = Lens.lens (\UpdateAppInstance' {metadata} -> metadata) (\s@UpdateAppInstance' {} a -> s {metadata = a} :: UpdateAppInstance) Prelude.. Lens.mapping Data._Sensitive -- | The ARN of the @AppInstance@. updateAppInstance_appInstanceArn :: Lens.Lens' UpdateAppInstance Prelude.Text updateAppInstance_appInstanceArn = Lens.lens (\UpdateAppInstance' {appInstanceArn} -> appInstanceArn) (\s@UpdateAppInstance' {} a -> s {appInstanceArn = a} :: UpdateAppInstance) -- | The name that you want to change. updateAppInstance_name :: Lens.Lens' UpdateAppInstance Prelude.Text updateAppInstance_name = Lens.lens (\UpdateAppInstance' {name} -> name) (\s@UpdateAppInstance' {} a -> s {name = a} :: UpdateAppInstance) Prelude.. Data._Sensitive instance Core.AWSRequest UpdateAppInstance where type AWSResponse UpdateAppInstance = UpdateAppInstanceResponse request overrides = Request.putJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> UpdateAppInstanceResponse' Prelude.<$> (x Data..?> "AppInstanceArn") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable UpdateAppInstance where hashWithSalt _salt UpdateAppInstance' {..} = _salt `Prelude.hashWithSalt` metadata `Prelude.hashWithSalt` appInstanceArn `Prelude.hashWithSalt` name instance Prelude.NFData UpdateAppInstance where rnf UpdateAppInstance' {..} = Prelude.rnf metadata `Prelude.seq` Prelude.rnf appInstanceArn `Prelude.seq` Prelude.rnf name instance Data.ToHeaders UpdateAppInstance where toHeaders = Prelude.const Prelude.mempty instance Data.ToJSON UpdateAppInstance where toJSON UpdateAppInstance' {..} = Data.object ( Prelude.catMaybes [ ("Metadata" Data..=) Prelude.<$> metadata, Prelude.Just ("Name" Data..= name) ] ) instance Data.ToPath UpdateAppInstance where toPath UpdateAppInstance' {..} = Prelude.mconcat ["/app-instances/", Data.toBS appInstanceArn] instance Data.ToQuery UpdateAppInstance where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newUpdateAppInstanceResponse' smart constructor. data UpdateAppInstanceResponse = UpdateAppInstanceResponse' { -- | The ARN of the @AppInstance@. appInstanceArn :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UpdateAppInstanceResponse' 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: -- -- 'appInstanceArn', 'updateAppInstanceResponse_appInstanceArn' - The ARN of the @AppInstance@. -- -- 'httpStatus', 'updateAppInstanceResponse_httpStatus' - The response's http status code. newUpdateAppInstanceResponse :: -- | 'httpStatus' Prelude.Int -> UpdateAppInstanceResponse newUpdateAppInstanceResponse pHttpStatus_ = UpdateAppInstanceResponse' { appInstanceArn = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The ARN of the @AppInstance@. updateAppInstanceResponse_appInstanceArn :: Lens.Lens' UpdateAppInstanceResponse (Prelude.Maybe Prelude.Text) updateAppInstanceResponse_appInstanceArn = Lens.lens (\UpdateAppInstanceResponse' {appInstanceArn} -> appInstanceArn) (\s@UpdateAppInstanceResponse' {} a -> s {appInstanceArn = a} :: UpdateAppInstanceResponse) -- | The response's http status code. updateAppInstanceResponse_httpStatus :: Lens.Lens' UpdateAppInstanceResponse Prelude.Int updateAppInstanceResponse_httpStatus = Lens.lens (\UpdateAppInstanceResponse' {httpStatus} -> httpStatus) (\s@UpdateAppInstanceResponse' {} a -> s {httpStatus = a} :: UpdateAppInstanceResponse) instance Prelude.NFData UpdateAppInstanceResponse where rnf UpdateAppInstanceResponse' {..} = Prelude.rnf appInstanceArn `Prelude.seq` Prelude.rnf httpStatus