module Stratosphere.IoTSiteWise.Asset.AssetPropertyProperty (
        AssetPropertyProperty(..), mkAssetPropertyProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data AssetPropertyProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-asset-assetproperty.html>
    AssetPropertyProperty {AssetPropertyProperty -> ()
haddock_workaround_ :: (),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-asset-assetproperty.html#cfn-iotsitewise-asset-assetproperty-alias>
                           AssetPropertyProperty -> Maybe (Value Text)
alias :: (Prelude.Maybe (Value Prelude.Text)),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-asset-assetproperty.html#cfn-iotsitewise-asset-assetproperty-externalid>
                           AssetPropertyProperty -> Maybe (Value Text)
externalId :: (Prelude.Maybe (Value Prelude.Text)),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-asset-assetproperty.html#cfn-iotsitewise-asset-assetproperty-id>
                           AssetPropertyProperty -> Maybe (Value Text)
id :: (Prelude.Maybe (Value Prelude.Text)),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-asset-assetproperty.html#cfn-iotsitewise-asset-assetproperty-logicalid>
                           AssetPropertyProperty -> Maybe (Value Text)
logicalId :: (Prelude.Maybe (Value Prelude.Text)),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-asset-assetproperty.html#cfn-iotsitewise-asset-assetproperty-notificationstate>
                           AssetPropertyProperty -> Maybe (Value Text)
notificationState :: (Prelude.Maybe (Value Prelude.Text)),
                           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-asset-assetproperty.html#cfn-iotsitewise-asset-assetproperty-unit>
                           AssetPropertyProperty -> Maybe (Value Text)
unit :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (AssetPropertyProperty -> AssetPropertyProperty -> Bool
(AssetPropertyProperty -> AssetPropertyProperty -> Bool)
-> (AssetPropertyProperty -> AssetPropertyProperty -> Bool)
-> Eq AssetPropertyProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: AssetPropertyProperty -> AssetPropertyProperty -> Bool
== :: AssetPropertyProperty -> AssetPropertyProperty -> Bool
$c/= :: AssetPropertyProperty -> AssetPropertyProperty -> Bool
/= :: AssetPropertyProperty -> AssetPropertyProperty -> Bool
Prelude.Eq, Int -> AssetPropertyProperty -> ShowS
[AssetPropertyProperty] -> ShowS
AssetPropertyProperty -> String
(Int -> AssetPropertyProperty -> ShowS)
-> (AssetPropertyProperty -> String)
-> ([AssetPropertyProperty] -> ShowS)
-> Show AssetPropertyProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> AssetPropertyProperty -> ShowS
showsPrec :: Int -> AssetPropertyProperty -> ShowS
$cshow :: AssetPropertyProperty -> String
show :: AssetPropertyProperty -> String
$cshowList :: [AssetPropertyProperty] -> ShowS
showList :: [AssetPropertyProperty] -> ShowS
Prelude.Show)
mkAssetPropertyProperty :: AssetPropertyProperty
mkAssetPropertyProperty :: AssetPropertyProperty
mkAssetPropertyProperty
  = AssetPropertyProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), alias :: Maybe (Value Text)
alias = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       externalId :: Maybe (Value Text)
externalId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, id :: Maybe (Value Text)
id = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       logicalId :: Maybe (Value Text)
logicalId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, notificationState :: Maybe (Value Text)
notificationState = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       unit :: Maybe (Value Text)
unit = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties AssetPropertyProperty where
  toResourceProperties :: AssetPropertyProperty -> ResourceProperties
toResourceProperties AssetPropertyProperty {Maybe (Value Text)
()
haddock_workaround_ :: AssetPropertyProperty -> ()
alias :: AssetPropertyProperty -> Maybe (Value Text)
externalId :: AssetPropertyProperty -> Maybe (Value Text)
id :: AssetPropertyProperty -> Maybe (Value Text)
logicalId :: AssetPropertyProperty -> Maybe (Value Text)
notificationState :: AssetPropertyProperty -> Maybe (Value Text)
unit :: AssetPropertyProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::IoTSiteWise::Asset.AssetProperty",
         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
"Alias" (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)
alias,
                            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
"ExternalId" (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)
externalId,
                            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
"Id" (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)
id,
                            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
"LogicalId" (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)
logicalId,
                            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
"NotificationState" (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)
notificationState,
                            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
"Unit" (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)
unit])}
instance JSON.ToJSON AssetPropertyProperty where
  toJSON :: AssetPropertyProperty -> Value
toJSON AssetPropertyProperty {Maybe (Value Text)
()
haddock_workaround_ :: AssetPropertyProperty -> ()
alias :: AssetPropertyProperty -> Maybe (Value Text)
externalId :: AssetPropertyProperty -> Maybe (Value Text)
id :: AssetPropertyProperty -> Maybe (Value Text)
logicalId :: AssetPropertyProperty -> Maybe (Value Text)
notificationState :: AssetPropertyProperty -> Maybe (Value Text)
unit :: AssetPropertyProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: 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
"Alias" (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)
alias,
               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
"ExternalId" (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)
externalId,
               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
"Id" (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)
id,
               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
"LogicalId" (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)
logicalId,
               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
"NotificationState" (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)
notificationState,
               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
"Unit" (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)
unit]))
instance Property "Alias" AssetPropertyProperty where
  type PropertyType "Alias" AssetPropertyProperty = Value Prelude.Text
  set :: PropertyType "Alias" AssetPropertyProperty
