{-# 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.CognitoIdentityProvider.AdminUpdateUserAttributes
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Updates the specified user\'s attributes, including developer
-- attributes, as an administrator. Works on any user.
--
-- For custom attributes, you must prepend the @custom:@ prefix to the
-- attribute name.
--
-- In addition to updating user attributes, this API can also be used to
-- mark phone and email as verified.
--
-- This action might generate an SMS text message. Starting June 1, 2021,
-- U.S. telecom carriers require that you register an origination phone
-- number before you can send SMS messages to U.S. phone numbers. If you
-- use SMS text messages in Amazon Cognito, you must register a phone
-- number with
-- <https://console.aws.amazon.com/pinpoint/home/ Amazon Pinpoint>. Cognito
-- will use the the registered number automatically. Otherwise, Cognito
-- users that must receive SMS messages might be unable to sign up,
-- activate their accounts, or sign in.
--
-- If you have never used SMS text messages with Amazon Cognito or any
-- other Amazon Web Service, Amazon SNS might place your account in SMS
-- sandbox. In
-- /<https://docs.aws.amazon.com/sns/latest/dg/sns-sms-sandbox.html sandbox mode>/
-- , you’ll have limitations, such as sending messages to only verified
-- phone numbers. After testing in the sandbox environment, you can move
-- out of the SMS sandbox and into production. For more information, see
-- <https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-sms-userpool-settings.html SMS message settings for Cognito User Pools>
-- in the /Amazon Cognito Developer Guide/.
--
-- Calling this action requires developer credentials.
module Amazonka.CognitoIdentityProvider.AdminUpdateUserAttributes
  ( -- * Creating a Request
    AdminUpdateUserAttributes (..),
    newAdminUpdateUserAttributes,

    -- * Request Lenses
    adminUpdateUserAttributes_clientMetadata,
    adminUpdateUserAttributes_userPoolId,
    adminUpdateUserAttributes_username,
    adminUpdateUserAttributes_userAttributes,

    -- * Destructuring the Response
    AdminUpdateUserAttributesResponse (..),
    newAdminUpdateUserAttributesResponse,

    -- * Response Lenses
    adminUpdateUserAttributesResponse_httpStatus,
  )
where

import Amazonka.CognitoIdentityProvider.Types
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

-- | Represents the request to update the user\'s attributes as an
-- administrator.
--
-- /See:/ 'newAdminUpdateUserAttributes' smart constructor.
data AdminUpdateUserAttributes = AdminUpdateUserAttributes'
  { -- | A map of custom key-value pairs that you can provide as input for any
    -- custom workflows that this action triggers.
    --
    -- You create custom workflows by assigning Lambda functions to user pool
    -- triggers. When you use the AdminUpdateUserAttributes API action, Amazon
    -- Cognito invokes the function that is assigned to the /custom message/
    -- trigger. When Amazon Cognito invokes this function, it passes a JSON
    -- payload, which the function receives as input. This payload contains a
    -- @clientMetadata@ attribute, which provides the data that you assigned to
    -- the ClientMetadata parameter in your AdminUpdateUserAttributes request.
    -- In your function code in Lambda, you can process the @clientMetadata@
    -- value to enhance your workflow for your specific needs.
    --
    -- For more information, see
    -- <https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html Customizing User Pool Workflows with Lambda Triggers>
    -- in the /Amazon Cognito Developer Guide/.
    --
    -- Take the following limitations into consideration when you use the
    -- ClientMetadata parameter:
    --
    -- -   Amazon Cognito does not store the ClientMetadata value. This data is
    --     available only to Lambda triggers that are assigned to a user pool
    --     to support custom workflows. If your user pool configuration does
    --     not include triggers, the ClientMetadata parameter serves no
    --     purpose.
    --
    -- -   Amazon Cognito does not validate the ClientMetadata value.
    --
    -- -   Amazon Cognito does not encrypt the the ClientMetadata value, so
    --     don\'t use it to provide sensitive information.
    AdminUpdateUserAttributes -> Maybe (HashMap Text Text)
clientMetadata :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
    -- | The user pool ID for the user pool where you want to update user
    -- attributes.
    AdminUpdateUserAttributes -> Text
userPoolId :: Prelude.Text,
    -- | The user name of the user for whom you want to update user attributes.
    AdminUpdateUserAttributes -> Sensitive Text
username :: Core.Sensitive Prelude.Text,
    -- | An array of name-value pairs representing user attributes.
    --
    -- For custom attributes, you must prepend the @custom:@ prefix to the
    -- attribute name.
    AdminUpdateUserAttributes -> [AttributeType]
userAttributes :: [AttributeType]
  }
  deriving (AdminUpdateUserAttributes -> AdminUpdateUserAttributes -> Bool
(AdminUpdateUserAttributes -> AdminUpdateUserAttributes -> Bool)
-> (AdminUpdateUserAttributes -> AdminUpdateUserAttributes -> Bool)
-> Eq AdminUpdateUserAttributes
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AdminUpdateUserAttributes -> AdminUpdateUserAttributes -> Bool
$c/= :: AdminUpdateUserAttributes -> AdminUpdateUserAttributes -> Bool
== :: AdminUpdateUserAttributes -> AdminUpdateUserAttributes -> Bool
$c== :: AdminUpdateUserAttributes -> AdminUpdateUserAttributes -> Bool
Prelude.Eq, Int -> AdminUpdateUserAttributes -> ShowS
[AdminUpdateUserAttributes] -> ShowS
AdminUpdateUserAttributes -> String
(Int -> AdminUpdateUserAttributes -> ShowS)
-> (AdminUpdateUserAttributes -> String)
-> ([AdminUpdateUserAttributes] -> ShowS)
-> Show AdminUpdateUserAttributes
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AdminUpdateUserAttributes] -> ShowS
$cshowList :: [AdminUpdateUserAttributes] -> ShowS
show :: AdminUpdateUserAttributes -> String
$cshow :: AdminUpdateUserAttributes -> String
showsPrec :: Int -> AdminUpdateUserAttributes -> ShowS
$cshowsPrec :: Int -> AdminUpdateUserAttributes -> ShowS
Prelude.Show, (forall x.
 AdminUpdateUserAttributes -> Rep AdminUpdateUserAttributes x)
-> (forall x.
    Rep AdminUpdateUserAttributes x -> AdminUpdateUserAttributes)
-> Generic AdminUpdateUserAttributes
forall x.
Rep AdminUpdateUserAttributes x -> AdminUpdateUserAttributes
forall x.
AdminUpdateUserAttributes -> Rep AdminUpdateUserAttributes x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep AdminUpdateUserAttributes x -> AdminUpdateUserAttributes
$cfrom :: forall x.
AdminUpdateUserAttributes -> Rep AdminUpdateUserAttributes x
Prelude.Generic)

