module Stratosphere.KinesisFirehose.DeliveryStream.SchemaConfigurationProperty (
        SchemaConfigurationProperty(..), mkSchemaConfigurationProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data SchemaConfigurationProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html>
    SchemaConfigurationProperty {SchemaConfigurationProperty -> ()
haddock_workaround_ :: (),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-catalogid>
                                 SchemaConfigurationProperty -> Maybe (Value Text)
catalogId :: (Prelude.Maybe (Value Prelude.Text)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-databasename>
                                 SchemaConfigurationProperty -> Maybe (Value Text)
databaseName :: (Prelude.Maybe (Value Prelude.Text)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-region>
                                 SchemaConfigurationProperty -> Maybe (Value Text)
region :: (Prelude.Maybe (Value Prelude.Text)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-rolearn>
                                 SchemaConfigurationProperty -> Maybe (Value Text)
roleARN :: (Prelude.Maybe (Value Prelude.Text)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-tablename>
                                 SchemaConfigurationProperty -> Maybe (Value Text)
tableName :: (Prelude.Maybe (Value Prelude.Text)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaconfiguration-versionid>
                                 SchemaConfigurationProperty -> Maybe (Value Text)
versionId :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (SchemaConfigurationProperty -> SchemaConfigurationProperty -> Bool
(SchemaConfigurationProperty
 -> SchemaConfigurationProperty -> Bool)
-> (SchemaConfigurationProperty
    -> SchemaConfigurationProperty -> Bool)
-> Eq SchemaConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SchemaConfigurationProperty -> SchemaConfigurationProperty -> Bool
== :: SchemaConfigurationProperty -> SchemaConfigurationProperty -> Bool
$c/= :: SchemaConfigurationProperty -> SchemaConfigurationProperty -> Bool
/= :: SchemaConfigurationProperty -> SchemaConfigurationProperty -> Bool
Prelude.Eq, Int -> SchemaConfigurationProperty -> ShowS
[SchemaConfigurationProperty] -> ShowS
SchemaConfigurationProperty -> String
(Int -> SchemaConfigurationProperty -> ShowS)
-> (SchemaConfigurationProperty -> String)
-> ([SchemaConfigurationProperty] -> ShowS)
-> Show SchemaConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SchemaConfigurationProperty -> ShowS
showsPrec :: Int -> SchemaConfigurationProperty -> ShowS
$cshow :: SchemaConfigurationProperty -> String
show :: SchemaConfigurationProperty -> String
$cshowList :: [SchemaConfigurationProperty] -> ShowS
showList :: [SchemaConfigurationProperty] -> ShowS
Prelude.Show)
mkSchemaConfigurationProperty :: SchemaConfigurationProperty
mkSchemaConfigurationProperty :: SchemaConfigurationProperty
mkSchemaConfigurationProperty
  = SchemaConfigurationProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), catalogId :: Maybe (Value Text)
catalogId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       databaseName :: Maybe (Value Text)
databaseName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, region :: Maybe (Value Text)
region = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       roleARN :: Maybe (Value Text)
roleARN = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tableName :: Maybe (Value Text)
tableName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       versionId :: Maybe (Value Text)
versionId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties SchemaConfigurationProperty where
  toResourceProperties :: SchemaConfigurationProperty -> ResourceProperties
toResourceProperties SchemaConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: SchemaConfigurationProperty -> ()
catalogId :: SchemaConfigurationProperty -> Maybe (Value Text)
databaseName :: SchemaConfigurationProperty -> Maybe (Value Text)
region :: SchemaConfigurationProperty -> Maybe (Value Text)
roleARN :: SchemaConfigurationProperty -> Maybe (Value Text)
tableName :: SchemaConfigurationProperty -> Maybe (Value Text)
versionId :: SchemaConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::KinesisFirehose::DeliveryStream.SchemaConfiguration",
         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
"CatalogId" (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)
catalogId,
                            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
"DatabaseName" (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)
databaseName,
                            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
"Region" (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)
region,
                            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
"RoleARN" (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)
roleARN,
                            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
"TableName" (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)
tableName,
                            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
"VersionId" (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)
versionId])}
instance JSON.ToJSON SchemaConfigurationProperty where
  toJSON :: SchemaConfigurationProperty -> Value
toJSON SchemaConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: SchemaConfigurationProperty -> ()
catalogId :: SchemaConfigurationProperty -> Maybe (Value Text)
databaseName :: SchemaConfigurationProperty -> Maybe (Value Text)
region :: SchemaConfigurationProperty -> Maybe (Value Text)
roleARN :: SchemaConfigurationProperty -> Maybe (Value Text)
tableName :: SchemaConfigurationProperty -> Maybe (Value Text)
versionId :: SchemaConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: 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
"CatalogId" (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)
catalogId,
               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
"DatabaseName" (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)
databaseName,
               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
"Region" (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)
region,
               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
"RoleARN" (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)
roleARN,
               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
"TableName" (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)
tableName,
               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
"VersionId" (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)
versionId]))
instance Property "CatalogId" SchemaConfigurationProperty where
  type PropertyType "CatalogId" SchemaConfigurationProperty = Value Prelude.Text
  set :: PropertyType "CatalogId" SchemaConfigurationProperty
