amazonka-amplifybackend-2.0: gen/Amazonka/AmplifyBackend/Types/LoginAuthConfigReqObj.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.AmplifyBackend.Types.LoginAuthConfigReqObj
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.AmplifyBackend.Types.LoginAuthConfigReqObj where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
-- | The request object for this operation.
--
-- /See:/ 'newLoginAuthConfigReqObj' smart constructor.
data LoginAuthConfigReqObj = LoginAuthConfigReqObj'
{ -- | The Amazon Cognito identity pool ID used for the Amplify Admin UI login
-- authorization.
awsCognitoIdentityPoolId :: Prelude.Maybe Prelude.Text,
-- | The AWS Region for the Amplify Admin UI login.
awsCognitoRegion :: Prelude.Maybe Prelude.Text,
-- | The Amazon Cognito user pool ID used for Amplify Admin UI login
-- authentication.
awsUserPoolsId :: Prelude.Maybe Prelude.Text,
-- | The web client ID for the Amazon Cognito user pools.
awsUserPoolsWebClientId :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'LoginAuthConfigReqObj' 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:
--
-- 'awsCognitoIdentityPoolId', 'loginAuthConfigReqObj_awsCognitoIdentityPoolId' - The Amazon Cognito identity pool ID used for the Amplify Admin UI login
-- authorization.
--
-- 'awsCognitoRegion', 'loginAuthConfigReqObj_awsCognitoRegion' - The AWS Region for the Amplify Admin UI login.
--
-- 'awsUserPoolsId', 'loginAuthConfigReqObj_awsUserPoolsId' - The Amazon Cognito user pool ID used for Amplify Admin UI login
-- authentication.
--
-- 'awsUserPoolsWebClientId', 'loginAuthConfigReqObj_awsUserPoolsWebClientId' - The web client ID for the Amazon Cognito user pools.
newLoginAuthConfigReqObj ::
LoginAuthConfigReqObj
newLoginAuthConfigReqObj =
LoginAuthConfigReqObj'
{ awsCognitoIdentityPoolId =
Prelude.Nothing,
awsCognitoRegion = Prelude.Nothing,
awsUserPoolsId = Prelude.Nothing,
awsUserPoolsWebClientId = Prelude.Nothing
}
-- | The Amazon Cognito identity pool ID used for the Amplify Admin UI login
-- authorization.
loginAuthConfigReqObj_awsCognitoIdentityPoolId :: Lens.Lens' LoginAuthConfigReqObj (Prelude.Maybe Prelude.Text)
loginAuthConfigReqObj_awsCognitoIdentityPoolId = Lens.lens (\LoginAuthConfigReqObj' {awsCognitoIdentityPoolId} -> awsCognitoIdentityPoolId) (\s@LoginAuthConfigReqObj' {} a -> s {awsCognitoIdentityPoolId = a} :: LoginAuthConfigReqObj)
-- | The AWS Region for the Amplify Admin UI login.
loginAuthConfigReqObj_awsCognitoRegion :: Lens.Lens' LoginAuthConfigReqObj (Prelude.Maybe Prelude.Text)
loginAuthConfigReqObj_awsCognitoRegion = Lens.lens (\LoginAuthConfigReqObj' {awsCognitoRegion} -> awsCognitoRegion) (\s@LoginAuthConfigReqObj' {} a -> s {awsCognitoRegion = a} :: LoginAuthConfigReqObj)
-- | The Amazon Cognito user pool ID used for Amplify Admin UI login
-- authentication.
loginAuthConfigReqObj_awsUserPoolsId :: Lens.Lens' LoginAuthConfigReqObj (Prelude.Maybe Prelude.Text)
loginAuthConfigReqObj_awsUserPoolsId = Lens.lens (\LoginAuthConfigReqObj' {awsUserPoolsId} -> awsUserPoolsId) (\s@LoginAuthConfigReqObj' {} a -> s {awsUserPoolsId = a} :: LoginAuthConfigReqObj)
-- | The web client ID for the Amazon Cognito user pools.
loginAuthConfigReqObj_awsUserPoolsWebClientId :: Lens.Lens' LoginAuthConfigReqObj (Prelude.Maybe Prelude.Text)
loginAuthConfigReqObj_awsUserPoolsWebClientId = Lens.lens (\LoginAuthConfigReqObj' {awsUserPoolsWebClientId} -> awsUserPoolsWebClientId) (\s@LoginAuthConfigReqObj' {} a -> s {awsUserPoolsWebClientId = a} :: LoginAuthConfigReqObj)
instance Data.FromJSON LoginAuthConfigReqObj where
parseJSON =
Data.withObject
"LoginAuthConfigReqObj"
( \x ->
LoginAuthConfigReqObj'
Prelude.<$> (x Data..:? "aws_cognito_identity_pool_id")
Prelude.<*> (x Data..:? "aws_cognito_region")
Prelude.<*> (x Data..:? "aws_user_pools_id")
Prelude.<*> (x Data..:? "aws_user_pools_web_client_id")
)
instance Prelude.Hashable LoginAuthConfigReqObj where
hashWithSalt _salt LoginAuthConfigReqObj' {..} =
_salt
`Prelude.hashWithSalt` awsCognitoIdentityPoolId
`Prelude.hashWithSalt` awsCognitoRegion
`Prelude.hashWithSalt` awsUserPoolsId
`Prelude.hashWithSalt` awsUserPoolsWebClientId
instance Prelude.NFData LoginAuthConfigReqObj where
rnf LoginAuthConfigReqObj' {..} =
Prelude.rnf awsCognitoIdentityPoolId
`Prelude.seq` Prelude.rnf awsCognitoRegion
`Prelude.seq` Prelude.rnf awsUserPoolsId
`Prelude.seq` Prelude.rnf awsUserPoolsWebClientId
instance Data.ToJSON LoginAuthConfigReqObj where
toJSON LoginAuthConfigReqObj' {..} =
Data.object
( Prelude.catMaybes
[ ("aws_cognito_identity_pool_id" Data..=)
Prelude.<$> awsCognitoIdentityPoolId,
("aws_cognito_region" Data..=)
Prelude.<$> awsCognitoRegion,
("aws_user_pools_id" Data..=)
Prelude.<$> awsUserPoolsId,
("aws_user_pools_web_client_id" Data..=)
Prelude.<$> awsUserPoolsWebClientId
]
)