-- |
-- Create a value of 'AdminUpdateUserAttributes' 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:
--
-- 'clientMetadata', 'adminUpdateUserAttributes_clientMetadata' - A map of custom key-value pairs that you can provide as input for any
-- custom workflows that this action triggers.
--
-- You create custom workflows by assigning Lambda functions to user pool
-- triggers. When you use the AdminUpdateUserAttributes API action, Amazon
-- Cognito invokes the function that is assigned to the /custom message/
-- trigger. When Amazon Cognito invokes this function, it passes a JSON
-- payload, which the function receives as input. This payload contains a
-- @clientMetadata@ attribute, which provides the data that you assigned to
-- the ClientMetadata parameter in your AdminUpdateUserAttributes request.
-- In your function code in Lambda, you can process the @clientMetadata@
-- value to enhance your workflow for your specific needs.
--
-- For more information, see
-- <https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html Customizing User Pool Workflows with Lambda Triggers>
-- in the /Amazon Cognito Developer Guide/.
--
-- Take the following limitations into consideration when you use the
-- ClientMetadata parameter:
--
-- -   Amazon Cognito does not store the ClientMetadata value. This data is
--     available only to Lambda triggers that are assigned to a user pool
--     to support custom workflows. If your user pool configuration does
--     not include triggers, the ClientMetadata parameter serves no
--     purpose.
--
-- -   Amazon Cognito does not validate the ClientMetadata value.
--
-- -   Amazon Cognito does not encrypt the the ClientMetadata value, so
--     don\'t use it to provide sensitive information.
--
-- 'userPoolId', 'adminUpdateUserAttributes_userPoolId' - The user pool ID for the user pool where you want to update user
-- attributes.
--
-- 'username', 'adminUpdateUserAttributes_username' - The user name of the user for whom you want to update user attributes.
--
-- 'userAttributes', 'adminUpdateUserAttributes_userAttributes' - An array of name-value pairs representing user attributes.
--
-- For custom attributes, you must prepend the @custom:@ prefix to the
-- attribute name.
newAdminUpdateUserAttributes ::
  -- | 'userPoolId'
  Prelude.Text ->
  -- | 'username'
  Prelude.Text ->
  AdminUpdateUserAttributes
