{-# 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.AdminCreateUser
-- 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)
--
-- Creates a new user in the specified user pool.
--
-- If @MessageAction@ is not set, the default is to send a welcome message
-- via email or phone (SMS).
--
-- 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/.
--
-- This message is based on a template that you configured in your call to
-- create or update a user pool. This template includes your custom sign-up
-- instructions and placeholders for user name and temporary password.
--
-- Alternatively, you can call @AdminCreateUser@ with “SUPPRESS” for the
-- @MessageAction@ parameter, and Amazon Cognito will not send any email.
--
-- In either case, the user will be in the @FORCE_CHANGE_PASSWORD@ state
-- until they sign in and change their password.
--
-- @AdminCreateUser@ requires developer credentials.
module Amazonka.CognitoIdentityProvider.AdminCreateUser
  ( -- * Creating a Request
    AdminCreateUser (..),
    newAdminCreateUser,

    -- * Request Lenses
    adminCreateUser_clientMetadata,
    adminCreateUser_temporaryPassword,
    adminCreateUser_forceAliasCreation,
    adminCreateUser_desiredDeliveryMediums,
    adminCreateUser_messageAction,
    adminCreateUser_userAttributes,
    adminCreateUser_validationData,
    adminCreateUser_userPoolId,
    adminCreateUser_username,

    -- * Destructuring the Response
    AdminCreateUserResponse (..),
    newAdminCreateUserResponse,

    -- * Response Lenses
    adminCreateUserResponse_user,
    adminCreateUserResponse_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 create a user in the specified user pool.
--
-- /See:/ 'newAdminCreateUser' smart constructor.
data AdminCreateUser = AdminCreateUser'
  { -- | 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 AdminCreateUser API action, Amazon Cognito
    -- invokes the function that is assigned to the /pre sign-up/ 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 AdminCreateUser 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.
    AdminCreateUser -> Maybe (HashMap Text Text)
clientMetadata :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
    -- | The user\'s temporary password. This password must conform to the
    -- password policy that you specified when you created the user pool.
    --
    -- The temporary password is valid only once. To complete the Admin Create
    -- User flow, the user must enter the temporary password in the sign-in
    -- page along with a new password to be used in all future sign-ins.
    --
    -- This parameter is not required. If you do not specify a value, Amazon
    -- Cognito generates one for you.
    --
    -- The temporary password can only be used until the user account
    -- expiration limit that you specified when you created the user pool. To
    -- reset the account after that time limit, you must call @AdminCreateUser@
    -- again, specifying @\"RESEND\"@ for the @MessageAction@ parameter.
    AdminCreateUser -> Maybe (Sensitive Text)
temporaryPassword :: Prelude.Maybe (Core.Sensitive Prelude.Text),
    -- | This parameter is only used if the @phone_number_verified@ or
    -- @email_verified@ attribute is set to @True@. Otherwise, it is ignored.
    --
    -- If this parameter is set to @True@ and the phone number or email address
    -- specified in the UserAttributes parameter already exists as an alias
    -- with a different user, the API call will migrate the alias from the
    -- previous user to the newly created user. The previous user will no
    -- longer be able to log in using that alias.
    --
    -- If this parameter is set to @False@, the API throws an
    -- @AliasExistsException@ error if the alias already exists. The default
    -- value is @False@.
    AdminCreateUser -> Maybe Bool
forceAliasCreation :: Prelude.Maybe Prelude.Bool,
    -- | Specify @\"EMAIL\"@ if email will be used to send the welcome message.
    -- Specify @\"SMS\"@ if the phone number will be used. The default value is
    -- @\"SMS\"@. More than one value can be specified.
    AdminCreateUser -> Maybe [DeliveryMediumType]
desiredDeliveryMediums :: Prelude.Maybe [DeliveryMediumType],
    -- | Set to @\"RESEND\"@ to resend the invitation message to a user that
    -- already exists and reset the expiration limit on the user\'s account.
    -- Set to @\"SUPPRESS\"@ to suppress sending the message. Only one value
    -- can be specified.
    AdminCreateUser -> Maybe MessageActionType
messageAction :: Prelude.Maybe MessageActionType,
    -- | An array of name-value pairs that contain user attributes and attribute
    -- values to be set for the user to be created. You can create a user
    -- without specifying any attributes other than @Username@. However, any
    -- attributes that you specify as required (when creating a user pool or in
    -- the __Attributes__ tab of the console) must be supplied either by you
    -- (in your call to @AdminCreateUser@) or by the user (when he or she signs
    -- up in response to your welcome message).
    --
    -- For custom attributes, you must prepend the @custom:@ prefix to the
    -- attribute name.
    --
    -- To send a message inviting the user to sign up, you must specify the
    -- user\'s email address or phone number. This can be done in your call to
    -- AdminCreateUser or in the __Users__ tab of the Amazon Cognito console
    -- for managing your user pools.
    --
    -- In your call to @AdminCreateUser@, you can set the @email_verified@
    -- attribute to @True@, and you can set the @phone_number_verified@
    -- attribute to @True@. (You can also do this by calling
    -- <https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminUpdateUserAttributes.html AdminUpdateUserAttributes>.)
    --
    -- -   __email__: The email address of the user to whom the message that
    --     contains the code and username will be sent. Required if the
    --     @email_verified@ attribute is set to @True@, or if @\"EMAIL\"@ is
    --     specified in the @DesiredDeliveryMediums@ parameter.
    --
    -- -   __phone_number__: The phone number of the user to whom the message
    --     that contains the code and username will be sent. Required if the
    --     @phone_number_verified@ attribute is set to @True@, or if @\"SMS\"@
    --     is specified in the @DesiredDeliveryMediums@ parameter.
    AdminCreateUser -> Maybe [AttributeType]
userAttributes :: Prelude.Maybe [AttributeType],
    -- | The user\'s validation data. This is an array of name-value pairs that
    -- contain user attributes and attribute values that you can use for custom
    -- validation, such as restricting the types of user accounts that can be
    -- registered. For example, you might choose to allow or disallow user
    -- sign-up based on the user\'s domain.
    --
    -- To configure custom validation, you must create a Pre Sign-up Lambda
    -- trigger for the user pool as described in the Amazon Cognito Developer
    -- Guide. The Lambda trigger receives the validation data and uses it in
    -- the validation process.
    --
    -- The user\'s validation data is not persisted.
    AdminCreateUser -> Maybe [AttributeType]
validationData :: Prelude.Maybe [AttributeType],
    -- | The user pool ID for the user pool where the user will be created.
    AdminCreateUser -> Text
userPoolId :: Prelude.Text,
    -- | The username for the user. Must be unique within the user pool. Must be
    -- a UTF-8 string between 1 and 128 characters. After the user is created,
    -- the username cannot be changed.
    AdminCreateUser -> Sensitive Text
username :: Core.Sensitive Prelude.Text
  }
  deriving (AdminCreateUser -> AdminCreateUser -> Bool
(AdminCreateUser -> AdminCreateUser -> Bool)
-> (AdminCreateUser -> AdminCreateUser -> Bool)
-> Eq AdminCreateUser
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AdminCreateUser -> AdminCreateUser -> Bool
$c/= :: AdminCreateUser -> AdminCreateUser -> Bool
== :: AdminCreateUser -> AdminCreateUser -> Bool
$c== :: AdminCreateUser -> AdminCreateUser -> Bool
Prelude.Eq, Int -> AdminCreateUser -> ShowS
[AdminCreateUser] -> ShowS
AdminCreateUser -> String
(Int -> AdminCreateUser -> ShowS)
-> (AdminCreateUser -> String)
-> ([AdminCreateUser] -> ShowS)
-> Show AdminCreateUser
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AdminCreateUser] -> ShowS
$cshowList :: [AdminCreateUser] -> ShowS
show :: AdminCreateUser -> String
$cshow :: AdminCreateUser -> String
showsPrec :: Int -> AdminCreateUser -> ShowS
$cshowsPrec :: Int -> AdminCreateUser -> ShowS
Prelude.Show, (forall x. AdminCreateUser -> Rep AdminCreateUser x)
-> (forall x. Rep AdminCreateUser x -> AdminCreateUser)
-> Generic AdminCreateUser
forall x. Rep AdminCreateUser x -> AdminCreateUser
forall x. AdminCreateUser -> Rep AdminCreateUser x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AdminCreateUser x -> AdminCreateUser
$cfrom :: forall x. AdminCreateUser -> Rep AdminCreateUser x
Prelude.Generic)

