module Stratosphere.RDS.OptionGroup.OptionSettingProperty (
OptionSettingProperty(..), mkOptionSettingProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data OptionSettingProperty
=
OptionSettingProperty {OptionSettingProperty -> ()
haddock_workaround_ :: (),
OptionSettingProperty -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
OptionSettingProperty -> Maybe (Value Text)
value :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (OptionSettingProperty -> OptionSettingProperty -> Bool
(OptionSettingProperty -> OptionSettingProperty -> Bool)
-> (OptionSettingProperty -> OptionSettingProperty -> Bool)
-> Eq OptionSettingProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: OptionSettingProperty -> OptionSettingProperty -> Bool
== :: OptionSettingProperty -> OptionSettingProperty -> Bool
$c/= :: OptionSettingProperty -> OptionSettingProperty -> Bool
/= :: OptionSettingProperty -> OptionSettingProperty -> Bool
Prelude.Eq, Int -> OptionSettingProperty -> ShowS
[OptionSettingProperty] -> ShowS
OptionSettingProperty -> String
(Int -> OptionSettingProperty -> ShowS)
-> (OptionSettingProperty -> String)
-> ([OptionSettingProperty] -> ShowS)
-> Show OptionSettingProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> OptionSettingProperty -> ShowS
showsPrec :: Int -> OptionSettingProperty -> ShowS
$cshow :: OptionSettingProperty -> String
show :: OptionSettingProperty -> String
$cshowList :: [OptionSettingProperty] -> ShowS
showList :: [OptionSettingProperty] -> ShowS
Prelude.Show)
mkOptionSettingProperty :: OptionSettingProperty
mkOptionSettingProperty :: OptionSettingProperty
mkOptionSettingProperty
= OptionSettingProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
value :: Maybe (Value Text)
value = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties OptionSettingProperty where
toResourceProperties :: OptionSettingProperty -> ResourceProperties
toResourceProperties OptionSettingProperty {Maybe (Value Text)
()
haddock_workaround_ :: OptionSettingProperty -> ()
name :: OptionSettingProperty -> Maybe (Value Text)
value :: OptionSettingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
name :: Maybe (Value Text)
value :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::RDS::OptionGroup.OptionSetting",
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
"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 -> 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
"Value" (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)
value])}
instance JSON.ToJSON OptionSettingProperty where
toJSON :: OptionSettingProperty -> Value
toJSON OptionSettingProperty {Maybe (Value Text)
()
haddock_workaround_ :: OptionSettingProperty -> ()
name :: OptionSettingProperty -> Maybe (Value Text)
value :: OptionSettingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
name :: Maybe (Value Text)
value :: 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
"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 -> 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
"Value" (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)
value]))
instance Property "Name" OptionSettingProperty where
type PropertyType "Name" OptionSettingProperty = Value Prelude.Text
set :: PropertyType "Name" OptionSettingProperty
-> OptionSettingProperty -> OptionSettingProperty
set PropertyType "Name" OptionSettingProperty
newValue OptionSettingProperty {Maybe (Value Text)
()
haddock_workaround_ :: OptionSettingProperty -> ()
name :: OptionSettingProperty -> Maybe (Value Text)
value :: OptionSettingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
name :: Maybe (Value Text)
value :: Maybe (Value Text)
..}
= OptionSettingProperty {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" OptionSettingProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
value :: Maybe (Value Text)
haddock_workaround_ :: ()
value :: Maybe (Value Text)
..}
instance Property "Value" OptionSettingProperty where
type PropertyType "Value" OptionSettingProperty = Value Prelude.Text
set :: PropertyType "Value" OptionSettingProperty
-> OptionSettingProperty -> OptionSettingProperty
set PropertyType "Value" OptionSettingProperty
newValue OptionSettingProperty {Maybe (Value Text)
()
haddock_workaround_ :: OptionSettingProperty -> ()
name :: OptionSettingProperty -> Maybe (Value Text)
value :: OptionSettingProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
name :: Maybe (Value Text)
value :: Maybe (Value Text)
..}
= OptionSettingProperty {value :: Maybe (Value Text)
value = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Value" OptionSettingProperty
Value Text
newValue, Maybe (Value Text)
()
haddock_workaround_ :: ()
name :: Maybe (Value Text)
haddock_workaround_ :: ()
name :: Maybe (Value Text)
..}