newAdminUpdateUserAttributes :: Text -> Text -> AdminUpdateUserAttributes
newAdminUpdateUserAttributes Text
pUserPoolId_ Text
pUsername_ =
  AdminUpdateUserAttributes' :: Maybe (HashMap Text Text)
-> Text
-> Sensitive Text
-> [AttributeType]
-> AdminUpdateUserAttributes
AdminUpdateUserAttributes'
    { $sel:clientMetadata:AdminUpdateUserAttributes' :: Maybe (HashMap Text Text)
clientMetadata =
        Maybe (HashMap Text Text)
forall a. Maybe a
Prelude.Nothing,
      $sel:userPoolId:AdminUpdateUserAttributes' :: Text
userPoolId = Text
pUserPoolId_,
      $sel:username:AdminUpdateUserAttributes' :: Sensitive Text
username = Tagged Text (Identity Text)
-> Tagged (Sensitive Text) (Identity (Sensitive Text))
forall a. Iso' (Sensitive a) a
Core._Sensitive (Tagged Text (Identity Text)
 -> Tagged (Sensitive Text) (Identity (Sensitive Text)))
-> Text -> Sensitive Text
forall t b. AReview t b -> b -> t
Lens.# Text
pUsername_,
      $sel:userAttributes:AdminUpdateUserAttributes' :: [AttributeType]
userAttributes = [AttributeType]
forall a. Monoid a => a
Prelude.mempty
    }