-- |
-- Create a value of 'AdminCreateUser' 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', 'adminCreateUser_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 AdminCreateUser API action, Amazon Cognito
-- invokes the function that is assigned to the /pre sign-up/ 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 AdminCreateUser 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.
--
-- 'temporaryPassword', 'adminCreateUser_temporaryPassword' - The user\'s temporary password. This password must conform to the
-- password policy that you specified when you created the user pool.
--
-- The temporary password is valid only once. To complete the Admin Create
-- User flow, the user must enter the temporary password in the sign-in
-- page along with a new password to be used in all future sign-ins.
--
-- This parameter is not required. If you do not specify a value, Amazon
-- Cognito generates one for you.
--
-- The temporary password can only be used until the user account
-- expiration limit that you specified when you created the user pool. To
-- reset the account after that time limit, you must call @AdminCreateUser@
-- again, specifying @\"RESEND\"@ for the @MessageAction@ parameter.
--
-- 'forceAliasCreation', 'adminCreateUser_forceAliasCreation' - This parameter is only used if the @phone_number_verified@ or
-- @email_verified@ attribute is set to @True@. Otherwise, it is ignored.
--
-- If this parameter is set to @True@ and the phone number or email address
-- specified in the UserAttributes parameter already exists as an alias
-- with a different user, the API call will migrate the alias from the
-- previous user to the newly created user. The previous user will no
-- longer be able to log in using that alias.
--
-- If this parameter is set to @False@, the API throws an
-- @AliasExistsException@ error if the alias already exists. The default
-- value is @False@.
--
-- 'desiredDeliveryMediums', 'adminCreateUser_desiredDeliveryMediums' - Specify @\"EMAIL\"@ if email will be used to send the welcome message.
-- Specify @\"SMS\"@ if the phone number will be used. The default value is
-- @\"SMS\"@. More than one value can be specified.
--
-- 'messageAction', 'adminCreateUser_messageAction' - Set to @\"RESEND\"@ to resend the invitation message to a user that
-- already exists and reset the expiration limit on the user\'s account.
-- Set to @\"SUPPRESS\"@ to suppress sending the message. Only one value
-- can be specified.
--
-- 'userAttributes', 'adminCreateUser_userAttributes' - An array of name-value pairs that contain user attributes and attribute
-- values to be set for the user to be created. You can create a user
-- without specifying any attributes other than @Username@. However, any
-- attributes that you specify as required (when creating a user pool or in
-- the __Attributes__ tab of the console) must be supplied either by you
-- (in your call to @AdminCreateUser@) or by the user (when he or she signs
-- up in response to your welcome message).
--
-- For custom attributes, you must prepend the @custom:@ prefix to the
-- attribute name.
--
-- To send a message inviting the user to sign up, you must specify the
-- user\'s email address or phone number. This can be done in your call to
-- AdminCreateUser or in the __Users__ tab of the Amazon Cognito console
-- for managing your user pools.
--
-- In your call to @AdminCreateUser@, you can set the @email_verified@
-- attribute to @True@, and you can set the @phone_number_verified@
-- attribute to @True@. (You can also do this by calling
-- <https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminUpdateUserAttributes.html AdminUpdateUserAttributes>.)
--
-- -   __email__: The email address of the user to whom the message that
--     contains the code and username will be sent. Required if the
--     @email_verified@ attribute is set to @True@, or if @\"EMAIL\"@ is
--     specified in the @DesiredDeliveryMediums@ parameter.
--
-- -   __phone_number__: The phone number of the user to whom the message
--     that contains the code and username will be sent. Required if the
--     @phone_number_verified@ attribute is set to @True@, or if @\"SMS\"@
--     is specified in the @DesiredDeliveryMediums@ parameter.
--
-- 'validationData', 'adminCreateUser_validationData' - The user\'s validation data. This is an array of name-value pairs that
-- contain user attributes and attribute values that you can use for custom
-- validation, such as restricting the types of user accounts that can be
-- registered. For example, you might choose to allow or disallow user
-- sign-up based on the user\'s domain.
--
-- To configure custom validation, you must create a Pre Sign-up Lambda
-- trigger for the user pool as described in the Amazon Cognito Developer
-- Guide. The Lambda trigger receives the validation data and uses it in
-- the validation process.
--
-- The user\'s validation data is not persisted.
--
-- 'userPoolId', 'adminCreateUser_userPoolId' - The user pool ID for the user pool where the user will be created.
--
-- 'username', 'adminCreateUser_username' - The username for the user. Must be unique within the user pool. Must be
-- a UTF-8 string between 1 and 128 characters. After the user is created,
-- the username cannot be changed.
newAdminCreateUser ::
  -- | 'userPoolId'
  Prelude.Text ->
  -- | 'username'
  Prelude.Text ->
  AdminCreateUser
