module Stratosphere.ResilienceHub.App.ResourceMappingProperty (
        module Exports, ResourceMappingProperty(..),
        mkResourceMappingProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.ResilienceHub.App.PhysicalResourceIdProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ResourceMappingProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html>
    ResourceMappingProperty {ResourceMappingProperty -> ()
haddock_workaround_ :: (),
                             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-ekssourcename>
                             ResourceMappingProperty -> Maybe (Value Text)
eksSourceName :: (Prelude.Maybe (Value Prelude.Text)),
                             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-logicalstackname>
                             ResourceMappingProperty -> Maybe (Value Text)
logicalStackName :: (Prelude.Maybe (Value Prelude.Text)),
                             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-mappingtype>
                             ResourceMappingProperty -> Value Text
mappingType :: (Value Prelude.Text),
                             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-physicalresourceid>
                             ResourceMappingProperty -> PhysicalResourceIdProperty
physicalResourceId :: PhysicalResourceIdProperty,
                             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-resourcename>
                             ResourceMappingProperty -> Maybe (Value Text)
resourceName :: (Prelude.Maybe (Value Prelude.Text)),
                             -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehub-app-resourcemapping.html#cfn-resiliencehub-app-resourcemapping-terraformsourcename>
                             ResourceMappingProperty -> Maybe (Value Text)
terraformSourceName :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (ResourceMappingProperty -> ResourceMappingProperty -> Bool
(ResourceMappingProperty -> ResourceMappingProperty -> Bool)
-> (ResourceMappingProperty -> ResourceMappingProperty -> Bool)
-> Eq ResourceMappingProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ResourceMappingProperty -> ResourceMappingProperty -> Bool
== :: ResourceMappingProperty -> ResourceMappingProperty -> Bool
$c/= :: ResourceMappingProperty -> ResourceMappingProperty -> Bool
/= :: ResourceMappingProperty -> ResourceMappingProperty -> Bool
Prelude.Eq, Int -> ResourceMappingProperty -> ShowS
[ResourceMappingProperty] -> ShowS
ResourceMappingProperty -> String
(Int -> ResourceMappingProperty -> ShowS)
-> (ResourceMappingProperty -> String)
-> ([ResourceMappingProperty] -> ShowS)
-> Show ResourceMappingProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ResourceMappingProperty -> ShowS
showsPrec :: Int -> ResourceMappingProperty -> ShowS
$cshow :: ResourceMappingProperty -> String
show :: ResourceMappingProperty -> String
$cshowList :: [ResourceMappingProperty] -> ShowS
showList :: [ResourceMappingProperty] -> ShowS
Prelude.Show)
mkResourceMappingProperty ::
  Value Prelude.Text
  -> PhysicalResourceIdProperty -> ResourceMappingProperty
mkResourceMappingProperty :: Value Text -> PhysicalResourceIdProperty -> ResourceMappingProperty
mkResourceMappingProperty Value Text
mappingType PhysicalResourceIdProperty
physicalResourceId
  = ResourceMappingProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), mappingType :: Value Text
mappingType = Value Text
mappingType,
       physicalResourceId :: PhysicalResourceIdProperty
physicalResourceId = PhysicalResourceIdProperty
physicalResourceId,
       eksSourceName :: Maybe (Value Text)
eksSourceName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       logicalStackName :: Maybe (Value Text)
logicalStackName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, resourceName :: Maybe (Value Text)
resourceName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       terraformSourceName :: Maybe (Value Text)
terraformSourceName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ResourceMappingProperty where
  toResourceProperties :: ResourceMappingProperty -> ResourceProperties
toResourceProperties ResourceMappingProperty {Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ResourceMappingProperty -> ()
eksSourceName :: ResourceMappingProperty -> Maybe (Value Text)
logicalStackName :: ResourceMappingProperty -> Maybe (Value Text)
mappingType :: ResourceMappingProperty -> Value Text
physicalResourceId :: ResourceMappingProperty -> PhysicalResourceIdProperty
resourceName :: ResourceMappingProperty -> Maybe (Value Text)
terraformSourceName :: ResourceMappingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::ResilienceHub::App.ResourceMapping",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
                           [Key
"MappingType" 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
mappingType,
                            Key
"PhysicalResourceId" Key -> PhysicalResourceIdProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= PhysicalResourceIdProperty
physicalResourceId]
                           ([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
"EksSourceName" (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)
eksSourceName,
                               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
"LogicalStackName" (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)
logicalStackName,
                               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
"ResourceName" (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)
resourceName,
                               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
"TerraformSourceName" (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)
terraformSourceName]))}
instance JSON.ToJSON ResourceMappingProperty where
  toJSON :: ResourceMappingProperty -> Value
