module Stratosphere.OpenSearchServerless.SecurityConfig.IamIdentityCenterConfigOptionsProperty (
IamIdentityCenterConfigOptionsProperty(..),
mkIamIdentityCenterConfigOptionsProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data IamIdentityCenterConfigOptionsProperty
=
IamIdentityCenterConfigOptionsProperty {IamIdentityCenterConfigOptionsProperty -> ()
haddock_workaround_ :: (),
IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationArn :: (Prelude.Maybe (Value Prelude.Text)),
IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationDescription :: (Prelude.Maybe (Value Prelude.Text)),
IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationName :: (Prelude.Maybe (Value Prelude.Text)),
IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
groupAttribute :: (Prelude.Maybe (Value Prelude.Text)),
IamIdentityCenterConfigOptionsProperty -> Value Text
instanceArn :: (Value Prelude.Text),
IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
userAttribute :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty -> Bool
(IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty -> Bool)
-> (IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty -> Bool)
-> Eq IamIdentityCenterConfigOptionsProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty -> Bool
== :: IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty -> Bool
$c/= :: IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty -> Bool
/= :: IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty -> Bool
Prelude.Eq, Int -> IamIdentityCenterConfigOptionsProperty -> ShowS
[IamIdentityCenterConfigOptionsProperty] -> ShowS
IamIdentityCenterConfigOptionsProperty -> String
(Int -> IamIdentityCenterConfigOptionsProperty -> ShowS)
-> (IamIdentityCenterConfigOptionsProperty -> String)
-> ([IamIdentityCenterConfigOptionsProperty] -> ShowS)
-> Show IamIdentityCenterConfigOptionsProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> IamIdentityCenterConfigOptionsProperty -> ShowS
showsPrec :: Int -> IamIdentityCenterConfigOptionsProperty -> ShowS
$cshow :: IamIdentityCenterConfigOptionsProperty -> String
show :: IamIdentityCenterConfigOptionsProperty -> String
$cshowList :: [IamIdentityCenterConfigOptionsProperty] -> ShowS
showList :: [IamIdentityCenterConfigOptionsProperty] -> ShowS
Prelude.Show)
mkIamIdentityCenterConfigOptionsProperty ::
Value Prelude.Text -> IamIdentityCenterConfigOptionsProperty
mkIamIdentityCenterConfigOptionsProperty :: Value Text -> IamIdentityCenterConfigOptionsProperty
mkIamIdentityCenterConfigOptionsProperty Value Text
instanceArn
= IamIdentityCenterConfigOptionsProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), instanceArn :: Value Text
instanceArn = Value Text
instanceArn,
applicationArn :: Maybe (Value Text)
applicationArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
applicationDescription :: Maybe (Value Text)
applicationDescription = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
applicationName :: Maybe (Value Text)
applicationName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
groupAttribute :: Maybe (Value Text)
groupAttribute = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, userAttribute :: Maybe (Value Text)
userAttribute = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties IamIdentityCenterConfigOptionsProperty where
toResourceProperties :: IamIdentityCenterConfigOptionsProperty -> ResourceProperties
toResourceProperties IamIdentityCenterConfigOptionsProperty {Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IamIdentityCenterConfigOptionsProperty -> ()
applicationArn :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationDescription :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationName :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
groupAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
instanceArn :: IamIdentityCenterConfigOptionsProperty -> Value Text
userAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::OpenSearchServerless::SecurityConfig.IamIdentityCenterConfigOptions",
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
"InstanceArn" 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
instanceArn]
([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
"ApplicationArn" (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)
applicationArn,
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
"ApplicationDescription"
(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)
applicationDescription,
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
"ApplicationName" (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)
applicationName,
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
"GroupAttribute" (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)
groupAttribute,
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
"UserAttribute" (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)
userAttribute]))}
instance JSON.ToJSON IamIdentityCenterConfigOptionsProperty where
toJSON :: IamIdentityCenterConfigOptionsProperty -> Value
toJSON IamIdentityCenterConfigOptionsProperty {Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IamIdentityCenterConfigOptionsProperty -> ()
applicationArn :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationDescription :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationName :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
groupAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
instanceArn :: IamIdentityCenterConfigOptionsProperty -> Value Text
userAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (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
"InstanceArn" 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
instanceArn]
([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
"ApplicationArn" (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)
applicationArn,
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
"ApplicationDescription"
(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)
applicationDescription,
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
"ApplicationName" (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)
applicationName,
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
"GroupAttribute" (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)
groupAttribute,
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
"UserAttribute" (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)
userAttribute])))
instance Property "ApplicationArn" IamIdentityCenterConfigOptionsProperty where
type PropertyType "ApplicationArn" IamIdentityCenterConfigOptionsProperty = Value Prelude.Text
set :: PropertyType
"ApplicationArn" IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
set PropertyType
"ApplicationArn" IamIdentityCenterConfigOptionsProperty
newValue IamIdentityCenterConfigOptionsProperty {Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IamIdentityCenterConfigOptionsProperty -> ()
applicationArn :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationDescription :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationName :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
groupAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
instanceArn :: IamIdentityCenterConfigOptionsProperty -> Value Text
userAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
= IamIdentityCenterConfigOptionsProperty
{applicationArn :: Maybe (Value Text)
applicationArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"ApplicationArn" IamIdentityCenterConfigOptionsProperty
Value Text
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
instance Property "ApplicationDescription" IamIdentityCenterConfigOptionsProperty where
type PropertyType "ApplicationDescription" IamIdentityCenterConfigOptionsProperty = Value Prelude.Text
set :: PropertyType
"ApplicationDescription" IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
set PropertyType
"ApplicationDescription" IamIdentityCenterConfigOptionsProperty
newValue IamIdentityCenterConfigOptionsProperty {Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IamIdentityCenterConfigOptionsProperty -> ()
applicationArn :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationDescription :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationName :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
groupAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
instanceArn :: IamIdentityCenterConfigOptionsProperty -> Value Text
userAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
= IamIdentityCenterConfigOptionsProperty
{applicationDescription :: Maybe (Value Text)
applicationDescription = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"ApplicationDescription" IamIdentityCenterConfigOptionsProperty
Value Text
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
instance Property "ApplicationName" IamIdentityCenterConfigOptionsProperty where
type PropertyType "ApplicationName" IamIdentityCenterConfigOptionsProperty = Value Prelude.Text
set :: PropertyType
"ApplicationName" IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
set PropertyType
"ApplicationName" IamIdentityCenterConfigOptionsProperty
newValue IamIdentityCenterConfigOptionsProperty {Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IamIdentityCenterConfigOptionsProperty -> ()
applicationArn :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationDescription :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationName :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
groupAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
instanceArn :: IamIdentityCenterConfigOptionsProperty -> Value Text
userAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
= IamIdentityCenterConfigOptionsProperty
{applicationName :: Maybe (Value Text)
applicationName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"ApplicationName" IamIdentityCenterConfigOptionsProperty
Value Text
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
instance Property "GroupAttribute" IamIdentityCenterConfigOptionsProperty where
type PropertyType "GroupAttribute" IamIdentityCenterConfigOptionsProperty = Value Prelude.Text
set :: PropertyType
"GroupAttribute" IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
set PropertyType
"GroupAttribute" IamIdentityCenterConfigOptionsProperty
newValue IamIdentityCenterConfigOptionsProperty {Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IamIdentityCenterConfigOptionsProperty -> ()
applicationArn :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationDescription :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationName :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
groupAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
instanceArn :: IamIdentityCenterConfigOptionsProperty -> Value Text
userAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
= IamIdentityCenterConfigOptionsProperty
{groupAttribute :: Maybe (Value Text)
groupAttribute = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"GroupAttribute" IamIdentityCenterConfigOptionsProperty
Value Text
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
instance Property "InstanceArn" IamIdentityCenterConfigOptionsProperty where
type PropertyType "InstanceArn" IamIdentityCenterConfigOptionsProperty = Value Prelude.Text
set :: PropertyType "InstanceArn" IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
set PropertyType "InstanceArn" IamIdentityCenterConfigOptionsProperty
newValue IamIdentityCenterConfigOptionsProperty {Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IamIdentityCenterConfigOptionsProperty -> ()
applicationArn :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationDescription :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationName :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
groupAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
instanceArn :: IamIdentityCenterConfigOptionsProperty -> Value Text
userAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
= IamIdentityCenterConfigOptionsProperty
{instanceArn :: Value Text
instanceArn = PropertyType "InstanceArn" IamIdentityCenterConfigOptionsProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
instance Property "UserAttribute" IamIdentityCenterConfigOptionsProperty where
type PropertyType "UserAttribute" IamIdentityCenterConfigOptionsProperty = Value Prelude.Text
set :: PropertyType "UserAttribute" IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
-> IamIdentityCenterConfigOptionsProperty
set PropertyType "UserAttribute" IamIdentityCenterConfigOptionsProperty
newValue IamIdentityCenterConfigOptionsProperty {Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IamIdentityCenterConfigOptionsProperty -> ()
applicationArn :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationDescription :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
applicationName :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
groupAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
instanceArn :: IamIdentityCenterConfigOptionsProperty -> Value Text
userAttribute :: IamIdentityCenterConfigOptionsProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
userAttribute :: Maybe (Value Text)
..}
= IamIdentityCenterConfigOptionsProperty
{userAttribute :: Maybe (Value Text)
userAttribute = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UserAttribute" IamIdentityCenterConfigOptionsProperty
Value Text
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
haddock_workaround_ :: ()
applicationArn :: Maybe (Value Text)
applicationDescription :: Maybe (Value Text)
applicationName :: Maybe (Value Text)
groupAttribute :: Maybe (Value Text)
instanceArn :: Value Text
..}