amazonka-chime-2.0: gen/Amazonka/Chime/UpdateAppInstanceUser.hs
{-# 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.UpdateAppInstanceUser
-- 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 details of an @AppInstanceUser@. You can update names and
-- metadata.
module Amazonka.Chime.UpdateAppInstanceUser
( -- * Creating a Request
UpdateAppInstanceUser (..),
newUpdateAppInstanceUser,
-- * Request Lenses
updateAppInstanceUser_metadata,
updateAppInstanceUser_appInstanceUserArn,
updateAppInstanceUser_name,
-- * Destructuring the Response
UpdateAppInstanceUserResponse (..),
newUpdateAppInstanceUserResponse,
-- * Response Lenses
updateAppInstanceUserResponse_appInstanceUserArn,
updateAppInstanceUserResponse_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:/ 'newUpdateAppInstanceUser' smart constructor.
data UpdateAppInstanceUser = UpdateAppInstanceUser'
{ -- | The metadata of the @AppInstanceUser@.
metadata :: Prelude.Maybe (Data.Sensitive Prelude.Text),
-- | The ARN of the @AppInstanceUser@.
appInstanceUserArn :: Prelude.Text,
-- | The name of the @AppInstanceUser@.
name :: Data.Sensitive Prelude.Text
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'UpdateAppInstanceUser' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'metadata', 'updateAppInstanceUser_metadata' - The metadata of the @AppInstanceUser@.
--
-- 'appInstanceUserArn', 'updateAppInstanceUser_appInstanceUserArn' - The ARN of the @AppInstanceUser@.
--
-- 'name', 'updateAppInstanceUser_name' - The name of the @AppInstanceUser@.
newUpdateAppInstanceUser ::
-- | 'appInstanceUserArn'
Prelude.Text ->
-- | 'name'
Prelude.Text ->
UpdateAppInstanceUser
newUpdateAppInstanceUser pAppInstanceUserArn_ pName_ =
UpdateAppInstanceUser'
{ metadata = Prelude.Nothing,
appInstanceUserArn = pAppInstanceUserArn_,
name = Data._Sensitive Lens.# pName_
}
-- | The metadata of the @AppInstanceUser@.
updateAppInstanceUser_metadata :: Lens.Lens' UpdateAppInstanceUser (Prelude.Maybe Prelude.Text)
updateAppInstanceUser_metadata = Lens.lens (\UpdateAppInstanceUser' {metadata} -> metadata) (\s@UpdateAppInstanceUser' {} a -> s {metadata = a} :: UpdateAppInstanceUser) Prelude.. Lens.mapping Data._Sensitive
-- | The ARN of the @AppInstanceUser@.
updateAppInstanceUser_appInstanceUserArn :: Lens.Lens' UpdateAppInstanceUser Prelude.Text
updateAppInstanceUser_appInstanceUserArn = Lens.lens (\UpdateAppInstanceUser' {appInstanceUserArn} -> appInstanceUserArn) (\s@UpdateAppInstanceUser' {} a -> s {appInstanceUserArn = a} :: UpdateAppInstanceUser)
-- | The name of the @AppInstanceUser@.
updateAppInstanceUser_name :: Lens.Lens' UpdateAppInstanceUser Prelude.Text
updateAppInstanceUser_name = Lens.lens (\UpdateAppInstanceUser' {name} -> name) (\s@UpdateAppInstanceUser' {} a -> s {name = a} :: UpdateAppInstanceUser) Prelude.. Data._Sensitive
instance Core.AWSRequest UpdateAppInstanceUser where
type
AWSResponse UpdateAppInstanceUser =
UpdateAppInstanceUserResponse
request overrides =
Request.putJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
UpdateAppInstanceUserResponse'
Prelude.<$> (x Data..?> "AppInstanceUserArn")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable UpdateAppInstanceUser where
hashWithSalt _salt UpdateAppInstanceUser' {..} =
_salt
`Prelude.hashWithSalt` metadata
`Prelude.hashWithSalt` appInstanceUserArn
`Prelude.hashWithSalt` name
instance Prelude.NFData UpdateAppInstanceUser where
rnf UpdateAppInstanceUser' {..} =
Prelude.rnf metadata
`Prelude.seq` Prelude.rnf appInstanceUserArn
`Prelude.seq` Prelude.rnf name
instance Data.ToHeaders UpdateAppInstanceUser where
toHeaders = Prelude.const Prelude.mempty
instance Data.ToJSON UpdateAppInstanceUser where
toJSON UpdateAppInstanceUser' {..} =
Data.object
( Prelude.catMaybes
[ ("Metadata" Data..=) Prelude.<$> metadata,
Prelude.Just ("Name" Data..= name)
]
)
instance Data.ToPath UpdateAppInstanceUser where
toPath UpdateAppInstanceUser' {..} =
Prelude.mconcat
[ "/app-instance-users/",
Data.toBS appInstanceUserArn
]
instance Data.ToQuery UpdateAppInstanceUser where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newUpdateAppInstanceUserResponse' smart constructor.
data UpdateAppInstanceUserResponse = UpdateAppInstanceUserResponse'
{ -- | The ARN of the @AppInstanceUser@.
appInstanceUserArn :: 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 'UpdateAppInstanceUserResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'appInstanceUserArn', 'updateAppInstanceUserResponse_appInstanceUserArn' - The ARN of the @AppInstanceUser@.
--
-- 'httpStatus', 'updateAppInstanceUserResponse_httpStatus' - The response's http status code.
newUpdateAppInstanceUserResponse ::
-- | 'httpStatus'
Prelude.Int ->
UpdateAppInstanceUserResponse
newUpdateAppInstanceUserResponse pHttpStatus_ =
UpdateAppInstanceUserResponse'
{ appInstanceUserArn =
Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The ARN of the @AppInstanceUser@.
updateAppInstanceUserResponse_appInstanceUserArn :: Lens.Lens' UpdateAppInstanceUserResponse (Prelude.Maybe Prelude.Text)
updateAppInstanceUserResponse_appInstanceUserArn = Lens.lens (\UpdateAppInstanceUserResponse' {appInstanceUserArn} -> appInstanceUserArn) (\s@UpdateAppInstanceUserResponse' {} a -> s {appInstanceUserArn = a} :: UpdateAppInstanceUserResponse)
-- | The response's http status code.
updateAppInstanceUserResponse_httpStatus :: Lens.Lens' UpdateAppInstanceUserResponse Prelude.Int
updateAppInstanceUserResponse_httpStatus = Lens.lens (\UpdateAppInstanceUserResponse' {httpStatus} -> httpStatus) (\s@UpdateAppInstanceUserResponse' {} a -> s {httpStatus = a} :: UpdateAppInstanceUserResponse)
instance Prelude.NFData UpdateAppInstanceUserResponse where
rnf UpdateAppInstanceUserResponse' {..} =
Prelude.rnf appInstanceUserArn
`Prelude.seq` Prelude.rnf httpStatus