module Stratosphere.KinesisFirehose.DeliveryStream.SchemaEvolutionConfigurationProperty (
        SchemaEvolutionConfigurationProperty(..),
        mkSchemaEvolutionConfigurationProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data SchemaEvolutionConfigurationProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaevolutionconfiguration.html>
    SchemaEvolutionConfigurationProperty {SchemaEvolutionConfigurationProperty -> ()
haddock_workaround_ :: (),
                                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-schemaevolutionconfiguration.html#cfn-kinesisfirehose-deliverystream-schemaevolutionconfiguration-enabled>
                                          SchemaEvolutionConfigurationProperty -> Maybe (Value Bool)
enabled :: (Prelude.Maybe (Value Prelude.Bool))}
  deriving stock (SchemaEvolutionConfigurationProperty
-> SchemaEvolutionConfigurationProperty -> Bool
(SchemaEvolutionConfigurationProperty
 -> SchemaEvolutionConfigurationProperty -> Bool)
-> (SchemaEvolutionConfigurationProperty
    -> SchemaEvolutionConfigurationProperty -> Bool)
-> Eq SchemaEvolutionConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SchemaEvolutionConfigurationProperty
-> SchemaEvolutionConfigurationProperty -> Bool
== :: SchemaEvolutionConfigurationProperty
-> SchemaEvolutionConfigurationProperty -> Bool
$c/= :: SchemaEvolutionConfigurationProperty
-> SchemaEvolutionConfigurationProperty -> Bool
/= :: SchemaEvolutionConfigurationProperty
-> SchemaEvolutionConfigurationProperty -> Bool
Prelude.Eq, Int -> SchemaEvolutionConfigurationProperty -> ShowS
[SchemaEvolutionConfigurationProperty] -> ShowS
SchemaEvolutionConfigurationProperty -> String
(Int -> SchemaEvolutionConfigurationProperty -> ShowS)
-> (SchemaEvolutionConfigurationProperty -> String)
-> ([SchemaEvolutionConfigurationProperty] -> ShowS)
-> Show SchemaEvolutionConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SchemaEvolutionConfigurationProperty -> ShowS
showsPrec :: Int -> SchemaEvolutionConfigurationProperty -> ShowS
$cshow :: SchemaEvolutionConfigurationProperty -> String
show :: SchemaEvolutionConfigurationProperty -> String
$cshowList :: [SchemaEvolutionConfigurationProperty] -> ShowS
showList :: [SchemaEvolutionConfigurationProperty] -> ShowS
Prelude.Show)
mkSchemaEvolutionConfigurationProperty ::
  SchemaEvolutionConfigurationProperty
mkSchemaEvolutionConfigurationProperty :: SchemaEvolutionConfigurationProperty
mkSchemaEvolutionConfigurationProperty
  = SchemaEvolutionConfigurationProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), enabled :: Maybe (Value Bool)
enabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties SchemaEvolutionConfigurationProperty where
  toResourceProperties :: SchemaEvolutionConfigurationProperty -> ResourceProperties
toResourceProperties SchemaEvolutionConfigurationProperty {Maybe (Value Bool)
()
haddock_workaround_ :: SchemaEvolutionConfigurationProperty -> ()
enabled :: SchemaEvolutionConfigurationProperty -> Maybe (Value Bool)
haddock_workaround_ :: ()
enabled :: Maybe (Value Bool)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::KinesisFirehose::DeliveryStream.SchemaEvolutionConfiguration",
         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 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
"Enabled" (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)
enabled])}
instance JSON.ToJSON SchemaEvolutionConfigurationProperty where
  toJSON :: SchemaEvolutionConfigurationProperty -> Value
toJSON SchemaEvolutionConfigurationProperty {Maybe (Value Bool)
()
haddock_workaround_ :: SchemaEvolutionConfigurationProperty -> ()
enabled :: SchemaEvolutionConfigurationProperty -> Maybe (Value Bool)
haddock_workaround_ :: ()
enabled :: Maybe (Value Bool)
..}
    = [(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 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
"Enabled" (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)
enabled]))
instance Property "Enabled" SchemaEvolutionConfigurationProperty where
  type PropertyType "Enabled" SchemaEvolutionConfigurationProperty = Value Prelude.Bool
  set :: PropertyType "Enabled" SchemaEvolutionConfigurationProperty
-> SchemaEvolutionConfigurationProperty
-> SchemaEvolutionConfigurationProperty
set PropertyType "Enabled" SchemaEvolutionConfigurationProperty
newValue SchemaEvolutionConfigurationProperty {Maybe (Value Bool)
()
haddock_workaround_ :: SchemaEvolutionConfigurationProperty -> ()
enabled :: SchemaEvolutionConfigurationProperty -> Maybe (Value Bool)
haddock_workaround_ :: ()
enabled :: Maybe (Value Bool)
..}
    = SchemaEvolutionConfigurationProperty
        {enabled :: Maybe (Value Bool)
enabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Enabled" SchemaEvolutionConfigurationProperty
Value Bool
newValue, ()
haddock_workaround_ :: ()
haddock_workaround_ :: ()
..}