newAdminCreateUser :: Text -> Text -> AdminCreateUser
newAdminCreateUser Text
pUserPoolId_ Text
pUsername_ =
  AdminCreateUser' :: Maybe (HashMap Text Text)
-> Maybe (Sensitive Text)
-> Maybe Bool
-> Maybe [DeliveryMediumType]
-> Maybe MessageActionType
-> Maybe [AttributeType]
-> Maybe [AttributeType]
-> Text
-> Sensitive Text
-> AdminCreateUser
AdminCreateUser'
    { $sel:clientMetadata:AdminCreateUser' :: Maybe (HashMap Text Text)
clientMetadata = Maybe (HashMap Text Text)
forall a. Maybe a
Prelude.Nothing,
      $sel:temporaryPassword:AdminCreateUser' :: Maybe (Sensitive Text)
temporaryPassword = Maybe (Sensitive Text)
forall a. Maybe a
Prelude.Nothing,
      $sel:forceAliasCreation:AdminCreateUser' :: Maybe Bool
forceAliasCreation = Maybe Bool
forall a. Maybe a
Prelude.Nothing,
      $sel:desiredDeliveryMediums:AdminCreateUser' :: Maybe [DeliveryMediumType]
desiredDeliveryMediums = Maybe [DeliveryMediumType]
forall a. Maybe a
Prelude.Nothing,
      $sel:messageAction:AdminCreateUser' :: Maybe MessageActionType
messageAction = Maybe MessageActionType
forall a. Maybe a
Prelude.Nothing,
      $sel:userAttributes:AdminCreateUser' :: Maybe [AttributeType]
userAttributes = Maybe [AttributeType]
forall a. Maybe a
Prelude.Nothing,
      $sel:validationData:AdminCreateUser' :: Maybe [AttributeType]
validationData = Maybe [AttributeType]
forall a. Maybe a
Prelude.Nothing,
      $sel:userPoolId:AdminCreateUser' :: Text
userPoolId = Text
pUserPoolId_,
      $sel:username:AdminCreateUser' :: 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_
    }

