module Stratosphere.Cognito.ManagedLoginBranding (
module Exports, ManagedLoginBranding(..), mkManagedLoginBranding
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Cognito.ManagedLoginBranding.AssetTypeProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ManagedLoginBranding
=
ManagedLoginBranding {ManagedLoginBranding -> ()
haddock_workaround_ :: (),
ManagedLoginBranding -> Maybe [AssetTypeProperty]
assets :: (Prelude.Maybe [AssetTypeProperty]),
ManagedLoginBranding -> Maybe (Value Text)
clientId :: (Prelude.Maybe (Value Prelude.Text)),
ManagedLoginBranding -> Maybe (Value Bool)
returnMergedResources :: (Prelude.Maybe (Value Prelude.Bool)),
ManagedLoginBranding -> Maybe Object
settings :: (Prelude.Maybe JSON.Object),
ManagedLoginBranding -> Maybe (Value Bool)
useCognitoProvidedValues :: (Prelude.Maybe (Value Prelude.Bool)),
ManagedLoginBranding -> Value Text
userPoolId :: (Value Prelude.Text)}
deriving stock (ManagedLoginBranding -> ManagedLoginBranding -> Bool
(ManagedLoginBranding -> ManagedLoginBranding -> Bool)
-> (ManagedLoginBranding -> ManagedLoginBranding -> Bool)
-> Eq ManagedLoginBranding
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ManagedLoginBranding -> ManagedLoginBranding -> Bool
== :: ManagedLoginBranding -> ManagedLoginBranding -> Bool
$c/= :: ManagedLoginBranding -> ManagedLoginBranding -> Bool
/= :: ManagedLoginBranding -> ManagedLoginBranding -> Bool
Prelude.Eq, Int -> ManagedLoginBranding -> ShowS
[ManagedLoginBranding] -> ShowS
ManagedLoginBranding -> String
(Int -> ManagedLoginBranding -> ShowS)
-> (ManagedLoginBranding -> String)
-> ([ManagedLoginBranding] -> ShowS)
-> Show ManagedLoginBranding
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ManagedLoginBranding -> ShowS
showsPrec :: Int -> ManagedLoginBranding -> ShowS
$cshow :: ManagedLoginBranding -> String
show :: ManagedLoginBranding -> String
$cshowList :: [ManagedLoginBranding] -> ShowS
showList :: [ManagedLoginBranding] -> ShowS
Prelude.Show)
mkManagedLoginBranding ::
Value Prelude.Text -> ManagedLoginBranding
mkManagedLoginBranding :: Value Text -> ManagedLoginBranding
mkManagedLoginBranding Value Text
userPoolId
= ManagedLoginBranding
{haddock_workaround_ :: ()
haddock_workaround_ = (), userPoolId :: Value Text
userPoolId = Value Text
userPoolId,
assets :: Maybe [AssetTypeProperty]
assets = Maybe [AssetTypeProperty]
forall a. Maybe a
Prelude.Nothing, clientId :: Maybe (Value Text)
clientId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
returnMergedResources :: Maybe (Value Bool)
returnMergedResources = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
settings :: Maybe Object
settings = Maybe Object
forall a. Maybe a
Prelude.Nothing,
useCognitoProvidedValues :: Maybe (Value Bool)
useCognitoProvidedValues = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ManagedLoginBranding where
toResourceProperties :: ManagedLoginBranding -> ResourceProperties
toResourceProperties ManagedLoginBranding {Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ManagedLoginBranding -> ()
assets :: ManagedLoginBranding -> Maybe [AssetTypeProperty]
clientId :: ManagedLoginBranding -> Maybe (Value Text)
returnMergedResources :: ManagedLoginBranding -> Maybe (Value Bool)
settings :: ManagedLoginBranding -> Maybe Object
useCognitoProvidedValues :: ManagedLoginBranding -> Maybe (Value Bool)
userPoolId :: ManagedLoginBranding -> Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::Cognito::ManagedLoginBranding",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"UserPoolId" 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..= Value Text
userPoolId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> [AssetTypeProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Assets" ([AssetTypeProperty] -> (Key, Value))
-> Maybe [AssetTypeProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [AssetTypeProperty]
assets,
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
"ClientId" (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)
clientId,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ReturnMergedResources"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
returnMergedResources,
Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Settings" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
settings,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UseCognitoProvidedValues"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
useCognitoProvidedValues]))}
instance JSON.ToJSON ManagedLoginBranding where
toJSON :: ManagedLoginBranding -> Value
toJSON ManagedLoginBranding {Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ManagedLoginBranding -> ()
assets :: ManagedLoginBranding -> Maybe [AssetTypeProperty]
clientId :: ManagedLoginBranding -> Maybe (Value Text)
returnMergedResources :: ManagedLoginBranding -> Maybe (Value Bool)
settings :: ManagedLoginBranding -> Maybe Object
useCognitoProvidedValues :: ManagedLoginBranding -> Maybe (Value Bool)
userPoolId :: ManagedLoginBranding -> Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"UserPoolId" 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..= Value Text
userPoolId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> [AssetTypeProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Assets" ([AssetTypeProperty] -> (Key, Value))
-> Maybe [AssetTypeProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [AssetTypeProperty]
assets,
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
"ClientId" (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)
clientId,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ReturnMergedResources"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
returnMergedResources,
Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Settings" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
settings,
Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UseCognitoProvidedValues"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
useCognitoProvidedValues])))
instance Property "Assets" ManagedLoginBranding where
type PropertyType "Assets" ManagedLoginBranding = [AssetTypeProperty]
set :: PropertyType "Assets" ManagedLoginBranding
-> ManagedLoginBranding -> ManagedLoginBranding
set PropertyType "Assets" ManagedLoginBranding
newValue ManagedLoginBranding {Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ManagedLoginBranding -> ()
assets :: ManagedLoginBranding -> Maybe [AssetTypeProperty]
clientId :: ManagedLoginBranding -> Maybe (Value Text)
returnMergedResources :: ManagedLoginBranding -> Maybe (Value Bool)
settings :: ManagedLoginBranding -> Maybe Object
useCognitoProvidedValues :: ManagedLoginBranding -> Maybe (Value Bool)
userPoolId :: ManagedLoginBranding -> Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
= ManagedLoginBranding {assets :: Maybe [AssetTypeProperty]
assets = [AssetTypeProperty] -> Maybe [AssetTypeProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [AssetTypeProperty]
PropertyType "Assets" ManagedLoginBranding
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
haddock_workaround_ :: ()
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
instance Property "ClientId" ManagedLoginBranding where
type PropertyType "ClientId" ManagedLoginBranding = Value Prelude.Text
set :: PropertyType "ClientId" ManagedLoginBranding
-> ManagedLoginBranding -> ManagedLoginBranding
set PropertyType "ClientId" ManagedLoginBranding
newValue ManagedLoginBranding {Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ManagedLoginBranding -> ()
assets :: ManagedLoginBranding -> Maybe [AssetTypeProperty]
clientId :: ManagedLoginBranding -> Maybe (Value Text)
returnMergedResources :: ManagedLoginBranding -> Maybe (Value Bool)
settings :: ManagedLoginBranding -> Maybe Object
useCognitoProvidedValues :: ManagedLoginBranding -> Maybe (Value Bool)
userPoolId :: ManagedLoginBranding -> Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
= ManagedLoginBranding {clientId :: Maybe (Value Text)
clientId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ClientId" ManagedLoginBranding
Value Text
newValue, Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
()
Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
instance Property "ReturnMergedResources" ManagedLoginBranding where
type PropertyType "ReturnMergedResources" ManagedLoginBranding = Value Prelude.Bool
set :: PropertyType "ReturnMergedResources" ManagedLoginBranding
-> ManagedLoginBranding -> ManagedLoginBranding
set PropertyType "ReturnMergedResources" ManagedLoginBranding
newValue ManagedLoginBranding {Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ManagedLoginBranding -> ()
assets :: ManagedLoginBranding -> Maybe [AssetTypeProperty]
clientId :: ManagedLoginBranding -> Maybe (Value Text)
returnMergedResources :: ManagedLoginBranding -> Maybe (Value Bool)
settings :: ManagedLoginBranding -> Maybe Object
useCognitoProvidedValues :: ManagedLoginBranding -> Maybe (Value Bool)
userPoolId :: ManagedLoginBranding -> Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
= ManagedLoginBranding
{returnMergedResources :: Maybe (Value Bool)
returnMergedResources = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ReturnMergedResources" ManagedLoginBranding
Value Bool
newValue, Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
instance Property "Settings" ManagedLoginBranding where
type PropertyType "Settings" ManagedLoginBranding = JSON.Object
set :: PropertyType "Settings" ManagedLoginBranding
-> ManagedLoginBranding -> ManagedLoginBranding
set PropertyType "Settings" ManagedLoginBranding
newValue ManagedLoginBranding {Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ManagedLoginBranding -> ()
assets :: ManagedLoginBranding -> Maybe [AssetTypeProperty]
clientId :: ManagedLoginBranding -> Maybe (Value Text)
returnMergedResources :: ManagedLoginBranding -> Maybe (Value Bool)
settings :: ManagedLoginBranding -> Maybe Object
useCognitoProvidedValues :: ManagedLoginBranding -> Maybe (Value Bool)
userPoolId :: ManagedLoginBranding -> Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
= ManagedLoginBranding {settings :: Maybe Object
settings = Object -> Maybe Object
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Object
PropertyType "Settings" ManagedLoginBranding
newValue, Maybe [AssetTypeProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
instance Property "UseCognitoProvidedValues" ManagedLoginBranding where
type PropertyType "UseCognitoProvidedValues" ManagedLoginBranding = Value Prelude.Bool
set :: PropertyType "UseCognitoProvidedValues" ManagedLoginBranding
-> ManagedLoginBranding -> ManagedLoginBranding
set PropertyType "UseCognitoProvidedValues" ManagedLoginBranding
newValue ManagedLoginBranding {Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ManagedLoginBranding -> ()
assets :: ManagedLoginBranding -> Maybe [AssetTypeProperty]
clientId :: ManagedLoginBranding -> Maybe (Value Text)
returnMergedResources :: ManagedLoginBranding -> Maybe (Value Bool)
settings :: ManagedLoginBranding -> Maybe Object
useCognitoProvidedValues :: ManagedLoginBranding -> Maybe (Value Bool)
userPoolId :: ManagedLoginBranding -> Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
= ManagedLoginBranding
{useCognitoProvidedValues :: Maybe (Value Bool)
useCognitoProvidedValues = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UseCognitoProvidedValues" ManagedLoginBranding
Value Bool
newValue, Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
userPoolId :: Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
userPoolId :: Value Text
..}
instance Property "UserPoolId" ManagedLoginBranding where
type PropertyType "UserPoolId" ManagedLoginBranding = Value Prelude.Text
set :: PropertyType "UserPoolId" ManagedLoginBranding
-> ManagedLoginBranding -> ManagedLoginBranding
set PropertyType "UserPoolId" ManagedLoginBranding
newValue ManagedLoginBranding {Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ManagedLoginBranding -> ()
assets :: ManagedLoginBranding -> Maybe [AssetTypeProperty]
clientId :: ManagedLoginBranding -> Maybe (Value Text)
returnMergedResources :: ManagedLoginBranding -> Maybe (Value Bool)
settings :: ManagedLoginBranding -> Maybe Object
useCognitoProvidedValues :: ManagedLoginBranding -> Maybe (Value Bool)
userPoolId :: ManagedLoginBranding -> Value Text
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
userPoolId :: Value Text
..}
= ManagedLoginBranding {userPoolId :: Value Text
userPoolId = PropertyType "UserPoolId" ManagedLoginBranding
Value Text
newValue, Maybe [AssetTypeProperty]
Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
haddock_workaround_ :: ()
assets :: Maybe [AssetTypeProperty]
clientId :: Maybe (Value Text)
returnMergedResources :: Maybe (Value Bool)
settings :: Maybe Object
useCognitoProvidedValues :: Maybe (Value Bool)
..}