-- | A map of custom key-value pairs that you can provide as input for any
-- custom workflows that this action triggers.
--
-- You create custom workflows by assigning Lambda functions to user pool
-- triggers. When you use the AdminUpdateUserAttributes API action, Amazon
-- Cognito invokes the function that is assigned to the /custom message/
-- trigger. When Amazon Cognito invokes this function, it passes a JSON
-- payload, which the function receives as input. This payload contains a
-- @clientMetadata@ attribute, which provides the data that you assigned to
-- the ClientMetadata parameter in your AdminUpdateUserAttributes request.
-- In your function code in Lambda, you can process the @clientMetadata@
-- value to enhance your workflow for your specific needs.
--
-- For more information, see
-- <https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html Customizing User Pool Workflows with Lambda Triggers>
-- in the /Amazon Cognito Developer Guide/.
--
-- Take the following limitations into consideration when you use the
-- ClientMetadata parameter:
--
-- -   Amazon Cognito does not store the ClientMetadata value. This data is
--     available only to Lambda triggers that are assigned to a user pool
--     to support custom workflows. If your user pool configuration does
--     not include triggers, the ClientMetadata parameter serves no
--     purpose.
--
-- -   Amazon Cognito does not validate the ClientMetadata value.
--
-- -   Amazon Cognito does not encrypt the the ClientMetadata value, so
--     don\'t use it to provide sensitive information.
adminUpdateUserAttributes_clientMetadata :: Lens.Lens' AdminUpdateUserAttributes (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
adminUpdateUserAttributes_clientMetadata :: (Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
-> AdminUpdateUserAttributes -> f AdminUpdateUserAttributes
adminUpdateUserAttributes_clientMetadata = (AdminUpdateUserAttributes -> Maybe (HashMap Text Text))
-> (AdminUpdateUserAttributes
    -> Maybe (HashMap Text Text) -> AdminUpdateUserAttributes)
-> Lens
     AdminUpdateUserAttributes
     AdminUpdateUserAttributes
     (Maybe (HashMap Text Text))
     (Maybe (HashMap Text Text))
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminUpdateUserAttributes' {Maybe (HashMap Text Text)
clientMetadata :: Maybe (HashMap Text Text)
$sel:clientMetadata:AdminUpdateUserAttributes' :: AdminUpdateUserAttributes -> Maybe (HashMap Text Text)
clientMetadata} -> Maybe (HashMap Text Text)
clientMetadata) (\s :: AdminUpdateUserAttributes
s@AdminUpdateUserAttributes' {} Maybe (HashMap Text Text)
a -> AdminUpdateUserAttributes
s {$sel:clientMetadata:AdminUpdateUserAttributes' :: Maybe (HashMap Text Text)
clientMetadata = Maybe (HashMap Text Text)
a} :: AdminUpdateUserAttributes) ((Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
 -> AdminUpdateUserAttributes -> f AdminUpdateUserAttributes)
-> ((Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
    -> Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
-> (Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
-> AdminUpdateUserAttributes
-> f AdminUpdateUserAttributes
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
  (HashMap Text Text)
  (HashMap Text Text)
  (HashMap Text Text)
  (HashMap Text Text)
-> Iso
     (Maybe (HashMap Text Text))
     (Maybe (HashMap Text Text))
     (Maybe (HashMap Text Text))
     (Maybe (HashMap Text Text))
forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping AnIso
  (HashMap Text Text)
  (HashMap Text Text)
  (HashMap Text Text)
  (HashMap Text Text)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The user pool ID for the user pool where you want to update user
-- attributes.
adminUpdateUserAttributes_userPoolId :: Lens.Lens' AdminUpdateUserAttributes Prelude.Text
adminUpdateUserAttributes_userPoolId :: (Text -> f Text)
-> AdminUpdateUserAttributes -> f AdminUpdateUserAttributes
adminUpdateUserAttributes_userPoolId = (AdminUpdateUserAttributes -> Text)
-> (AdminUpdateUserAttributes -> Text -> AdminUpdateUserAttributes)
-> Lens
     AdminUpdateUserAttributes AdminUpdateUserAttributes Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminUpdateUserAttributes' {Text
userPoolId :: Text
$sel:userPoolId:AdminUpdateUserAttributes' :: AdminUpdateUserAttributes -> Text
userPoolId} -> Text
userPoolId) (\s :: AdminUpdateUserAttributes
s@AdminUpdateUserAttributes' {} Text
a -> AdminUpdateUserAttributes
s {$sel:userPoolId:AdminUpdateUserAttributes' :: Text
userPoolId = Text
a} :: AdminUpdateUserAttributes)

-- | The user name of the user for whom you want to update user attributes.
adminUpdateUserAttributes_username :: Lens.Lens' AdminUpdateUserAttributes Prelude.Text
adminUpdateUserAttributes_username :: (Text -> f Text)
-> AdminUpdateUserAttributes -> f AdminUpdateUserAttributes
adminUpdateUserAttributes_username = (AdminUpdateUserAttributes -> Sensitive Text)
-> (AdminUpdateUserAttributes
    -> Sensitive Text -> AdminUpdateUserAttributes)
-> Lens
     AdminUpdateUserAttributes
     AdminUpdateUserAttributes
     (Sensitive Text)
     (Sensitive Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminUpdateUserAttributes' {Sensitive Text
username :: Sensitive Text
$sel:username:AdminUpdateUserAttributes' :: AdminUpdateUserAttributes -> Sensitive Text
username} -> Sensitive Text
username) (\s :: AdminUpdateUserAttributes
s@AdminUpdateUserAttributes' {} Sensitive Text
a -> AdminUpdateUserAttributes
s {$sel:username:AdminUpdateUserAttributes' :: Sensitive Text
username = Sensitive Text
a} :: AdminUpdateUserAttributes) ((Sensitive Text -> f (Sensitive Text))
 -> AdminUpdateUserAttributes -> f AdminUpdateUserAttributes)
-> ((Text -> f Text) -> Sensitive Text -> f (Sensitive Text))
-> (Text -> f Text)
-> AdminUpdateUserAttributes
-> f AdminUpdateUserAttributes
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (Text -> f Text) -> Sensitive Text -> f (Sensitive Text)
forall a. Iso' (Sensitive a) a
Core._Sensitive

-- | An array of name-value pairs representing user attributes.
--
-- For custom attributes, you must prepend the @custom:@ prefix to the
-- attribute name.
adminUpdateUserAttributes_userAttributes :: Lens.Lens' AdminUpdateUserAttributes [AttributeType]
adminUpdateUserAttributes_userAttributes :: ([AttributeType] -> f [AttributeType])
-> AdminUpdateUserAttributes -> f AdminUpdateUserAttributes
adminUpdateUserAttributes_userAttributes = (AdminUpdateUserAttributes -> [AttributeType])
-> (AdminUpdateUserAttributes
    -> [AttributeType] -> AdminUpdateUserAttributes)
-> Lens
     AdminUpdateUserAttributes
     AdminUpdateUserAttributes
     [AttributeType]
     [AttributeType]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminUpdateUserAttributes' {[AttributeType]
userAttributes :: [AttributeType]
$sel:userAttributes:AdminUpdateUserAttributes' :: AdminUpdateUserAttributes -> [AttributeType]
userAttributes} -> [AttributeType]
userAttributes) (\s :: AdminUpdateUserAttributes
s@AdminUpdateUserAttributes' {} [AttributeType]
a -> AdminUpdateUserAttributes
s {$sel:userAttributes:AdminUpdateUserAttributes' :: [AttributeType]
userAttributes = [AttributeType]
a} :: AdminUpdateUserAttributes) (([AttributeType] -> f [AttributeType])
 -> AdminUpdateUserAttributes -> f AdminUpdateUserAttributes)