-- | 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 AdminCreateUser API action, Amazon Cognito
-- invokes the function that is assigned to the /pre sign-up/ 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 AdminCreateUser 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.
adminCreateUser_clientMetadata :: Lens.Lens' AdminCreateUser (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
adminCreateUser_clientMetadata :: (Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
-> AdminCreateUser -> f AdminCreateUser
adminCreateUser_clientMetadata = (AdminCreateUser -> Maybe (HashMap Text Text))
-> (AdminCreateUser
    -> Maybe (HashMap Text Text) -> AdminCreateUser)
-> Lens
     AdminCreateUser
     AdminCreateUser
     (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 (\AdminCreateUser' {Maybe (HashMap Text Text)
clientMetadata :: Maybe (HashMap Text Text)
$sel:clientMetadata:AdminCreateUser' :: AdminCreateUser -> Maybe (HashMap Text Text)
clientMetadata} -> Maybe (HashMap Text Text)
clientMetadata) (\s :: AdminCreateUser
s@AdminCreateUser' {} Maybe (HashMap Text Text)
a -> AdminCreateUser
s {$sel:clientMetadata:AdminCreateUser' :: Maybe (HashMap Text Text)
clientMetadata = Maybe (HashMap Text Text)
a} :: AdminCreateUser) ((Maybe (HashMap Text Text) -> f (Maybe (HashMap Text Text)))
 -> AdminCreateUser -> f AdminCreateUser)
-> ((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)))
-> AdminCreateUser
-> f AdminCreateUser
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\'s temporary password. This password must conform to the
-- password policy that you specified when you created the user pool.
--
-- The temporary password is valid only once. To complete the Admin Create
-- User flow, the user must enter the temporary password in the sign-in
-- page along with a new password to be used in all future sign-ins.
--
-- This parameter is not required. If you do not specify a value, Amazon
-- Cognito generates one for you.
--
-- The temporary password can only be used until the user account
-- expiration limit that you specified when you created the user pool. To
-- reset the account after that time limit, you must call @AdminCreateUser@
-- again, specifying @\"RESEND\"@ for the @MessageAction@ parameter.
adminCreateUser_temporaryPassword :: Lens.Lens' AdminCreateUser (Prelude.Maybe Prelude.Text)
adminCreateUser_temporaryPassword :: (Maybe Text -> f (Maybe Text))
-> AdminCreateUser -> f AdminCreateUser
adminCreateUser_temporaryPassword = (AdminCreateUser -> Maybe (Sensitive Text))
-> (AdminCreateUser -> Maybe (Sensitive Text) -> AdminCreateUser)
-> Lens
     AdminCreateUser
     AdminCreateUser
     (Maybe (Sensitive Text))
     (Maybe (Sensitive Text))
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminCreateUser' {Maybe (Sensitive Text)
temporaryPassword :: Maybe (Sensitive Text)
$sel:temporaryPassword:AdminCreateUser' :: AdminCreateUser -> Maybe (Sensitive Text)
temporaryPassword} -> Maybe (Sensitive Text)
temporaryPassword) (\s :: AdminCreateUser
s@AdminCreateUser' {} Maybe (Sensitive Text)
a -> AdminCreateUser
s {$sel:temporaryPassword:AdminCreateUser' :: Maybe (Sensitive Text)
temporaryPassword = Maybe (Sensitive Text)
a} :: AdminCreateUser) ((Maybe (Sensitive Text) -> f (Maybe (Sensitive Text)))
 -> AdminCreateUser -> f AdminCreateUser)
-> ((Maybe Text -> f (Maybe Text))
    -> Maybe (Sensitive Text) -> f (Maybe (Sensitive Text)))
-> (Maybe Text -> f (Maybe Text))
-> AdminCreateUser
-> f AdminCreateUser
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso (Sensitive Text) (Sensitive Text) Text Text
-> Iso
     (Maybe (Sensitive Text))
     (Maybe (Sensitive Text))
     (Maybe Text)
     (Maybe 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 (Sensitive Text) (Sensitive Text) Text Text
forall a. Iso' (Sensitive a) a
Core._Sensitive

-- | This parameter is only used if the @phone_number_verified@ or
-- @email_verified@ attribute is set to @True@. Otherwise, it is ignored.
--
-- If this parameter is set to @True@ and the phone number or email address
-- specified in the UserAttributes parameter already exists as an alias
-- with a different user, the API call will migrate the alias from the
-- previous user to the newly created user. The previous user will no
-- longer be able to log in using that alias.
--
-- If this parameter is set to @False@, the API throws an
-- @AliasExistsException@ error if the alias already exists. The default
-- value is @False@.
adminCreateUser_forceAliasCreation :: Lens.Lens' AdminCreateUser (Prelude.Maybe Prelude.Bool)
adminCreateUser_forceAliasCreation :: (Maybe Bool -> f (Maybe Bool))
-> AdminCreateUser -> f AdminCreateUser
adminCreateUser_forceAliasCreation = (AdminCreateUser -> Maybe Bool)
-> (AdminCreateUser -> Maybe Bool -> AdminCreateUser)
-> Lens AdminCreateUser AdminCreateUser (Maybe Bool) (Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminCreateUser' {Maybe Bool
forceAliasCreation :: Maybe Bool
$sel:forceAliasCreation:AdminCreateUser' :: AdminCreateUser -> Maybe Bool
forceAliasCreation} -> Maybe Bool
forceAliasCreation) (\s :: AdminCreateUser
s@AdminCreateUser' {} Maybe Bool
a -> AdminCreateUser
s {$sel:forceAliasCreation:AdminCreateUser' :: Maybe Bool
forceAliasCreation = Maybe Bool
a} :: AdminCreateUser)

