module Stratosphere.CleanRooms.IdNamespaceAssociation (
module Exports, IdNamespaceAssociation(..),
mkIdNamespaceAssociation
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.CleanRooms.IdNamespaceAssociation.IdMappingConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.CleanRooms.IdNamespaceAssociation.IdNamespaceAssociationInputReferenceConfigProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data IdNamespaceAssociation
=
IdNamespaceAssociation {IdNamespaceAssociation -> ()
haddock_workaround_ :: (),
IdNamespaceAssociation -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
IdNamespaceAssociation -> Maybe IdMappingConfigProperty
idMappingConfig :: (Prelude.Maybe IdMappingConfigProperty),
IdNamespaceAssociation
-> IdNamespaceAssociationInputReferenceConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty,
IdNamespaceAssociation -> Value Text
membershipIdentifier :: (Value Prelude.Text),
IdNamespaceAssociation -> Value Text
name :: (Value Prelude.Text),
IdNamespaceAssociation -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (IdNamespaceAssociation -> IdNamespaceAssociation -> Bool
(IdNamespaceAssociation -> IdNamespaceAssociation -> Bool)
-> (IdNamespaceAssociation -> IdNamespaceAssociation -> Bool)
-> Eq IdNamespaceAssociation
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: IdNamespaceAssociation -> IdNamespaceAssociation -> Bool
== :: IdNamespaceAssociation -> IdNamespaceAssociation -> Bool
$c/= :: IdNamespaceAssociation -> IdNamespaceAssociation -> Bool
/= :: IdNamespaceAssociation -> IdNamespaceAssociation -> Bool
Prelude.Eq, Int -> IdNamespaceAssociation -> ShowS
[IdNamespaceAssociation] -> ShowS
IdNamespaceAssociation -> String
(Int -> IdNamespaceAssociation -> ShowS)
-> (IdNamespaceAssociation -> String)
-> ([IdNamespaceAssociation] -> ShowS)
-> Show IdNamespaceAssociation
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> IdNamespaceAssociation -> ShowS
showsPrec :: Int -> IdNamespaceAssociation -> ShowS
$cshow :: IdNamespaceAssociation -> String
show :: IdNamespaceAssociation -> String
$cshowList :: [IdNamespaceAssociation] -> ShowS
showList :: [IdNamespaceAssociation] -> ShowS
Prelude.Show)
mkIdNamespaceAssociation ::
IdNamespaceAssociationInputReferenceConfigProperty
-> Value Prelude.Text
-> Value Prelude.Text -> IdNamespaceAssociation
mkIdNamespaceAssociation :: IdNamespaceAssociationInputReferenceConfigProperty
-> Value Text -> Value Text -> IdNamespaceAssociation
mkIdNamespaceAssociation
IdNamespaceAssociationInputReferenceConfigProperty
inputReferenceConfig
Value Text
membershipIdentifier
Value Text
name
= IdNamespaceAssociation
{haddock_workaround_ :: ()
haddock_workaround_ = (),
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
inputReferenceConfig = IdNamespaceAssociationInputReferenceConfigProperty
inputReferenceConfig,
membershipIdentifier :: Value Text
membershipIdentifier = Value Text
membershipIdentifier, name :: Value Text
name = Value Text
name,
description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, idMappingConfig :: Maybe IdMappingConfigProperty
idMappingConfig = Maybe IdMappingConfigProperty
forall a. Maybe a
Prelude.Nothing,
tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties IdNamespaceAssociation where
toResourceProperties :: IdNamespaceAssociation -> ResourceProperties
toResourceProperties IdNamespaceAssociation {Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: IdNamespaceAssociation -> ()
description :: IdNamespaceAssociation -> Maybe (Value Text)
idMappingConfig :: IdNamespaceAssociation -> Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociation
-> IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: IdNamespaceAssociation -> Value Text
name :: IdNamespaceAssociation -> Value Text
tags :: IdNamespaceAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::CleanRooms::IdNamespaceAssociation",
supportsTags :: Bool
supportsTags = Bool
Prelude.True,
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
"InputReferenceConfig" Key
-> IdNamespaceAssociationInputReferenceConfigProperty
-> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= IdNamespaceAssociationInputReferenceConfigProperty
inputReferenceConfig,
Key
"MembershipIdentifier" 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
membershipIdentifier,
Key
"Name" 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
name]
([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
"Description" (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)
description,
Key -> IdMappingConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IdMappingConfig" (IdMappingConfigProperty -> (Key, Value))
-> Maybe IdMappingConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IdMappingConfigProperty
idMappingConfig,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON IdNamespaceAssociation where
toJSON :: IdNamespaceAssociation -> Value
toJSON IdNamespaceAssociation {Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: IdNamespaceAssociation -> ()
description :: IdNamespaceAssociation -> Maybe (Value Text)
idMappingConfig :: IdNamespaceAssociation -> Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociation
-> IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: IdNamespaceAssociation -> Value Text
name :: IdNamespaceAssociation -> Value Text
tags :: IdNamespaceAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
= [(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
"InputReferenceConfig" Key
-> IdNamespaceAssociationInputReferenceConfigProperty
-> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= IdNamespaceAssociationInputReferenceConfigProperty
inputReferenceConfig,
Key
"MembershipIdentifier" 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
membershipIdentifier,
Key
"Name" 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
name]
([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
"Description" (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)
description,
Key -> IdMappingConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IdMappingConfig" (IdMappingConfigProperty -> (Key, Value))
-> Maybe IdMappingConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IdMappingConfigProperty
idMappingConfig,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "Description" IdNamespaceAssociation where
type PropertyType "Description" IdNamespaceAssociation = Value Prelude.Text
set :: PropertyType "Description" IdNamespaceAssociation
-> IdNamespaceAssociation -> IdNamespaceAssociation
set PropertyType "Description" IdNamespaceAssociation
newValue IdNamespaceAssociation {Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: IdNamespaceAssociation -> ()
description :: IdNamespaceAssociation -> Maybe (Value Text)
idMappingConfig :: IdNamespaceAssociation -> Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociation
-> IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: IdNamespaceAssociation -> Value Text
name :: IdNamespaceAssociation -> Value Text
tags :: IdNamespaceAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
= IdNamespaceAssociation {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" IdNamespaceAssociation
Value Text
newValue, Maybe [Tag]
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: ()
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "IdMappingConfig" IdNamespaceAssociation where
type PropertyType "IdMappingConfig" IdNamespaceAssociation = IdMappingConfigProperty
set :: PropertyType "IdMappingConfig" IdNamespaceAssociation
-> IdNamespaceAssociation -> IdNamespaceAssociation
set PropertyType "IdMappingConfig" IdNamespaceAssociation
newValue IdNamespaceAssociation {Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: IdNamespaceAssociation -> ()
description :: IdNamespaceAssociation -> Maybe (Value Text)
idMappingConfig :: IdNamespaceAssociation -> Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociation
-> IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: IdNamespaceAssociation -> Value Text
name :: IdNamespaceAssociation -> Value Text
tags :: IdNamespaceAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
= IdNamespaceAssociation
{idMappingConfig :: Maybe IdMappingConfigProperty
idMappingConfig = IdMappingConfigProperty -> Maybe IdMappingConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IdMappingConfig" IdNamespaceAssociation
IdMappingConfigProperty
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "InputReferenceConfig" IdNamespaceAssociation where
type PropertyType "InputReferenceConfig" IdNamespaceAssociation = IdNamespaceAssociationInputReferenceConfigProperty
set :: PropertyType "InputReferenceConfig" IdNamespaceAssociation
-> IdNamespaceAssociation -> IdNamespaceAssociation
set PropertyType "InputReferenceConfig" IdNamespaceAssociation
newValue IdNamespaceAssociation {Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: IdNamespaceAssociation -> ()
description :: IdNamespaceAssociation -> Maybe (Value Text)
idMappingConfig :: IdNamespaceAssociation -> Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociation
-> IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: IdNamespaceAssociation -> Value Text
name :: IdNamespaceAssociation -> Value Text
tags :: IdNamespaceAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
= IdNamespaceAssociation {inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
inputReferenceConfig = PropertyType "InputReferenceConfig" IdNamespaceAssociation
IdNamespaceAssociationInputReferenceConfigProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "MembershipIdentifier" IdNamespaceAssociation where
type PropertyType "MembershipIdentifier" IdNamespaceAssociation = Value Prelude.Text
set :: PropertyType "MembershipIdentifier" IdNamespaceAssociation
-> IdNamespaceAssociation -> IdNamespaceAssociation
set PropertyType "MembershipIdentifier" IdNamespaceAssociation
newValue IdNamespaceAssociation {Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: IdNamespaceAssociation -> ()
description :: IdNamespaceAssociation -> Maybe (Value Text)
idMappingConfig :: IdNamespaceAssociation -> Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociation
-> IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: IdNamespaceAssociation -> Value Text
name :: IdNamespaceAssociation -> Value Text
tags :: IdNamespaceAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
= IdNamespaceAssociation {membershipIdentifier :: Value Text
membershipIdentifier = PropertyType "MembershipIdentifier" IdNamespaceAssociation
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
name :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
name :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Name" IdNamespaceAssociation where
type PropertyType "Name" IdNamespaceAssociation = Value Prelude.Text
set :: PropertyType "Name" IdNamespaceAssociation
-> IdNamespaceAssociation -> IdNamespaceAssociation
set PropertyType "Name" IdNamespaceAssociation
newValue IdNamespaceAssociation {Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: IdNamespaceAssociation -> ()
description :: IdNamespaceAssociation -> Maybe (Value Text)
idMappingConfig :: IdNamespaceAssociation -> Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociation
-> IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: IdNamespaceAssociation -> Value Text
name :: IdNamespaceAssociation -> Value Text
tags :: IdNamespaceAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
= IdNamespaceAssociation {name :: Value Text
name = PropertyType "Name" IdNamespaceAssociation
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Tags" IdNamespaceAssociation where
type PropertyType "Tags" IdNamespaceAssociation = [Tag]
set :: PropertyType "Tags" IdNamespaceAssociation
-> IdNamespaceAssociation -> IdNamespaceAssociation
set PropertyType "Tags" IdNamespaceAssociation
newValue IdNamespaceAssociation {Maybe [Tag]
Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: IdNamespaceAssociation -> ()
description :: IdNamespaceAssociation -> Maybe (Value Text)
idMappingConfig :: IdNamespaceAssociation -> Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociation
-> IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: IdNamespaceAssociation -> Value Text
name :: IdNamespaceAssociation -> Value Text
tags :: IdNamespaceAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
tags :: Maybe [Tag]
..}
= IdNamespaceAssociation {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" IdNamespaceAssociation
newValue, Maybe (Value Text)
Maybe IdMappingConfigProperty
()
Value Text
IdNamespaceAssociationInputReferenceConfigProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
idMappingConfig :: Maybe IdMappingConfigProperty
inputReferenceConfig :: IdNamespaceAssociationInputReferenceConfigProperty
membershipIdentifier :: Value Text
name :: Value Text
..}