-> (([AttributeType] -> f [AttributeType])
    -> [AttributeType] -> f [AttributeType])
-> ([AttributeType] -> f [AttributeType])
-> AdminUpdateUserAttributes
-> f AdminUpdateUserAttributes
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([AttributeType] -> f [AttributeType])
-> [AttributeType] -> f [AttributeType]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Core.AWSRequest AdminUpdateUserAttributes where
  type
    AWSResponse AdminUpdateUserAttributes =
      AdminUpdateUserAttributesResponse
  request :: AdminUpdateUserAttributes -> Request AdminUpdateUserAttributes
request = Service
-> AdminUpdateUserAttributes -> Request AdminUpdateUserAttributes
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy AdminUpdateUserAttributes
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse AdminUpdateUserAttributes)))
response =
    (Int
 -> ResponseHeaders
 -> ()
 -> Either String (AWSResponse AdminUpdateUserAttributes))
-> Logger
-> Service
-> Proxy AdminUpdateUserAttributes
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse AdminUpdateUserAttributes)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> () -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveEmpty
      ( \Int
s ResponseHeaders
h ()
x ->
          Int -> AdminUpdateUserAttributesResponse
AdminUpdateUserAttributesResponse'
            (Int -> AdminUpdateUserAttributesResponse)
-> Either String Int
-> Either String AdminUpdateUserAttributesResponse
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable AdminUpdateUserAttributes

instance Prelude.NFData AdminUpdateUserAttributes

instance Core.ToHeaders AdminUpdateUserAttributes where
  toHeaders :: AdminUpdateUserAttributes -> ResponseHeaders
toHeaders =
    ResponseHeaders -> AdminUpdateUserAttributes -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
      ( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"X-Amz-Target"
              HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"AWSCognitoIdentityProviderService.AdminUpdateUserAttributes" ::
                          Prelude.ByteString
                      ),
            HeaderName
"Content-Type"
              HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Core.ToJSON AdminUpdateUserAttributes where
  toJSON :: AdminUpdateUserAttributes -> Value
toJSON AdminUpdateUserAttributes' {[AttributeType]
Maybe (HashMap Text Text)
Text
Sensitive Text
userAttributes :: [AttributeType]
username :: Sensitive Text
userPoolId :: Text
clientMetadata :: Maybe (HashMap Text Text)
$sel:userAttributes:AdminUpdateUserAttributes' :: AdminUpdateUserAttributes -> [AttributeType]
$sel:username:AdminUpdateUserAttributes' :: AdminUpdateUserAttributes -> Sensitive Text
$sel:userPoolId:AdminUpdateUserAttributes' :: AdminUpdateUserAttributes -> Text
$sel:clientMetadata:AdminUpdateUserAttributes' :: AdminUpdateUserAttributes -> Maybe (HashMap Text Text)
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"ClientMetadata" Text -> HashMap Text Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
              (HashMap Text Text -> Pair)
-> Maybe (HashMap Text Text) -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (HashMap Text Text)
clientMetadata,
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"UserPoolId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
userPoolId),
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Username" Text -> Sensitive Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Sensitive Text
username),
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
              (Text
"UserAttributes" Text -> [AttributeType] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= [AttributeType]
userAttributes)
          ]
      )