-- | Specify @\"EMAIL\"@ if email will be used to send the welcome message.
-- Specify @\"SMS\"@ if the phone number will be used. The default value is
-- @\"SMS\"@. More than one value can be specified.
adminCreateUser_desiredDeliveryMediums :: Lens.Lens' AdminCreateUser (Prelude.Maybe [DeliveryMediumType])
adminCreateUser_desiredDeliveryMediums :: (Maybe [DeliveryMediumType] -> f (Maybe [DeliveryMediumType]))
-> AdminCreateUser -> f AdminCreateUser
adminCreateUser_desiredDeliveryMediums = (AdminCreateUser -> Maybe [DeliveryMediumType])
-> (AdminCreateUser
    -> Maybe [DeliveryMediumType] -> AdminCreateUser)
-> Lens
     AdminCreateUser
     AdminCreateUser
     (Maybe [DeliveryMediumType])
     (Maybe [DeliveryMediumType])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminCreateUser' {Maybe [DeliveryMediumType]
desiredDeliveryMediums :: Maybe [DeliveryMediumType]
$sel:desiredDeliveryMediums:AdminCreateUser' :: AdminCreateUser -> Maybe [DeliveryMediumType]
desiredDeliveryMediums} -> Maybe [DeliveryMediumType]
desiredDeliveryMediums) (\s :: AdminCreateUser
s@AdminCreateUser' {} Maybe [DeliveryMediumType]
a -> AdminCreateUser
s {$sel:desiredDeliveryMediums:AdminCreateUser' :: Maybe [DeliveryMediumType]
desiredDeliveryMediums = Maybe [DeliveryMediumType]
a} :: AdminCreateUser) ((Maybe [DeliveryMediumType] -> f (Maybe [DeliveryMediumType]))
 -> AdminCreateUser -> f AdminCreateUser)
-> ((Maybe [DeliveryMediumType] -> f (Maybe [DeliveryMediumType]))
    -> Maybe [DeliveryMediumType] -> f (Maybe [DeliveryMediumType]))
-> (Maybe [DeliveryMediumType] -> f (Maybe [DeliveryMediumType]))
-> AdminCreateUser
-> f AdminCreateUser
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
  [DeliveryMediumType]
  [DeliveryMediumType]
  [DeliveryMediumType]
  [DeliveryMediumType]
-> Iso
     (Maybe [DeliveryMediumType])
     (Maybe [DeliveryMediumType])
     (Maybe [DeliveryMediumType])
     (Maybe [DeliveryMediumType])
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
  [DeliveryMediumType]
  [DeliveryMediumType]
  [DeliveryMediumType]
  [DeliveryMediumType]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | Set to @\"RESEND\"@ to resend the invitation message to a user that
-- already exists and reset the expiration limit on the user\'s account.
-- Set to @\"SUPPRESS\"@ to suppress sending the message. Only one value
-- can be specified.
adminCreateUser_messageAction :: Lens.Lens' AdminCreateUser (Prelude.Maybe MessageActionType)
adminCreateUser_messageAction :: (Maybe MessageActionType -> f (Maybe MessageActionType))
-> AdminCreateUser -> f AdminCreateUser
adminCreateUser_messageAction = (AdminCreateUser -> Maybe MessageActionType)
-> (AdminCreateUser -> Maybe MessageActionType -> AdminCreateUser)
-> Lens
     AdminCreateUser
     AdminCreateUser
     (Maybe MessageActionType)
     (Maybe MessageActionType)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminCreateUser' {Maybe MessageActionType
messageAction :: Maybe MessageActionType
$sel:messageAction:AdminCreateUser' :: AdminCreateUser -> Maybe MessageActionType
messageAction} -> Maybe MessageActionType
messageAction) (\s :: AdminCreateUser
s@AdminCreateUser' {} Maybe MessageActionType
a -> AdminCreateUser
s {$sel:messageAction:AdminCreateUser' :: Maybe MessageActionType
messageAction = Maybe MessageActionType
a} :: AdminCreateUser)