toJSON ResourceMappingProperty {Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ResourceMappingProperty -> ()
eksSourceName :: ResourceMappingProperty -> Maybe (Value Text)
logicalStackName :: ResourceMappingProperty -> Maybe (Value Text)
mappingType :: ResourceMappingProperty -> Value Text
physicalResourceId :: ResourceMappingProperty -> PhysicalResourceIdProperty
resourceName :: ResourceMappingProperty -> Maybe (Value Text)
terraformSourceName :: ResourceMappingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
              [Key
"MappingType" 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
mappingType,
               Key
"PhysicalResourceId" Key -> PhysicalResourceIdProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= PhysicalResourceIdProperty
physicalResourceId]
              ([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
"EksSourceName" (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)
eksSourceName,
                  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
"LogicalStackName" (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)
logicalStackName,
                  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
"ResourceName" (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)
resourceName,
                  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
"TerraformSourceName" (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)
terraformSourceName])))
instance Property "EksSourceName" ResourceMappingProperty where
  type PropertyType "EksSourceName" ResourceMappingProperty = Value Prelude.Text
  set :: PropertyType "EksSourceName" ResourceMappingProperty
-> ResourceMappingProperty -> ResourceMappingProperty
set PropertyType "EksSourceName" ResourceMappingProperty
newValue ResourceMappingProperty {Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ResourceMappingProperty -> ()
eksSourceName :: ResourceMappingProperty -> Maybe (Value Text)
logicalStackName :: ResourceMappingProperty -> Maybe (Value Text)
mappingType :: ResourceMappingProperty -> Value Text
physicalResourceId :: ResourceMappingProperty -> PhysicalResourceIdProperty
resourceName :: ResourceMappingProperty -> Maybe (Value Text)
terraformSourceName :: ResourceMappingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
    = ResourceMappingProperty
        {eksSourceName :: Maybe (Value Text)
eksSourceName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EksSourceName" ResourceMappingProperty
Value Text
newValue, Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ()
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
haddock_workaround_ :: ()
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
instance Property "LogicalStackName" ResourceMappingProperty where
  type PropertyType "LogicalStackName" ResourceMappingProperty = Value Prelude.Text
  set :: PropertyType "LogicalStackName" ResourceMappingProperty
-> ResourceMappingProperty -> ResourceMappingProperty
set PropertyType "LogicalStackName" ResourceMappingProperty
newValue ResourceMappingProperty {Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ResourceMappingProperty -> ()
eksSourceName :: ResourceMappingProperty -> Maybe (Value Text)
logicalStackName :: ResourceMappingProperty -> Maybe (Value Text)
mappingType :: ResourceMappingProperty -> Value Text
physicalResourceId :: ResourceMappingProperty -> PhysicalResourceIdProperty
resourceName :: ResourceMappingProperty -> Maybe (Value Text)
terraformSourceName :: ResourceMappingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
    = ResourceMappingProperty
        {logicalStackName :: Maybe (Value Text)
logicalStackName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "LogicalStackName" ResourceMappingProperty
Value Text
newValue, Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
instance Property "MappingType" ResourceMappingProperty where
  type PropertyType "MappingType" ResourceMappingProperty = Value Prelude.Text
  set :: PropertyType "MappingType" ResourceMappingProperty
-> ResourceMappingProperty -> ResourceMappingProperty
set PropertyType "MappingType" ResourceMappingProperty
newValue ResourceMappingProperty {Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ResourceMappingProperty -> ()
eksSourceName :: ResourceMappingProperty -> Maybe (Value Text)
logicalStackName :: ResourceMappingProperty -> Maybe (Value Text)
mappingType :: ResourceMappingProperty -> Value Text
physicalResourceId :: ResourceMappingProperty -> PhysicalResourceIdProperty
resourceName :: ResourceMappingProperty -> Maybe (Value Text)
terraformSourceName :: ResourceMappingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
    = ResourceMappingProperty {mappingType :: Value Text
mappingType = PropertyType "MappingType" ResourceMappingProperty
Value Text
newValue, Maybe (Value Text)
()
PhysicalResourceIdProperty
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
instance Property "PhysicalResourceId" ResourceMappingProperty where
  type PropertyType "PhysicalResourceId" ResourceMappingProperty = PhysicalResourceIdProperty
  set :: PropertyType "PhysicalResourceId" ResourceMappingProperty
-> ResourceMappingProperty -> ResourceMappingProperty
set PropertyType "PhysicalResourceId" ResourceMappingProperty
newValue ResourceMappingProperty {Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ResourceMappingProperty -> ()
eksSourceName :: ResourceMappingProperty -> Maybe (Value Text)
logicalStackName :: ResourceMappingProperty -> Maybe (Value Text)
mappingType :: ResourceMappingProperty -> Value Text
physicalResourceId :: ResourceMappingProperty -> PhysicalResourceIdProperty
resourceName :: ResourceMappingProperty -> Maybe (Value Text)
terraformSourceName :: ResourceMappingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
    = ResourceMappingProperty {physicalResourceId :: PhysicalResourceIdProperty
physicalResourceId = PropertyType "PhysicalResourceId" ResourceMappingProperty
PhysicalResourceIdProperty
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
instance Property "ResourceName" ResourceMappingProperty where
  type PropertyType "ResourceName" ResourceMappingProperty = Value Prelude.Text
  set :: PropertyType "ResourceName" ResourceMappingProperty
-> ResourceMappingProperty -> ResourceMappingProperty
set PropertyType "ResourceName" ResourceMappingProperty
newValue ResourceMappingProperty {Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ResourceMappingProperty -> ()
eksSourceName :: ResourceMappingProperty -> Maybe (Value Text)
logicalStackName :: ResourceMappingProperty -> Maybe (Value Text)
mappingType :: ResourceMappingProperty -> Value Text
physicalResourceId :: ResourceMappingProperty -> PhysicalResourceIdProperty
resourceName :: ResourceMappingProperty -> Maybe (Value Text)
terraformSourceName :: ResourceMappingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
    = ResourceMappingProperty
        {resourceName :: Maybe (Value Text)
resourceName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ResourceName" ResourceMappingProperty
Value Text
newValue, Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
terraformSourceName :: Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
terraformSourceName :: Maybe (Value Text)
..}
instance Property "TerraformSourceName" ResourceMappingProperty where
  type PropertyType "TerraformSourceName" ResourceMappingProperty = Value Prelude.Text
  set :: PropertyType "TerraformSourceName" ResourceMappingProperty
-> ResourceMappingProperty -> ResourceMappingProperty
set PropertyType "TerraformSourceName" ResourceMappingProperty
newValue ResourceMappingProperty {Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ResourceMappingProperty -> ()
eksSourceName :: ResourceMappingProperty -> Maybe (Value Text)
logicalStackName :: ResourceMappingProperty -> Maybe (Value Text)
mappingType :: ResourceMappingProperty -> Value Text
physicalResourceId :: ResourceMappingProperty -> PhysicalResourceIdProperty
resourceName :: ResourceMappingProperty -> Maybe (Value Text)
terraformSourceName :: ResourceMappingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
terraformSourceName :: Maybe (Value Text)
..}
    = ResourceMappingProperty
        {terraformSourceName :: Maybe (Value Text)
terraformSourceName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TerraformSourceName" ResourceMappingProperty
Value Text
newValue, Maybe (Value Text)
()
Value Text
PhysicalResourceIdProperty
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
haddock_workaround_ :: ()
eksSourceName :: Maybe (Value Text)
logicalStackName :: Maybe (Value Text)
mappingType :: Value Text
physicalResourceId :: PhysicalResourceIdProperty
resourceName :: Maybe (Value Text)
..}