module Stratosphere.Cognito.UserPool.LambdaConfigProperty (
        module Exports, LambdaConfigProperty(..), mkLambdaConfigProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Cognito.UserPool.CustomEmailSenderProperty as Exports
import {-# SOURCE #-} Stratosphere.Cognito.UserPool.CustomSMSSenderProperty as Exports
import {-# SOURCE #-} Stratosphere.Cognito.UserPool.PreTokenGenerationConfigProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data LambdaConfigProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html>
    LambdaConfigProperty {LambdaConfigProperty -> ()
haddock_workaround_ :: (),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge>
                          LambdaConfigProperty -> Maybe (Value Text)
createAuthChallenge :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-customemailsender>
                          LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customEmailSender :: (Prelude.Maybe CustomEmailSenderProperty),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage>
                          LambdaConfigProperty -> Maybe (Value Text)
customMessage :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-customsmssender>
                          LambdaConfigProperty -> Maybe CustomSMSSenderProperty
customSMSSender :: (Prelude.Maybe CustomSMSSenderProperty),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge>
                          LambdaConfigProperty -> Maybe (Value Text)
defineAuthChallenge :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-kmskeyid>
                          LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication>
                          LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation>
                          LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication>
                          LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup>
                          LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengeneration>
                          LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-pretokengenerationconfig>
                          LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
preTokenGenerationConfig :: (Prelude.Maybe PreTokenGenerationConfigProperty),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-usermigration>
                          LambdaConfigProperty -> Maybe (Value Text)
userMigration :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse>
                          LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (LambdaConfigProperty -> LambdaConfigProperty -> Bool
(LambdaConfigProperty -> LambdaConfigProperty -> Bool)
-> (LambdaConfigProperty -> LambdaConfigProperty -> Bool)
-> Eq LambdaConfigProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: LambdaConfigProperty -> LambdaConfigProperty -> Bool
== :: LambdaConfigProperty -> LambdaConfigProperty -> Bool
$c/= :: LambdaConfigProperty -> LambdaConfigProperty -> Bool
/= :: LambdaConfigProperty -> LambdaConfigProperty -> Bool
Prelude.Eq, Int -> LambdaConfigProperty -> ShowS
[LambdaConfigProperty] -> ShowS
LambdaConfigProperty -> String
(Int -> LambdaConfigProperty -> ShowS)
-> (LambdaConfigProperty -> String)
-> ([LambdaConfigProperty] -> ShowS)
-> Show LambdaConfigProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> LambdaConfigProperty -> ShowS
showsPrec :: Int -> LambdaConfigProperty -> ShowS
$cshow :: LambdaConfigProperty -> String
show :: LambdaConfigProperty -> String
$cshowList :: [LambdaConfigProperty] -> ShowS
showList :: [LambdaConfigProperty] -> ShowS
Prelude.Show)
mkLambdaConfigProperty :: LambdaConfigProperty
mkLambdaConfigProperty :: LambdaConfigProperty
mkLambdaConfigProperty
  = LambdaConfigProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), createAuthChallenge :: Maybe (Value Text)
createAuthChallenge = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       customEmailSender :: Maybe CustomEmailSenderProperty
customEmailSender = Maybe CustomEmailSenderProperty
forall a. Maybe a
Prelude.Nothing,
       customMessage :: Maybe (Value Text)
customMessage = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, customSMSSender :: Maybe CustomSMSSenderProperty
customSMSSender = Maybe CustomSMSSenderProperty
forall a. Maybe a
Prelude.Nothing,
       defineAuthChallenge :: Maybe (Value Text)
defineAuthChallenge = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, kMSKeyID :: Maybe (Value Text)
kMSKeyID = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       postAuthentication :: Maybe (Value Text)
postAuthentication = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       postConfirmation :: Maybe (Value Text)
postConfirmation = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       preAuthentication :: Maybe (Value Text)
preAuthentication = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, preSignUp :: Maybe (Value Text)
preSignUp = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       preTokenGeneration :: Maybe (Value Text)
preTokenGeneration = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
preTokenGenerationConfig = Maybe PreTokenGenerationConfigProperty
forall a. Maybe a
Prelude.Nothing,
       userMigration :: Maybe (Value Text)
userMigration = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       verifyAuthChallengeResponse :: Maybe (Value Text)
verifyAuthChallengeResponse = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties LambdaConfigProperty where
  toResourceProperties :: LambdaConfigProperty -> ResourceProperties
toResourceProperties LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::Cognito::UserPool.LambdaConfig",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                           [Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CreateAuthChallenge" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
createAuthChallenge,
                            Key -> CustomEmailSenderProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomEmailSender" (CustomEmailSenderProperty -> (Key, Value))
-> Maybe CustomEmailSenderProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomEmailSenderProperty
customEmailSender,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomMessage" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
customMessage,
                            Key -> CustomSMSSenderProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomSMSSender" (CustomSMSSenderProperty -> (Key, Value))
-> Maybe CustomSMSSenderProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomSMSSenderProperty
customSMSSender,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefineAuthChallenge" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
defineAuthChallenge,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"KMSKeyID" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
kMSKeyID,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PostAuthentication" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
postAuthentication,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PostConfirmation" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
postConfirmation,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PreAuthentication" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
preAuthentication,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PreSignUp" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
preSignUp,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PreTokenGeneration" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
preTokenGeneration,
                            Key -> PreTokenGenerationConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PreTokenGenerationConfig"
                              (PreTokenGenerationConfigProperty -> (Key, Value))
-> Maybe PreTokenGenerationConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe PreTokenGenerationConfigProperty
preTokenGenerationConfig,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UserMigration" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
userMigration,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VerifyAuthChallengeResponse"
                              (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
verifyAuthChallengeResponse])}
instance JSON.ToJSON LambdaConfigProperty where
  toJSON :: LambdaConfigProperty -> Value
toJSON LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
              [Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CreateAuthChallenge" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
createAuthChallenge,
               Key -> CustomEmailSenderProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomEmailSender" (CustomEmailSenderProperty -> (Key, Value))
-> Maybe CustomEmailSenderProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomEmailSenderProperty
customEmailSender,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomMessage" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
customMessage,
               Key -> CustomSMSSenderProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomSMSSender" (CustomSMSSenderProperty -> (Key, Value))
-> Maybe CustomSMSSenderProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomSMSSenderProperty
customSMSSender,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefineAuthChallenge" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
defineAuthChallenge,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"KMSKeyID" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
kMSKeyID,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PostAuthentication" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
postAuthentication,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PostConfirmation" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
postConfirmation,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PreAuthentication" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
preAuthentication,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PreSignUp" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
preSignUp,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PreTokenGeneration" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
preTokenGeneration,
               Key -> PreTokenGenerationConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"PreTokenGenerationConfig"
                 (PreTokenGenerationConfigProperty -> (Key, Value))
-> Maybe PreTokenGenerationConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe PreTokenGenerationConfigProperty
preTokenGenerationConfig,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UserMigration" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
userMigration,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VerifyAuthChallengeResponse"
                 (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
verifyAuthChallengeResponse]))
instance Property "CreateAuthChallenge" LambdaConfigProperty where
  type PropertyType "CreateAuthChallenge" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "CreateAuthChallenge" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "CreateAuthChallenge" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {createAuthChallenge :: Maybe (Value Text)
createAuthChallenge = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CreateAuthChallenge" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "CustomEmailSender" LambdaConfigProperty where
  type PropertyType "CustomEmailSender" LambdaConfigProperty = CustomEmailSenderProperty
  set :: PropertyType "CustomEmailSender" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "CustomEmailSender" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {customEmailSender :: Maybe CustomEmailSenderProperty
customEmailSender = CustomEmailSenderProperty -> Maybe CustomEmailSenderProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CustomEmailSender" LambdaConfigProperty
CustomEmailSenderProperty
newValue, Maybe (Value Text)
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "CustomMessage" LambdaConfigProperty where
  type PropertyType "CustomMessage" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "CustomMessage" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "CustomMessage" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty {customMessage :: Maybe (Value Text)
customMessage = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CustomMessage" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "CustomSMSSender" LambdaConfigProperty where
  type PropertyType "CustomSMSSender" LambdaConfigProperty = CustomSMSSenderProperty
  set :: PropertyType "CustomSMSSender" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "CustomSMSSender" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {customSMSSender :: Maybe CustomSMSSenderProperty
customSMSSender = CustomSMSSenderProperty -> Maybe CustomSMSSenderProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CustomSMSSender" LambdaConfigProperty
CustomSMSSenderProperty
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "DefineAuthChallenge" LambdaConfigProperty where
  type PropertyType "DefineAuthChallenge" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "DefineAuthChallenge" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "DefineAuthChallenge" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {defineAuthChallenge :: Maybe (Value Text)
defineAuthChallenge = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DefineAuthChallenge" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "KMSKeyID" LambdaConfigProperty where
  type PropertyType "KMSKeyID" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "KMSKeyID" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "KMSKeyID" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty {kMSKeyID :: Maybe (Value Text)
kMSKeyID = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "KMSKeyID" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "PostAuthentication" LambdaConfigProperty where
  type PropertyType "PostAuthentication" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "PostAuthentication" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "PostAuthentication" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {postAuthentication :: Maybe (Value Text)
postAuthentication = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PostAuthentication" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "PostConfirmation" LambdaConfigProperty where
  type PropertyType "PostConfirmation" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "PostConfirmation" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "PostConfirmation" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {postConfirmation :: Maybe (Value Text)
postConfirmation = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PostConfirmation" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "PreAuthentication" LambdaConfigProperty where
  type PropertyType "PreAuthentication" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "PreAuthentication" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "PreAuthentication" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {preAuthentication :: Maybe (Value Text)
preAuthentication = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PreAuthentication" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "PreSignUp" LambdaConfigProperty where
  type PropertyType "PreSignUp" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "PreSignUp" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "PreSignUp" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty {preSignUp :: Maybe (Value Text)
preSignUp = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PreSignUp" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "PreTokenGeneration" LambdaConfigProperty where
  type PropertyType "PreTokenGeneration" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "PreTokenGeneration" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "PreTokenGeneration" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {preTokenGeneration :: Maybe (Value Text)
preTokenGeneration = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PreTokenGeneration" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "PreTokenGenerationConfig" LambdaConfigProperty where
  type PropertyType "PreTokenGenerationConfig" LambdaConfigProperty = PreTokenGenerationConfigProperty
  set :: PropertyType "PreTokenGenerationConfig" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "PreTokenGenerationConfig" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
preTokenGenerationConfig = PreTokenGenerationConfigProperty
-> Maybe PreTokenGenerationConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PreTokenGenerationConfig" LambdaConfigProperty
PreTokenGenerationConfigProperty
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "UserMigration" LambdaConfigProperty where
  type PropertyType "UserMigration" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "UserMigration" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "UserMigration" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty {userMigration :: Maybe (Value Text)
userMigration = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UserMigration" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
verifyAuthChallengeResponse :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
instance Property "VerifyAuthChallengeResponse" LambdaConfigProperty where
  type PropertyType "VerifyAuthChallengeResponse" LambdaConfigProperty = Value Prelude.Text
  set :: PropertyType "VerifyAuthChallengeResponse" LambdaConfigProperty
-> LambdaConfigProperty -> LambdaConfigProperty
set PropertyType "VerifyAuthChallengeResponse" LambdaConfigProperty
newValue LambdaConfigProperty {Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: LambdaConfigProperty -> ()
createAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
customEmailSender :: LambdaConfigProperty -> Maybe CustomEmailSenderProperty
customMessage :: LambdaConfigProperty -> Maybe (Value Text)
customSMSSender :: LambdaConfigProperty -> Maybe CustomSMSSenderProperty
defineAuthChallenge :: LambdaConfigProperty -> Maybe (Value Text)
kMSKeyID :: LambdaConfigProperty -> Maybe (Value Text)
postAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
postConfirmation :: LambdaConfigProperty -> Maybe (Value Text)
preAuthentication :: LambdaConfigProperty -> Maybe (Value Text)
preSignUp :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGeneration :: LambdaConfigProperty -> Maybe (Value Text)
preTokenGenerationConfig :: LambdaConfigProperty -> Maybe PreTokenGenerationConfigProperty
userMigration :: LambdaConfigProperty -> Maybe (Value Text)
verifyAuthChallengeResponse :: LambdaConfigProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
verifyAuthChallengeResponse :: Maybe (Value Text)
..}
    = LambdaConfigProperty
        {verifyAuthChallengeResponse :: Maybe (Value Text)
verifyAuthChallengeResponse = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "VerifyAuthChallengeResponse" LambdaConfigProperty
Value Text
newValue, Maybe (Value Text)
Maybe CustomEmailSenderProperty
Maybe CustomSMSSenderProperty
Maybe PreTokenGenerationConfigProperty
()
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
haddock_workaround_ :: ()
createAuthChallenge :: Maybe (Value Text)
customEmailSender :: Maybe CustomEmailSenderProperty
customMessage :: Maybe (Value Text)
customSMSSender :: Maybe CustomSMSSenderProperty
defineAuthChallenge :: Maybe (Value Text)
kMSKeyID :: Maybe (Value Text)
postAuthentication :: Maybe (Value Text)
postConfirmation :: Maybe (Value Text)
preAuthentication :: Maybe (Value Text)
preSignUp :: Maybe (Value Text)
preTokenGeneration :: Maybe (Value Text)
preTokenGenerationConfig :: Maybe PreTokenGenerationConfigProperty
userMigration :: Maybe (Value Text)
..}