-- | An array of name-value pairs that contain user attributes and attribute
-- values to be set for the user to be created. You can create a user
-- without specifying any attributes other than @Username@. However, any
-- attributes that you specify as required (when creating a user pool or in
-- the __Attributes__ tab of the console) must be supplied either by you
-- (in your call to @AdminCreateUser@) or by the user (when he or she signs
-- up in response to your welcome message).
--
-- For custom attributes, you must prepend the @custom:@ prefix to the
-- attribute name.
--
-- To send a message inviting the user to sign up, you must specify the
-- user\'s email address or phone number. This can be done in your call to
-- AdminCreateUser or in the __Users__ tab of the Amazon Cognito console
-- for managing your user pools.
--
-- In your call to @AdminCreateUser@, you can set the @email_verified@
-- attribute to @True@, and you can set the @phone_number_verified@
-- attribute to @True@. (You can also do this by calling
-- <https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminUpdateUserAttributes.html AdminUpdateUserAttributes>.)
--
-- -   __email__: The email address of the user to whom the message that
--     contains the code and username will be sent. Required if the
--     @email_verified@ attribute is set to @True@, or if @\"EMAIL\"@ is
--     specified in the @DesiredDeliveryMediums@ parameter.
--
-- -   __phone_number__: The phone number of the user to whom the message
--     that contains the code and username will be sent. Required if the
--     @phone_number_verified@ attribute is set to @True@, or if @\"SMS\"@
--     is specified in the @DesiredDeliveryMediums@ parameter.
adminCreateUser_userAttributes :: Lens.Lens' AdminCreateUser (Prelude.Maybe [AttributeType])
adminCreateUser_userAttributes :: (Maybe [AttributeType] -> f (Maybe [AttributeType]))
-> AdminCreateUser -> f AdminCreateUser
adminCreateUser_userAttributes = (AdminCreateUser -> Maybe [AttributeType])
-> (AdminCreateUser -> Maybe [AttributeType] -> AdminCreateUser)
-> Lens
     AdminCreateUser
     AdminCreateUser
     (Maybe [AttributeType])
     (Maybe [AttributeType])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminCreateUser' {Maybe [AttributeType]
userAttributes :: Maybe [AttributeType]
$sel:userAttributes:AdminCreateUser' :: AdminCreateUser -> Maybe [AttributeType]
userAttributes} -> Maybe [AttributeType]
userAttributes) (\s :: AdminCreateUser
s@AdminCreateUser' {} Maybe [AttributeType]
a -> AdminCreateUser
s {$sel:userAttributes:AdminCreateUser' :: Maybe [AttributeType]
userAttributes = Maybe [AttributeType]
a} :: AdminCreateUser) ((Maybe [AttributeType] -> f (Maybe [AttributeType]))
 -> AdminCreateUser -> f AdminCreateUser)
-> ((Maybe [AttributeType] -> f (Maybe [AttributeType]))
    -> Maybe [AttributeType] -> f (Maybe [AttributeType]))
-> (Maybe [AttributeType] -> f (Maybe [AttributeType]))
-> AdminCreateUser
-> f AdminCreateUser
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
  [AttributeType] [AttributeType] [AttributeType] [AttributeType]
-> Iso
     (Maybe [AttributeType])
     (Maybe [AttributeType])
     (Maybe [AttributeType])
     (Maybe [AttributeType])
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
  [AttributeType] [AttributeType] [AttributeType] [AttributeType]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The user\'s validation data. This is an array of name-value pairs that
-- contain user attributes and attribute values that you can use for custom
-- validation, such as restricting the types of user accounts that can be
-- registered. For example, you might choose to allow or disallow user
-- sign-up based on the user\'s domain.
--
-- To configure custom validation, you must create a Pre Sign-up Lambda
-- trigger for the user pool as described in the Amazon Cognito Developer
-- Guide. The Lambda trigger receives the validation data and uses it in
-- the validation process.
--
-- The user\'s validation data is not persisted.
adminCreateUser_validationData :: Lens.Lens' AdminCreateUser (Prelude.Maybe [AttributeType])
adminCreateUser_validationData :: (Maybe [AttributeType] -> f (Maybe [AttributeType]))
-> AdminCreateUser -> f AdminCreateUser
adminCreateUser_validationData = (AdminCreateUser -> Maybe [AttributeType])
-> (AdminCreateUser -> Maybe [AttributeType] -> AdminCreateUser)
-> Lens
     AdminCreateUser
     AdminCreateUser
     (Maybe [AttributeType])
     (Maybe [AttributeType])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminCreateUser' {Maybe [AttributeType]
validationData :: Maybe [AttributeType]
$sel:validationData:AdminCreateUser' :: AdminCreateUser -> Maybe [AttributeType]
validationData} -> Maybe [AttributeType]
validationData) (\s :: AdminCreateUser
s@AdminCreateUser' {} Maybe [AttributeType]
a -> AdminCreateUser
s {$sel:validationData:AdminCreateUser' :: Maybe [AttributeType]
validationData = Maybe [AttributeType]
a} :: AdminCreateUser) ((Maybe [AttributeType] -> f (Maybe [AttributeType]))
 -> AdminCreateUser -> f AdminCreateUser)
-> ((Maybe [AttributeType] -> f (Maybe [AttributeType]))
    -> Maybe [AttributeType] -> f (Maybe [AttributeType]))
-> (Maybe [AttributeType] -> f (Maybe [AttributeType]))
-> AdminCreateUser
-> f AdminCreateUser
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
  [AttributeType] [AttributeType] [AttributeType] [AttributeType]
