module Stratosphere.FraudDetector.EventType.EntityTypeProperty (
        EntityTypeProperty(..), mkEntityTypeProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data EntityTypeProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html>
    EntityTypeProperty {EntityTypeProperty -> ()
haddock_workaround_ :: (),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-arn>
                        EntityTypeProperty -> Maybe (Value Text)
arn :: (Prelude.Maybe (Value Prelude.Text)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-createdtime>
                        EntityTypeProperty -> Maybe (Value Text)
createdTime :: (Prelude.Maybe (Value Prelude.Text)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-description>
                        EntityTypeProperty -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-inline>
                        EntityTypeProperty -> Maybe (Value Bool)
inline :: (Prelude.Maybe (Value Prelude.Bool)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-lastupdatedtime>
                        EntityTypeProperty -> Maybe (Value Text)
lastUpdatedTime :: (Prelude.Maybe (Value Prelude.Text)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-name>
                        EntityTypeProperty -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
                        -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-tags>
                        EntityTypeProperty -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
  deriving stock (EntityTypeProperty -> EntityTypeProperty -> Bool
(EntityTypeProperty -> EntityTypeProperty -> Bool)
-> (EntityTypeProperty -> EntityTypeProperty -> Bool)
-> Eq EntityTypeProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: EntityTypeProperty -> EntityTypeProperty -> Bool
== :: EntityTypeProperty -> EntityTypeProperty -> Bool
$c/= :: EntityTypeProperty -> EntityTypeProperty -> Bool
/= :: EntityTypeProperty -> EntityTypeProperty -> Bool
Prelude.Eq, Int -> EntityTypeProperty -> ShowS
[EntityTypeProperty] -> ShowS
EntityTypeProperty -> String
(Int -> EntityTypeProperty -> ShowS)
-> (EntityTypeProperty -> String)
-> ([EntityTypeProperty] -> ShowS)
-> Show EntityTypeProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> EntityTypeProperty -> ShowS
showsPrec :: Int -> EntityTypeProperty -> ShowS
$cshow :: EntityTypeProperty -> String
show :: EntityTypeProperty -> String
$cshowList :: [EntityTypeProperty] -> ShowS
showList :: [EntityTypeProperty] -> ShowS
Prelude.Show)
mkEntityTypeProperty :: EntityTypeProperty
mkEntityTypeProperty :: EntityTypeProperty
mkEntityTypeProperty
  = EntityTypeProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), arn :: Maybe (Value Text)
arn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       createdTime :: Maybe (Value Text)
createdTime = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       inline :: Maybe (Value Bool)
inline = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing, lastUpdatedTime :: Maybe (Value Text)
lastUpdatedTime = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties EntityTypeProperty where
  toResourceProperties :: EntityTypeProperty -> ResourceProperties
toResourceProperties EntityTypeProperty {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: EntityTypeProperty -> ()
arn :: EntityTypeProperty -> Maybe (Value Text)
createdTime :: EntityTypeProperty -> Maybe (Value Text)
description :: EntityTypeProperty -> Maybe (Value Text)
inline :: EntityTypeProperty -> Maybe (Value Bool)
lastUpdatedTime :: EntityTypeProperty -> Maybe (Value Text)
name :: EntityTypeProperty -> Maybe (Value Text)
tags :: EntityTypeProperty -> Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::FraudDetector::EventType.EntityType",
         supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         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
"Arn" (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)
arn,
                            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
"CreatedTime" (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)
createdTime,
                            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 -> 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
"Inline" (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)
inline,
                            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
"LastUpdatedTime" (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)
lastUpdatedTime,
                            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
"Name" (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)
name,
                            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 EntityTypeProperty where
  toJSON :: EntityTypeProperty -> Value
toJSON EntityTypeProperty {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: EntityTypeProperty -> ()
arn :: EntityTypeProperty -> Maybe (Value Text)
createdTime :: EntityTypeProperty -> Maybe (Value Text)
description :: EntityTypeProperty -> Maybe (Value Text)
inline :: EntityTypeProperty -> Maybe (Value Bool)
lastUpdatedTime :: EntityTypeProperty -> Maybe (Value Text)
name :: EntityTypeProperty -> Maybe (Value Text)
tags :: EntityTypeProperty -> Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = [(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
"Arn" (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)
arn,
               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
"CreatedTime" (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)
createdTime,
               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 -> 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
"Inline" (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)
inline,
               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
"LastUpdatedTime" (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)
lastUpdatedTime,
               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
"Name" (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)
name,
               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 "Arn" EntityTypeProperty where
  type PropertyType "Arn" EntityTypeProperty = Value Prelude.Text
  set :: PropertyType "Arn" EntityTypeProperty
-> EntityTypeProperty -> EntityTypeProperty
set PropertyType "Arn" EntityTypeProperty
newValue EntityTypeProperty {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: EntityTypeProperty -> ()
arn :: EntityTypeProperty -> Maybe (Value Text)
createdTime :: EntityTypeProperty -> Maybe (Value Text)
description :: EntityTypeProperty -> Maybe (Value Text)
inline :: EntityTypeProperty -> Maybe (Value Bool)
lastUpdatedTime :: EntityTypeProperty -> Maybe (Value Text)
name :: EntityTypeProperty -> Maybe (Value Text)
tags :: EntityTypeProperty -> Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = EntityTypeProperty {arn :: Maybe (Value Text)
arn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Arn" EntityTypeProperty
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "CreatedTime" EntityTypeProperty where
  type PropertyType "CreatedTime" EntityTypeProperty = Value Prelude.Text
  set :: PropertyType "CreatedTime" EntityTypeProperty
-> EntityTypeProperty -> EntityTypeProperty
set PropertyType "CreatedTime" EntityTypeProperty
newValue EntityTypeProperty {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: EntityTypeProperty -> ()
arn :: EntityTypeProperty -> Maybe (Value Text)
createdTime :: EntityTypeProperty -> Maybe (Value Text)
description :: EntityTypeProperty -> Maybe (Value Text)
inline :: EntityTypeProperty -> Maybe (Value Bool)
lastUpdatedTime :: EntityTypeProperty -> Maybe (Value Text)
name :: EntityTypeProperty -> Maybe (Value Text)
tags :: EntityTypeProperty -> Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = EntityTypeProperty {createdTime :: Maybe (Value Text)
createdTime = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CreatedTime" EntityTypeProperty
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Description" EntityTypeProperty where
  type PropertyType "Description" EntityTypeProperty = Value Prelude.Text
  set :: PropertyType "Description" EntityTypeProperty
-> EntityTypeProperty -> EntityTypeProperty
set PropertyType "Description" EntityTypeProperty
newValue EntityTypeProperty {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: EntityTypeProperty -> ()
arn :: EntityTypeProperty -> Maybe (Value Text)
createdTime :: EntityTypeProperty -> Maybe (Value Text)
description :: EntityTypeProperty -> Maybe (Value Text)
inline :: EntityTypeProperty -> Maybe (Value Bool)
lastUpdatedTime :: EntityTypeProperty -> Maybe (Value Text)
name :: EntityTypeProperty -> Maybe (Value Text)
tags :: EntityTypeProperty -> Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = EntityTypeProperty {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" EntityTypeProperty
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Inline" EntityTypeProperty where
  type PropertyType "Inline" EntityTypeProperty = Value Prelude.Bool
  set :: PropertyType "Inline" EntityTypeProperty
-> EntityTypeProperty -> EntityTypeProperty
set PropertyType "Inline" EntityTypeProperty
newValue EntityTypeProperty {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: EntityTypeProperty -> ()
arn :: EntityTypeProperty -> Maybe (Value Text)
createdTime :: EntityTypeProperty -> Maybe (Value Text)
description :: EntityTypeProperty -> Maybe (Value Text)
inline :: EntityTypeProperty -> Maybe (Value Bool)
lastUpdatedTime :: EntityTypeProperty -> Maybe (Value Text)
name :: EntityTypeProperty -> Maybe (Value Text)
tags :: EntityTypeProperty -> Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = EntityTypeProperty {inline :: Maybe (Value Bool)
inline = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Inline" EntityTypeProperty
Value Bool
newValue, Maybe [Tag]
Maybe (Value Text)
()
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "LastUpdatedTime" EntityTypeProperty where
  type PropertyType "LastUpdatedTime" EntityTypeProperty = Value Prelude.Text
  set :: PropertyType "LastUpdatedTime" EntityTypeProperty
-> EntityTypeProperty -> EntityTypeProperty
set PropertyType "LastUpdatedTime" EntityTypeProperty
newValue EntityTypeProperty {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: EntityTypeProperty -> ()
arn :: EntityTypeProperty -> Maybe (Value Text)
createdTime :: EntityTypeProperty -> Maybe (Value Text)
description :: EntityTypeProperty -> Maybe (Value Text)
inline :: EntityTypeProperty -> Maybe (Value Bool)
lastUpdatedTime :: EntityTypeProperty -> Maybe (Value Text)
name :: EntityTypeProperty -> Maybe (Value Text)
tags :: EntityTypeProperty -> Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = EntityTypeProperty {lastUpdatedTime :: Maybe (Value Text)
lastUpdatedTime = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "LastUpdatedTime" EntityTypeProperty
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Name" EntityTypeProperty where
  type PropertyType "Name" EntityTypeProperty = Value Prelude.Text
  set :: PropertyType "Name" EntityTypeProperty
-> EntityTypeProperty -> EntityTypeProperty
set PropertyType "Name" EntityTypeProperty
newValue EntityTypeProperty {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: EntityTypeProperty -> ()
arn :: EntityTypeProperty -> Maybe (Value Text)
createdTime :: EntityTypeProperty -> Maybe (Value Text)
description :: EntityTypeProperty -> Maybe (Value Text)
inline :: EntityTypeProperty -> Maybe (Value Bool)
lastUpdatedTime :: EntityTypeProperty -> Maybe (Value Text)
name :: EntityTypeProperty -> Maybe (Value Text)
tags :: EntityTypeProperty -> Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = EntityTypeProperty {name :: Maybe (Value Text)
name = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Name" EntityTypeProperty
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Tags" EntityTypeProperty where
  type PropertyType "Tags" EntityTypeProperty = [Tag]
  set :: PropertyType "Tags" EntityTypeProperty
-> EntityTypeProperty -> EntityTypeProperty
set PropertyType "Tags" EntityTypeProperty
newValue EntityTypeProperty {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: EntityTypeProperty -> ()
arn :: EntityTypeProperty -> Maybe (Value Text)
createdTime :: EntityTypeProperty -> Maybe (Value Text)
description :: EntityTypeProperty -> Maybe (Value Text)
inline :: EntityTypeProperty -> Maybe (Value Bool)
lastUpdatedTime :: EntityTypeProperty -> Maybe (Value Text)
name :: EntityTypeProperty -> Maybe (Value Text)
tags :: EntityTypeProperty -> Maybe [Tag]
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
    = EntityTypeProperty {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" EntityTypeProperty
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
haddock_workaround_ :: ()
arn :: Maybe (Value Text)
createdTime :: Maybe (Value Text)
description :: Maybe (Value Text)
inline :: Maybe (Value Bool)
lastUpdatedTime :: Maybe (Value Text)
name :: Maybe (Value Text)
..}