module Stratosphere.AmplifyUIBuilder.Component.ComponentBindingPropertiesValuePropertiesProperty (
module Exports,
ComponentBindingPropertiesValuePropertiesProperty(..),
mkComponentBindingPropertiesValuePropertiesProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.AmplifyUIBuilder.Component.PredicateProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ComponentBindingPropertiesValuePropertiesProperty
=
ComponentBindingPropertiesValuePropertiesProperty {ComponentBindingPropertiesValuePropertiesProperty -> ()
haddock_workaround_ :: (),
ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
bucket :: (Prelude.Maybe (Value Prelude.Text)),
ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: (Prelude.Maybe (Value Prelude.Text)),
ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: (Prelude.Maybe (Value Prelude.Text)),
ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: (Prelude.Maybe (Value Prelude.Text)),
ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: (Prelude.Maybe (Value Prelude.Text)),
ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
predicates :: (Prelude.Maybe [PredicateProperty]),
ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
slotName :: (Prelude.Maybe (Value Prelude.Text)),
ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty -> Bool
(ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty -> Bool)
-> (ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty -> Bool)
-> Eq ComponentBindingPropertiesValuePropertiesProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty -> Bool
== :: ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty -> Bool
$c/= :: ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty -> Bool
/= :: ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty -> Bool
Prelude.Eq, Int -> ComponentBindingPropertiesValuePropertiesProperty -> ShowS
[ComponentBindingPropertiesValuePropertiesProperty] -> ShowS
ComponentBindingPropertiesValuePropertiesProperty -> String
(Int -> ComponentBindingPropertiesValuePropertiesProperty -> ShowS)
-> (ComponentBindingPropertiesValuePropertiesProperty -> String)
-> ([ComponentBindingPropertiesValuePropertiesProperty] -> ShowS)
-> Show ComponentBindingPropertiesValuePropertiesProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ComponentBindingPropertiesValuePropertiesProperty -> ShowS
showsPrec :: Int -> ComponentBindingPropertiesValuePropertiesProperty -> ShowS
$cshow :: ComponentBindingPropertiesValuePropertiesProperty -> String
show :: ComponentBindingPropertiesValuePropertiesProperty -> String
$cshowList :: [ComponentBindingPropertiesValuePropertiesProperty] -> ShowS
showList :: [ComponentBindingPropertiesValuePropertiesProperty] -> ShowS
Prelude.Show)
mkComponentBindingPropertiesValuePropertiesProperty ::
ComponentBindingPropertiesValuePropertiesProperty
mkComponentBindingPropertiesValuePropertiesProperty :: ComponentBindingPropertiesValuePropertiesProperty
mkComponentBindingPropertiesValuePropertiesProperty
= ComponentBindingPropertiesValuePropertiesProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), bucket :: Maybe (Value Text)
bucket = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
defaultValue :: Maybe (Value Text)
defaultValue = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, field :: Maybe (Value Text)
field = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
key :: Maybe (Value Text)
key = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, model :: Maybe (Value Text)
model = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
predicates :: Maybe [PredicateProperty]
predicates = Maybe [PredicateProperty]
forall a. Maybe a
Prelude.Nothing, slotName :: Maybe (Value Text)
slotName = 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 ComponentBindingPropertiesValuePropertiesProperty where
toResourceProperties :: ComponentBindingPropertiesValuePropertiesProperty
-> ResourceProperties
toResourceProperties
ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::AmplifyUIBuilder::Component.ComponentBindingPropertiesValueProperties",
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
"Bucket" (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)
bucket,
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
"DefaultValue" (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)
defaultValue,
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
"Field" (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)
field,
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
"Key" (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)
key,
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
"Model" (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)
model,
Key -> [PredicateProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Predicates" ([PredicateProperty] -> (Key, Value))
-> Maybe [PredicateProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [PredicateProperty]
predicates,
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
"SlotName" (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)
slotName,
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 ComponentBindingPropertiesValuePropertiesProperty where
toJSON :: ComponentBindingPropertiesValuePropertiesProperty -> Value
toJSON ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (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
([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
"Bucket" (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)
bucket,
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
"DefaultValue" (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)
defaultValue,
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
"Field" (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)
field,
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
"Key" (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)
key,
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
"Model" (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)
model,
Key -> [PredicateProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Predicates" ([PredicateProperty] -> (Key, Value))
-> Maybe [PredicateProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [PredicateProperty]
predicates,
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
"SlotName" (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)
slotName,
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 "Bucket" ComponentBindingPropertiesValuePropertiesProperty where
type PropertyType "Bucket" ComponentBindingPropertiesValuePropertiesProperty = Value Prelude.Text
set :: PropertyType
"Bucket" ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
set PropertyType
"Bucket" ComponentBindingPropertiesValuePropertiesProperty
newValue ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
= ComponentBindingPropertiesValuePropertiesProperty
{bucket :: Maybe (Value Text)
bucket = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"Bucket" ComponentBindingPropertiesValuePropertiesProperty
Value Text
newValue, Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
instance Property "DefaultValue" ComponentBindingPropertiesValuePropertiesProperty where
type PropertyType "DefaultValue" ComponentBindingPropertiesValuePropertiesProperty = Value Prelude.Text
set :: PropertyType
"DefaultValue" ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
set PropertyType
"DefaultValue" ComponentBindingPropertiesValuePropertiesProperty
newValue ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
= ComponentBindingPropertiesValuePropertiesProperty
{defaultValue :: Maybe (Value Text)
defaultValue = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"DefaultValue" ComponentBindingPropertiesValuePropertiesProperty
Value Text
newValue, Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
instance Property "Field" ComponentBindingPropertiesValuePropertiesProperty where
type PropertyType "Field" ComponentBindingPropertiesValuePropertiesProperty = Value Prelude.Text
set :: PropertyType
"Field" ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
set PropertyType
"Field" ComponentBindingPropertiesValuePropertiesProperty
newValue ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
= ComponentBindingPropertiesValuePropertiesProperty
{field :: Maybe (Value Text)
field = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"Field" ComponentBindingPropertiesValuePropertiesProperty
Value Text
newValue, Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
instance Property "Key" ComponentBindingPropertiesValuePropertiesProperty where
type PropertyType "Key" ComponentBindingPropertiesValuePropertiesProperty = Value Prelude.Text
set :: PropertyType
"Key" ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
set PropertyType
"Key" ComponentBindingPropertiesValuePropertiesProperty
newValue ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
= ComponentBindingPropertiesValuePropertiesProperty
{key :: Maybe (Value Text)
key = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"Key" ComponentBindingPropertiesValuePropertiesProperty
Value Text
newValue, Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
instance Property "Model" ComponentBindingPropertiesValuePropertiesProperty where
type PropertyType "Model" ComponentBindingPropertiesValuePropertiesProperty = Value Prelude.Text
set :: PropertyType
"Model" ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
set PropertyType
"Model" ComponentBindingPropertiesValuePropertiesProperty
newValue ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
= ComponentBindingPropertiesValuePropertiesProperty
{model :: Maybe (Value Text)
model = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"Model" ComponentBindingPropertiesValuePropertiesProperty
Value Text
newValue, Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
instance Property "Predicates" ComponentBindingPropertiesValuePropertiesProperty where
type PropertyType "Predicates" ComponentBindingPropertiesValuePropertiesProperty = [PredicateProperty]
set :: PropertyType
"Predicates" ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
set PropertyType
"Predicates" ComponentBindingPropertiesValuePropertiesProperty
newValue ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
= ComponentBindingPropertiesValuePropertiesProperty
{predicates :: Maybe [PredicateProperty]
predicates = [PredicateProperty] -> Maybe [PredicateProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [PredicateProperty]
PropertyType
"Predicates" ComponentBindingPropertiesValuePropertiesProperty
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
instance Property "SlotName" ComponentBindingPropertiesValuePropertiesProperty where
type PropertyType "SlotName" ComponentBindingPropertiesValuePropertiesProperty = Value Prelude.Text
set :: PropertyType
"SlotName" ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
set PropertyType
"SlotName" ComponentBindingPropertiesValuePropertiesProperty
newValue ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
= ComponentBindingPropertiesValuePropertiesProperty
{slotName :: Maybe (Value Text)
slotName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"SlotName" ComponentBindingPropertiesValuePropertiesProperty
Value Text
newValue, Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
userAttribute :: Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
userAttribute :: Maybe (Value Text)
..}
instance Property "UserAttribute" ComponentBindingPropertiesValuePropertiesProperty where
type PropertyType "UserAttribute" ComponentBindingPropertiesValuePropertiesProperty = Value Prelude.Text
set :: PropertyType
"UserAttribute" ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
-> ComponentBindingPropertiesValuePropertiesProperty
set PropertyType
"UserAttribute" ComponentBindingPropertiesValuePropertiesProperty
newValue ComponentBindingPropertiesValuePropertiesProperty {Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ComponentBindingPropertiesValuePropertiesProperty -> ()
bucket :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
defaultValue :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
field :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
key :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
model :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
predicates :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe [PredicateProperty]
slotName :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
userAttribute :: ComponentBindingPropertiesValuePropertiesProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
userAttribute :: Maybe (Value Text)
..}
= ComponentBindingPropertiesValuePropertiesProperty
{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" ComponentBindingPropertiesValuePropertiesProperty
Value Text
newValue, Maybe [PredicateProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
haddock_workaround_ :: ()
bucket :: Maybe (Value Text)
defaultValue :: Maybe (Value Text)
field :: Maybe (Value Text)
key :: Maybe (Value Text)
model :: Maybe (Value Text)
predicates :: Maybe [PredicateProperty]
slotName :: Maybe (Value Text)
..}