-> Iso
     (Maybe [AttributeType])
     (Maybe [AttributeType])
     (Maybe [AttributeType])
     (Maybe [AttributeType])
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
  [AttributeType] [AttributeType] [AttributeType] [AttributeType]
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 the user will be created.
adminCreateUser_userPoolId :: Lens.Lens' AdminCreateUser Prelude.Text
adminCreateUser_userPoolId :: (Text -> f Text) -> AdminCreateUser -> f AdminCreateUser
adminCreateUser_userPoolId = (AdminCreateUser -> Text)
-> (AdminCreateUser -> Text -> AdminCreateUser)
-> Lens AdminCreateUser AdminCreateUser Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminCreateUser' {Text
userPoolId :: Text
$sel:userPoolId:AdminCreateUser' :: AdminCreateUser -> Text
userPoolId} -> Text
userPoolId) (\s :: AdminCreateUser
s@AdminCreateUser' {} Text
a -> AdminCreateUser
s {$sel:userPoolId:AdminCreateUser' :: Text
userPoolId = Text
a} :: AdminCreateUser)

-- | The username for the user. Must be unique within the user pool. Must be
-- a UTF-8 string between 1 and 128 characters. After the user is created,
-- the username cannot be changed.
adminCreateUser_username :: Lens.Lens' AdminCreateUser Prelude.Text
adminCreateUser_username :: (Text -> f Text) -> AdminCreateUser -> f AdminCreateUser
adminCreateUser_username = (AdminCreateUser -> Sensitive Text)
-> (AdminCreateUser -> Sensitive Text -> AdminCreateUser)
-> Lens
     AdminCreateUser AdminCreateUser (Sensitive Text) (Sensitive Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminCreateUser' {Sensitive Text
username :: Sensitive Text
$sel:username:AdminCreateUser' :: AdminCreateUser -> Sensitive Text
username} -> Sensitive Text
username) (\s :: AdminCreateUser
s@AdminCreateUser' {} Sensitive Text
a -> AdminCreateUser
s {$sel:username:AdminCreateUser' :: Sensitive Text
username = Sensitive Text
a} :: AdminCreateUser) ((Sensitive Text -> f (Sensitive Text))
 -> AdminCreateUser -> f AdminCreateUser)
-> ((Text -> f Text) -> Sensitive Text -> f (Sensitive Text))
-> (Text -> f Text)
-> AdminCreateUser
-> f AdminCreateUser
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

instance Core.AWSRequest AdminCreateUser where
  type
    AWSResponse AdminCreateUser =
      AdminCreateUserResponse
  request :: AdminCreateUser -> Request AdminCreateUser
request = Service -> AdminCreateUser -> Request AdminCreateUser
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy AdminCreateUser
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse AdminCreateUser)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse AdminCreateUser))
-> Logger
-> Service
-> Proxy AdminCreateUser
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse AdminCreateUser)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
      ( \Int
s ResponseHeaders
h Object
x ->
          Maybe UserType -> Int -> AdminCreateUserResponse
AdminCreateUserResponse'
            (Maybe UserType -> Int -> AdminCreateUserResponse)
-> Either String (Maybe UserType)
-> Either String (Int -> AdminCreateUserResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe UserType)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"User")
            Either String (Int -> AdminCreateUserResponse)
-> Either String Int -> Either String AdminCreateUserResponse
forall (f :: * -> *) a b. Applicative f => 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 AdminCreateUser

instance Prelude.NFData AdminCreateUser

instance Core.ToHeaders AdminCreateUser where
  toHeaders :: AdminCreateUser -> ResponseHeaders
toHeaders =
    ResponseHeaders -> AdminCreateUser -> 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.AdminCreateUser" ::
                          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 AdminCreateUser where
  toJSON :: AdminCreateUser -> Value
toJSON AdminCreateUser' {Maybe Bool
Maybe [AttributeType]
Maybe [DeliveryMediumType]
Maybe (HashMap Text Text)
Maybe (Sensitive Text)
Maybe MessageActionType
Text
Sensitive Text
username :: Sensitive Text
userPoolId :: Text
validationData :: Maybe [AttributeType]
userAttributes :: Maybe [AttributeType]
messageAction :: Maybe MessageActionType
desiredDeliveryMediums :: Maybe [DeliveryMediumType]
forceAliasCreation :: Maybe Bool
temporaryPassword :: Maybe (Sensitive Text)
clientMetadata :: Maybe (HashMap Text Text)
$sel:username:AdminCreateUser' :: AdminCreateUser -> Sensitive Text
$sel:userPoolId:AdminCreateUser' :: AdminCreateUser -> Text
$sel:validationData:AdminCreateUser' :: AdminCreateUser -> Maybe [AttributeType]
$sel:userAttributes:AdminCreateUser' :: AdminCreateUser -> Maybe [AttributeType]
$sel:messageAction:AdminCreateUser' :: AdminCreateUser -> Maybe MessageActionType
$sel:desiredDeliveryMediums:AdminCreateUser' :: AdminCreateUser -> Maybe [DeliveryMediumType]
$sel:forceAliasCreation:AdminCreateUser' :: AdminCreateUser -> Maybe Bool
$sel:temporaryPassword:AdminCreateUser' :: AdminCreateUser -> Maybe (Sensitive Text)
$sel:clientMetadata:AdminCreateUser' :: AdminCreateUser -> 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,
            (Text
"TemporaryPassword" Text -> Sensitive Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
              (Sensitive Text -> Pair) -> Maybe (Sensitive Text) -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Sensitive Text)