-> AssetPropertyProperty -> AssetPropertyProperty
set PropertyType "Alias" AssetPropertyProperty
newValue AssetPropertyProperty {Maybe (Value Text)
()
haddock_workaround_ :: AssetPropertyProperty -> ()
alias :: AssetPropertyProperty -> Maybe (Value Text)
externalId :: AssetPropertyProperty -> Maybe (Value Text)
id :: AssetPropertyProperty -> Maybe (Value Text)
logicalId :: AssetPropertyProperty -> Maybe (Value Text)
notificationState :: AssetPropertyProperty -> Maybe (Value Text)
unit :: AssetPropertyProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
    = AssetPropertyProperty {alias :: Maybe (Value Text)
alias = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Alias" AssetPropertyProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
instance Property "ExternalId" AssetPropertyProperty where
  type PropertyType "ExternalId" AssetPropertyProperty = Value Prelude.Text
  set :: PropertyType "ExternalId" AssetPropertyProperty
-> AssetPropertyProperty -> AssetPropertyProperty
set PropertyType "ExternalId" AssetPropertyProperty
newValue AssetPropertyProperty {Maybe (Value Text)
()
haddock_workaround_ :: AssetPropertyProperty -> ()
alias :: AssetPropertyProperty -> Maybe (Value Text)
externalId :: AssetPropertyProperty -> Maybe (Value Text)
id :: AssetPropertyProperty -> Maybe (Value Text)
logicalId :: AssetPropertyProperty -> Maybe (Value Text)
notificationState :: AssetPropertyProperty -> Maybe (Value Text)
unit :: AssetPropertyProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
    = AssetPropertyProperty {externalId :: Maybe (Value Text)
externalId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExternalId" AssetPropertyProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
instance Property "Id" AssetPropertyProperty where
  type PropertyType "Id" AssetPropertyProperty = Value Prelude.Text
  set :: PropertyType "Id" AssetPropertyProperty
-> AssetPropertyProperty -> AssetPropertyProperty
set PropertyType "Id" AssetPropertyProperty
newValue AssetPropertyProperty {Maybe (Value Text)
()
haddock_workaround_ :: AssetPropertyProperty -> ()
alias :: AssetPropertyProperty -> Maybe (Value Text)
externalId :: AssetPropertyProperty -> Maybe (Value Text)
id :: AssetPropertyProperty -> Maybe (Value Text)
logicalId :: AssetPropertyProperty -> Maybe (Value Text)
notificationState :: AssetPropertyProperty -> Maybe (Value Text)
unit :: AssetPropertyProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
    = AssetPropertyProperty {id :: Maybe (Value Text)
id = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Id" AssetPropertyProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
instance Property "LogicalId" AssetPropertyProperty where
  type PropertyType "LogicalId" AssetPropertyProperty = Value Prelude.Text
  set :: PropertyType "LogicalId" AssetPropertyProperty
-> AssetPropertyProperty -> AssetPropertyProperty
set PropertyType "LogicalId" AssetPropertyProperty
newValue AssetPropertyProperty {Maybe (Value Text)
()
haddock_workaround_ :: AssetPropertyProperty -> ()
alias :: AssetPropertyProperty -> Maybe (Value Text)
externalId :: AssetPropertyProperty -> Maybe (Value Text)
id :: AssetPropertyProperty -> Maybe (Value Text)
logicalId :: AssetPropertyProperty -> Maybe (Value Text)
notificationState :: AssetPropertyProperty -> Maybe (Value Text)
unit :: AssetPropertyProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
    = AssetPropertyProperty {logicalId :: Maybe (Value Text)
logicalId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "LogicalId" AssetPropertyProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
instance Property "NotificationState" AssetPropertyProperty where
  type PropertyType "NotificationState" AssetPropertyProperty = Value Prelude.Text
  set :: PropertyType "NotificationState" AssetPropertyProperty
-> AssetPropertyProperty -> AssetPropertyProperty
set PropertyType "NotificationState" AssetPropertyProperty
newValue AssetPropertyProperty {Maybe (Value Text)
()
haddock_workaround_ :: AssetPropertyProperty -> ()
alias :: AssetPropertyProperty -> Maybe (Value Text)
externalId :: AssetPropertyProperty -> Maybe (Value Text)
id :: AssetPropertyProperty -> Maybe (Value Text)
logicalId :: AssetPropertyProperty -> Maybe (Value Text)
notificationState :: AssetPropertyProperty -> Maybe (Value Text)
unit :: AssetPropertyProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
    = AssetPropertyProperty
        {notificationState :: Maybe (Value Text)
notificationState = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "NotificationState" AssetPropertyProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
unit :: Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
instance Property "Unit" AssetPropertyProperty where
  type PropertyType "Unit" AssetPropertyProperty = Value Prelude.Text
  set :: PropertyType "Unit" AssetPropertyProperty
-> AssetPropertyProperty -> AssetPropertyProperty
set PropertyType "Unit" AssetPropertyProperty
newValue AssetPropertyProperty {Maybe (Value Text)
()
haddock_workaround_ :: AssetPropertyProperty -> ()
alias :: AssetPropertyProperty -> Maybe (Value Text)
externalId :: AssetPropertyProperty -> Maybe (Value Text)
id :: AssetPropertyProperty -> Maybe (Value Text)
logicalId :: AssetPropertyProperty -> Maybe (Value Text)
notificationState :: AssetPropertyProperty -> Maybe (Value Text)
unit :: AssetPropertyProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
unit :: Maybe (Value Text)
..}
    = AssetPropertyProperty {unit :: Maybe (Value Text)
unit = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Unit" AssetPropertyProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
haddock_workaround_ :: ()
alias :: Maybe (Value Text)
externalId :: Maybe (Value Text)
id :: Maybe (Value Text)
logicalId :: Maybe (Value Text)
notificationState :: Maybe (Value Text)
..}