instance Core.ToPath AdminUpdateUserAttributes where
  toPath :: AdminUpdateUserAttributes -> ByteString
toPath = ByteString -> AdminUpdateUserAttributes -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"

instance Core.ToQuery AdminUpdateUserAttributes where
  toQuery :: AdminUpdateUserAttributes -> QueryString
toQuery = QueryString -> AdminUpdateUserAttributes -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty

-- | Represents the response from the server for the request to update user
-- attributes as an administrator.
--
-- /See:/ 'newAdminUpdateUserAttributesResponse' smart constructor.
data AdminUpdateUserAttributesResponse = AdminUpdateUserAttributesResponse'
  { -- | The response's http status code.
    AdminUpdateUserAttributesResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (AdminUpdateUserAttributesResponse
-> AdminUpdateUserAttributesResponse -> Bool
(AdminUpdateUserAttributesResponse
 -> AdminUpdateUserAttributesResponse -> Bool)
-> (AdminUpdateUserAttributesResponse
    -> AdminUpdateUserAttributesResponse -> Bool)
-> Eq AdminUpdateUserAttributesResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AdminUpdateUserAttributesResponse
-> AdminUpdateUserAttributesResponse -> Bool
$c/= :: AdminUpdateUserAttributesResponse
-> AdminUpdateUserAttributesResponse -> Bool
== :: AdminUpdateUserAttributesResponse
-> AdminUpdateUserAttributesResponse -> Bool
$c== :: AdminUpdateUserAttributesResponse
-> AdminUpdateUserAttributesResponse -> Bool
Prelude.Eq, ReadPrec [AdminUpdateUserAttributesResponse]
ReadPrec AdminUpdateUserAttributesResponse
Int -> ReadS AdminUpdateUserAttributesResponse
ReadS [AdminUpdateUserAttributesResponse]
(Int -> ReadS AdminUpdateUserAttributesResponse)
-> ReadS [AdminUpdateUserAttributesResponse]
-> ReadPrec AdminUpdateUserAttributesResponse
-> ReadPrec [AdminUpdateUserAttributesResponse]
-> Read AdminUpdateUserAttributesResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AdminUpdateUserAttributesResponse]
$creadListPrec :: ReadPrec [AdminUpdateUserAttributesResponse]
readPrec :: ReadPrec AdminUpdateUserAttributesResponse
$creadPrec :: ReadPrec AdminUpdateUserAttributesResponse
readList :: ReadS [AdminUpdateUserAttributesResponse]
$creadList :: ReadS [AdminUpdateUserAttributesResponse]
readsPrec :: Int -> ReadS AdminUpdateUserAttributesResponse
$creadsPrec :: Int -> ReadS AdminUpdateUserAttributesResponse
Prelude.Read, Int -> AdminUpdateUserAttributesResponse -> ShowS
[AdminUpdateUserAttributesResponse] -> ShowS
AdminUpdateUserAttributesResponse -> String
(Int -> AdminUpdateUserAttributesResponse -> ShowS)
-> (AdminUpdateUserAttributesResponse -> String)
-> ([AdminUpdateUserAttributesResponse] -> ShowS)
-> Show AdminUpdateUserAttributesResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AdminUpdateUserAttributesResponse] -> ShowS
$cshowList :: [AdminUpdateUserAttributesResponse] -> ShowS
show :: AdminUpdateUserAttributesResponse -> String
$cshow :: AdminUpdateUserAttributesResponse -> String
showsPrec :: Int -> AdminUpdateUserAttributesResponse -> ShowS
$cshowsPrec :: Int -> AdminUpdateUserAttributesResponse -> ShowS
Prelude.Show, (forall x.
 AdminUpdateUserAttributesResponse
 -> Rep AdminUpdateUserAttributesResponse x)