temporaryPassword,
            (Text
"ForceAliasCreation" Text -> Bool -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
              (Bool -> Pair) -> Maybe Bool -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Bool
forceAliasCreation,
            (Text
"DesiredDeliveryMediums" Text -> [DeliveryMediumType] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
              ([DeliveryMediumType] -> Pair)
-> Maybe [DeliveryMediumType] -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DeliveryMediumType]
desiredDeliveryMediums,
            (Text
"MessageAction" Text -> MessageActionType -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (MessageActionType -> Pair)
-> Maybe MessageActionType -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe MessageActionType
messageAction,
            (Text
"UserAttributes" Text -> [AttributeType] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
              ([AttributeType] -> Pair) -> Maybe [AttributeType] -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [AttributeType]
userAttributes,
            (Text
"ValidationData" Text -> [AttributeType] -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=)
              ([AttributeType] -> Pair) -> Maybe [AttributeType] -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [AttributeType]
validationData,
            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)
          ]
      )

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

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

-- | Represents the response from the server to the request to create the
-- user.
--
-- /See:/ 'newAdminCreateUserResponse' smart constructor.
data AdminCreateUserResponse = AdminCreateUserResponse'
  { -- | The newly created user.
    AdminCreateUserResponse -> Maybe UserType
user :: Prelude.Maybe UserType,
    -- | The response's http status code.
    AdminCreateUserResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (AdminCreateUserResponse -> AdminCreateUserResponse -> Bool
(AdminCreateUserResponse -> AdminCreateUserResponse -> Bool)
-> (AdminCreateUserResponse -> AdminCreateUserResponse -> Bool)
-> Eq AdminCreateUserResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AdminCreateUserResponse -> AdminCreateUserResponse -> Bool
$c/= :: AdminCreateUserResponse -> AdminCreateUserResponse -> Bool
== :: AdminCreateUserResponse -> AdminCreateUserResponse -> Bool
$c== :: AdminCreateUserResponse -> AdminCreateUserResponse -> Bool
Prelude.Eq, Int -> AdminCreateUserResponse -> ShowS
[AdminCreateUserResponse] -> ShowS
AdminCreateUserResponse -> String
(Int -> AdminCreateUserResponse -> ShowS)
-> (AdminCreateUserResponse -> String)
-> ([AdminCreateUserResponse] -> ShowS)
-> Show AdminCreateUserResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AdminCreateUserResponse] -> ShowS
$cshowList :: [AdminCreateUserResponse] -> ShowS
show :: AdminCreateUserResponse -> String
$cshow :: AdminCreateUserResponse -> String
showsPrec :: Int -> AdminCreateUserResponse -> ShowS
$cshowsPrec :: Int -> AdminCreateUserResponse -> ShowS
Prelude.Show, (forall x.
 AdminCreateUserResponse -> Rep AdminCreateUserResponse x)
-> (forall x.
    Rep AdminCreateUserResponse x -> AdminCreateUserResponse)
-> Generic AdminCreateUserResponse
forall x. Rep AdminCreateUserResponse x -> AdminCreateUserResponse
forall x. AdminCreateUserResponse -> Rep AdminCreateUserResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AdminCreateUserResponse x -> AdminCreateUserResponse
$cfrom :: forall x. AdminCreateUserResponse -> Rep AdminCreateUserResponse x
Prelude.Generic)

-- |
-- Create a value of 'AdminCreateUserResponse' 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:
--
-- 'user', 'adminCreateUserResponse_user' - The newly created user.
--
-- 'httpStatus', 'adminCreateUserResponse_httpStatus' - The response's http status code.
newAdminCreateUserResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  AdminCreateUserResponse
newAdminCreateUserResponse :: Int -> AdminCreateUserResponse
newAdminCreateUserResponse Int
pHttpStatus_ =
  AdminCreateUserResponse' :: Maybe UserType -> Int -> AdminCreateUserResponse
AdminCreateUserResponse'
    { $sel:user:AdminCreateUserResponse' :: Maybe UserType
user = Maybe UserType
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:AdminCreateUserResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The newly created user.
adminCreateUserResponse_user :: Lens.Lens' AdminCreateUserResponse (Prelude.Maybe UserType)
adminCreateUserResponse_user :: (Maybe UserType -> f (Maybe UserType))
-> AdminCreateUserResponse -> f AdminCreateUserResponse
adminCreateUserResponse_user = (AdminCreateUserResponse -> Maybe UserType)
-> (AdminCreateUserResponse
    -> Maybe UserType -> AdminCreateUserResponse)
-> Lens
     AdminCreateUserResponse
     AdminCreateUserResponse
     (Maybe UserType)
     (Maybe UserType)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AdminCreateUserResponse' {Maybe UserType
user :: Maybe UserType
$sel:user:AdminCreateUserResponse' :: AdminCreateUserResponse -> Maybe UserType
user} -> Maybe UserType
user) (\s :: AdminCreateUserResponse
s@AdminCreateUserResponse' {} Maybe UserType
a -> AdminCreateUserResponse
s {$sel:user:AdminCreateUserResponse' :: Maybe UserType
user = Maybe UserType
a} :: AdminCreateUserResponse)

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

instance Prelude.NFData AdminCreateUserResponse