-> SchemaConfigurationProperty -> SchemaConfigurationProperty
set PropertyType "CatalogId" SchemaConfigurationProperty
newValue SchemaConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: SchemaConfigurationProperty -> ()
catalogId :: SchemaConfigurationProperty -> Maybe (Value Text)
databaseName :: SchemaConfigurationProperty -> Maybe (Value Text)
region :: SchemaConfigurationProperty -> Maybe (Value Text)
roleARN :: SchemaConfigurationProperty -> Maybe (Value Text)
tableName :: SchemaConfigurationProperty -> Maybe (Value Text)
versionId :: SchemaConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
    = SchemaConfigurationProperty
        {catalogId :: Maybe (Value Text)
catalogId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CatalogId" SchemaConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
haddock_workaround_ :: ()
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
instance Property "DatabaseName" SchemaConfigurationProperty where
  type PropertyType "DatabaseName" SchemaConfigurationProperty = Value Prelude.Text
  set :: PropertyType "DatabaseName" SchemaConfigurationProperty
-> SchemaConfigurationProperty -> SchemaConfigurationProperty
set PropertyType "DatabaseName" SchemaConfigurationProperty
newValue SchemaConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: SchemaConfigurationProperty -> ()
catalogId :: SchemaConfigurationProperty -> Maybe (Value Text)
databaseName :: SchemaConfigurationProperty -> Maybe (Value Text)
region :: SchemaConfigurationProperty -> Maybe (Value Text)
roleARN :: SchemaConfigurationProperty -> Maybe (Value Text)
tableName :: SchemaConfigurationProperty -> Maybe (Value Text)
versionId :: SchemaConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
    = SchemaConfigurationProperty
        {databaseName :: Maybe (Value Text)
databaseName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DatabaseName" SchemaConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
instance Property "Region" SchemaConfigurationProperty where
  type PropertyType "Region" SchemaConfigurationProperty = Value Prelude.Text
  set :: PropertyType "Region" SchemaConfigurationProperty
-> SchemaConfigurationProperty -> SchemaConfigurationProperty
set PropertyType "Region" SchemaConfigurationProperty
newValue SchemaConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: SchemaConfigurationProperty -> ()
catalogId :: SchemaConfigurationProperty -> Maybe (Value Text)
databaseName :: SchemaConfigurationProperty -> Maybe (Value Text)
region :: SchemaConfigurationProperty -> Maybe (Value Text)
roleARN :: SchemaConfigurationProperty -> Maybe (Value Text)
tableName :: SchemaConfigurationProperty -> Maybe (Value Text)
versionId :: SchemaConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
    = SchemaConfigurationProperty {region :: Maybe (Value Text)
region = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Region" SchemaConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
instance Property "RoleARN" SchemaConfigurationProperty where
  type PropertyType "RoleARN" SchemaConfigurationProperty = Value Prelude.Text
  set :: PropertyType "RoleARN" SchemaConfigurationProperty
-> SchemaConfigurationProperty -> SchemaConfigurationProperty
set PropertyType "RoleARN" SchemaConfigurationProperty
newValue SchemaConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: SchemaConfigurationProperty -> ()
catalogId :: SchemaConfigurationProperty -> Maybe (Value Text)
databaseName :: SchemaConfigurationProperty -> Maybe (Value Text)
region :: SchemaConfigurationProperty -> Maybe (Value Text)
roleARN :: SchemaConfigurationProperty -> Maybe (Value Text)
tableName :: SchemaConfigurationProperty -> Maybe (Value Text)
versionId :: SchemaConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
    = SchemaConfigurationProperty {roleARN :: Maybe (Value Text)
roleARN = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RoleARN" SchemaConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
instance Property "TableName" SchemaConfigurationProperty where
  type PropertyType "TableName" SchemaConfigurationProperty = Value Prelude.Text
  set :: PropertyType "TableName" SchemaConfigurationProperty
-> SchemaConfigurationProperty -> SchemaConfigurationProperty
set PropertyType "TableName" SchemaConfigurationProperty
newValue SchemaConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: SchemaConfigurationProperty -> ()
catalogId :: SchemaConfigurationProperty -> Maybe (Value Text)
databaseName :: SchemaConfigurationProperty -> Maybe (Value Text)
region :: SchemaConfigurationProperty -> Maybe (Value Text)
roleARN :: SchemaConfigurationProperty -> Maybe (Value Text)
tableName :: SchemaConfigurationProperty -> Maybe (Value Text)
versionId :: SchemaConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
    = SchemaConfigurationProperty
        {tableName :: Maybe (Value Text)
tableName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TableName" SchemaConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
versionId :: Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
instance Property "VersionId" SchemaConfigurationProperty where
  type PropertyType "VersionId" SchemaConfigurationProperty = Value Prelude.Text
  set :: PropertyType "VersionId" SchemaConfigurationProperty
-> SchemaConfigurationProperty -> SchemaConfigurationProperty
set PropertyType "VersionId" SchemaConfigurationProperty
newValue SchemaConfigurationProperty {Maybe (Value Text)
()
haddock_workaround_ :: SchemaConfigurationProperty -> ()
catalogId :: SchemaConfigurationProperty -> Maybe (Value Text)
databaseName :: SchemaConfigurationProperty -> Maybe (Value Text)
region :: SchemaConfigurationProperty -> Maybe (Value Text)
roleARN :: SchemaConfigurationProperty -> Maybe (Value Text)
tableName :: SchemaConfigurationProperty -> Maybe (Value Text)
versionId :: SchemaConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
versionId :: Maybe (Value Text)
..}
    = SchemaConfigurationProperty
        {versionId :: Maybe (Value Text)
versionId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "VersionId" SchemaConfigurationProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
haddock_workaround_ :: ()
catalogId :: Maybe (Value Text)
databaseName :: Maybe (Value Text)
region :: Maybe (Value Text)
roleARN :: Maybe (Value Text)
tableName :: Maybe (Value Text)
..}