-> (forall x.
    Rep AdminUpdateUserAttributesResponse x
    -> AdminUpdateUserAttributesResponse)
-> Generic AdminUpdateUserAttributesResponse
forall x.
Rep AdminUpdateUserAttributesResponse x
-> AdminUpdateUserAttributesResponse
forall x.
AdminUpdateUserAttributesResponse
-> Rep AdminUpdateUserAttributesResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep AdminUpdateUserAttributesResponse x
-> AdminUpdateUserAttributesResponse
$cfrom :: forall x.
AdminUpdateUserAttributesResponse
-> Rep AdminUpdateUserAttributesResponse x
Prelude.Generic)

-- |
-- Create a value of 'AdminUpdateUserAttributesResponse' 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:
--
-- 'httpStatus', 'adminUpdateUserAttributesResponse_httpStatus' - The response's http status code.
newAdminUpdateUserAttributesResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  AdminUpdateUserAttributesResponse
newAdminUpdateUserAttributesResponse :: Int -> AdminUpdateUserAttributesResponse
newAdminUpdateUserAttributesResponse Int
pHttpStatus_ =
  AdminUpdateUserAttributesResponse' :: Int -> AdminUpdateUserAttributesResponse
AdminUpdateUserAttributesResponse'
    { $sel:httpStatus:AdminUpdateUserAttributesResponse' :: Int
httpStatus =
        Int
pHttpStatus_
    }

-- | The response's http status code.
adminUpdateUserAttributesResponse_httpStatus :: Lens.Lens' AdminUpdateUserAttributesResponse Prelude.Int
adminUpdateUserAttributesResponse_httpStatus :: (Int -> f Int)
-> AdminUpdateUserAttributesResponse
-> f AdminUpdateUserAttributesResponse
adminUpdateUserAttributesResponse_httpStatus = (AdminUpdateUserAttributesResponse -> Int)
-> (AdminUpdateUserAttributesResponse
    -> Int -> AdminUpdateUserAttributesResponse)
-> Lens
     AdminUpdateUserAttributesResponse
     AdminUpdateUserAttributesResponse
     Int
     Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminUpdateUserAttributesResponse' {Int
httpStatus :: Int
$sel:httpStatus:AdminUpdateUserAttributesResponse' :: AdminUpdateUserAttributesResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: AdminUpdateUserAttributesResponse
s@AdminUpdateUserAttributesResponse' {} Int
a -> AdminUpdateUserAttributesResponse
s {$sel:httpStatus:AdminUpdateUserAttributesResponse' :: Int
httpStatus = Int
a} :: AdminUpdateUserAttributesResponse)

instance
  Prelude.NFData
    AdminUpdateUserAttributesResponse