module Stratosphere.RDS.DBShardGroup (
        DBShardGroup(..), mkDBShardGroup
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data DBShardGroup
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html>
    DBShardGroup {DBShardGroup -> ()
haddock_workaround_ :: (),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html#cfn-rds-dbshardgroup-computeredundancy>
                  DBShardGroup -> Maybe (Value Integer)
computeRedundancy :: (Prelude.Maybe (Value Prelude.Integer)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html#cfn-rds-dbshardgroup-dbclusteridentifier>
                  DBShardGroup -> Value Text
dBClusterIdentifier :: (Value Prelude.Text),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html#cfn-rds-dbshardgroup-dbshardgroupidentifier>
                  DBShardGroup -> Maybe (Value Text)
dBShardGroupIdentifier :: (Prelude.Maybe (Value Prelude.Text)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html#cfn-rds-dbshardgroup-maxacu>
                  DBShardGroup -> Value Double
maxACU :: (Value Prelude.Double),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html#cfn-rds-dbshardgroup-minacu>
                  DBShardGroup -> Maybe (Value Double)
minACU :: (Prelude.Maybe (Value Prelude.Double)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html#cfn-rds-dbshardgroup-publiclyaccessible>
                  DBShardGroup -> Maybe (Value Bool)
publiclyAccessible :: (Prelude.Maybe (Value Prelude.Bool)),
                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html#cfn-rds-dbshardgroup-tags>
                  DBShardGroup -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
  deriving stock (DBShardGroup -> DBShardGroup -> Bool
(DBShardGroup -> DBShardGroup -> Bool)
-> (DBShardGroup -> DBShardGroup -> Bool) -> Eq DBShardGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: DBShardGroup -> DBShardGroup -> Bool
== :: DBShardGroup -> DBShardGroup -> Bool
$c/= :: DBShardGroup -> DBShardGroup -> Bool
/= :: DBShardGroup -> DBShardGroup -> Bool
Prelude.Eq, Int -> DBShardGroup -> ShowS
[DBShardGroup] -> ShowS
DBShardGroup -> String
(Int -> DBShardGroup -> ShowS)
-> (DBShardGroup -> String)
-> ([DBShardGroup] -> ShowS)
-> Show DBShardGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> DBShardGroup -> ShowS
showsPrec :: Int -> DBShardGroup -> ShowS
$cshow :: DBShardGroup -> String
show :: DBShardGroup -> String
$cshowList :: [DBShardGroup] -> ShowS
showList :: [DBShardGroup] -> ShowS
Prelude.Show)
mkDBShardGroup ::
  Value Prelude.Text -> Value Prelude.Double -> DBShardGroup
mkDBShardGroup :: Value Text -> Value Double -> DBShardGroup
mkDBShardGroup Value Text
dBClusterIdentifier Value Double
maxACU
  = DBShardGroup
      {haddock_workaround_ :: ()
haddock_workaround_ = (),
       dBClusterIdentifier :: Value Text
dBClusterIdentifier = Value Text
dBClusterIdentifier, maxACU :: Value Double
maxACU = Value Double
maxACU,
       computeRedundancy :: Maybe (Value Integer)
computeRedundancy = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       dBShardGroupIdentifier :: Maybe (Value Text)
dBShardGroupIdentifier = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, minACU :: Maybe (Value Double)
minACU = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing,
       publiclyAccessible :: Maybe (Value Bool)
publiclyAccessible = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties DBShardGroup where
  toResourceProperties :: DBShardGroup -> ResourceProperties
toResourceProperties DBShardGroup {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: DBShardGroup -> ()
computeRedundancy :: DBShardGroup -> Maybe (Value Integer)
dBClusterIdentifier :: DBShardGroup -> Value Text
dBShardGroupIdentifier :: DBShardGroup -> Maybe (Value Text)
maxACU :: DBShardGroup -> Value Double
minACU :: DBShardGroup -> Maybe (Value Double)
publiclyAccessible :: DBShardGroup -> Maybe (Value Bool)
tags :: DBShardGroup -> Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::RDS::DBShardGroup", supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         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
"DBClusterIdentifier" 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
dBClusterIdentifier,
                            Key
"MaxACU" Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Double
maxACU]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ComputeRedundancy" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
computeRedundancy,
                               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
"DBShardGroupIdentifier"
                                 (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)
dBShardGroupIdentifier,
                               Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MinACU" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
minACU,
                               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
"PubliclyAccessible" (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)
publiclyAccessible,
                               Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON DBShardGroup where
  toJSON :: DBShardGroup -> Value
toJSON DBShardGroup {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: DBShardGroup -> ()
computeRedundancy :: DBShardGroup -> Maybe (Value Integer)
dBClusterIdentifier :: DBShardGroup -> Value Text
dBShardGroupIdentifier :: DBShardGroup -> Maybe (Value Text)
maxACU :: DBShardGroup -> Value Double
minACU :: DBShardGroup -> Maybe (Value Double)
publiclyAccessible :: DBShardGroup -> Maybe (Value Bool)
tags :: DBShardGroup -> Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
    = [(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
"DBClusterIdentifier" 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
dBClusterIdentifier,
               Key
"MaxACU" Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Double
maxACU]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ComputeRedundancy" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
computeRedundancy,
                  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
"DBShardGroupIdentifier"
                    (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)
dBShardGroupIdentifier,
                  Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MinACU" (Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
minACU,
                  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
"PubliclyAccessible" (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)
publiclyAccessible,
                  Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "ComputeRedundancy" DBShardGroup where
  type PropertyType "ComputeRedundancy" DBShardGroup = Value Prelude.Integer
  set :: PropertyType "ComputeRedundancy" DBShardGroup
-> DBShardGroup -> DBShardGroup
set PropertyType "ComputeRedundancy" DBShardGroup
newValue DBShardGroup {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: DBShardGroup -> ()
computeRedundancy :: DBShardGroup -> Maybe (Value Integer)
dBClusterIdentifier :: DBShardGroup -> Value Text
dBShardGroupIdentifier :: DBShardGroup -> Maybe (Value Text)
maxACU :: DBShardGroup -> Value Double
minACU :: DBShardGroup -> Maybe (Value Double)
publiclyAccessible :: DBShardGroup -> Maybe (Value Bool)
tags :: DBShardGroup -> Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
    = DBShardGroup {computeRedundancy :: Maybe (Value Integer)
computeRedundancy = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ComputeRedundancy" DBShardGroup
Value Integer
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ()
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
instance Property "DBClusterIdentifier" DBShardGroup where
  type PropertyType "DBClusterIdentifier" DBShardGroup = Value Prelude.Text
  set :: PropertyType "DBClusterIdentifier" DBShardGroup
-> DBShardGroup -> DBShardGroup
set PropertyType "DBClusterIdentifier" DBShardGroup
newValue DBShardGroup {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: DBShardGroup -> ()
computeRedundancy :: DBShardGroup -> Maybe (Value Integer)
dBClusterIdentifier :: DBShardGroup -> Value Text
dBShardGroupIdentifier :: DBShardGroup -> Maybe (Value Text)
maxACU :: DBShardGroup -> Value Double
minACU :: DBShardGroup -> Maybe (Value Double)
publiclyAccessible :: DBShardGroup -> Maybe (Value Bool)
tags :: DBShardGroup -> Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
    = DBShardGroup {dBClusterIdentifier :: Value Text
dBClusterIdentifier = PropertyType "DBClusterIdentifier" DBShardGroup
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
instance Property "DBShardGroupIdentifier" DBShardGroup where
  type PropertyType "DBShardGroupIdentifier" DBShardGroup = Value Prelude.Text
  set :: PropertyType "DBShardGroupIdentifier" DBShardGroup
-> DBShardGroup -> DBShardGroup
set PropertyType "DBShardGroupIdentifier" DBShardGroup
newValue DBShardGroup {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: DBShardGroup -> ()
computeRedundancy :: DBShardGroup -> Maybe (Value Integer)
dBClusterIdentifier :: DBShardGroup -> Value Text
dBShardGroupIdentifier :: DBShardGroup -> Maybe (Value Text)
maxACU :: DBShardGroup -> Value Double
minACU :: DBShardGroup -> Maybe (Value Double)
publiclyAccessible :: DBShardGroup -> Maybe (Value Bool)
tags :: DBShardGroup -> Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
    = DBShardGroup {dBShardGroupIdentifier :: Maybe (Value Text)
dBShardGroupIdentifier = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DBShardGroupIdentifier" DBShardGroup
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
()
Value Double
Value Text
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
instance Property "MaxACU" DBShardGroup where
  type PropertyType "MaxACU" DBShardGroup = Value Prelude.Double
  set :: PropertyType "MaxACU" DBShardGroup -> DBShardGroup -> DBShardGroup
set PropertyType "MaxACU" DBShardGroup
newValue DBShardGroup {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: DBShardGroup -> ()
computeRedundancy :: DBShardGroup -> Maybe (Value Integer)
dBClusterIdentifier :: DBShardGroup -> Value Text
dBShardGroupIdentifier :: DBShardGroup -> Maybe (Value Text)
maxACU :: DBShardGroup -> Value Double
minACU :: DBShardGroup -> Maybe (Value Double)
publiclyAccessible :: DBShardGroup -> Maybe (Value Bool)
tags :: DBShardGroup -> Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
    = DBShardGroup {maxACU :: Value Double
maxACU = PropertyType "MaxACU" DBShardGroup
Value Double
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
instance Property "MinACU" DBShardGroup where
  type PropertyType "MinACU" DBShardGroup = Value Prelude.Double
  set :: PropertyType "MinACU" DBShardGroup -> DBShardGroup -> DBShardGroup
set PropertyType "MinACU" DBShardGroup
newValue DBShardGroup {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: DBShardGroup -> ()
computeRedundancy :: DBShardGroup -> Maybe (Value Integer)
dBClusterIdentifier :: DBShardGroup -> Value Text
dBShardGroupIdentifier :: DBShardGroup -> Maybe (Value Text)
maxACU :: DBShardGroup -> Value Double
minACU :: DBShardGroup -> Maybe (Value Double)
publiclyAccessible :: DBShardGroup -> Maybe (Value Bool)
tags :: DBShardGroup -> Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
    = DBShardGroup {minACU :: Maybe (Value Double)
minACU = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MinACU" DBShardGroup
Value Double
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
instance Property "PubliclyAccessible" DBShardGroup where
  type PropertyType "PubliclyAccessible" DBShardGroup = Value Prelude.Bool
  set :: PropertyType "PubliclyAccessible" DBShardGroup
-> DBShardGroup -> DBShardGroup
set PropertyType "PubliclyAccessible" DBShardGroup
newValue DBShardGroup {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: DBShardGroup -> ()
computeRedundancy :: DBShardGroup -> Maybe (Value Integer)
dBClusterIdentifier :: DBShardGroup -> Value Text
dBShardGroupIdentifier :: DBShardGroup -> Maybe (Value Text)
maxACU :: DBShardGroup -> Value Double
minACU :: DBShardGroup -> Maybe (Value Double)
publiclyAccessible :: DBShardGroup -> Maybe (Value Bool)
tags :: DBShardGroup -> Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
    = DBShardGroup {publiclyAccessible :: Maybe (Value Bool)
publiclyAccessible = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PubliclyAccessible" DBShardGroup
Value Bool
newValue, Maybe [Tag]
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
tags :: Maybe [Tag]
..}
instance Property "Tags" DBShardGroup where
  type PropertyType "Tags" DBShardGroup = [Tag]
  set :: PropertyType "Tags" DBShardGroup -> DBShardGroup -> DBShardGroup
set PropertyType "Tags" DBShardGroup
newValue DBShardGroup {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: DBShardGroup -> ()
computeRedundancy :: DBShardGroup -> Maybe (Value Integer)
dBClusterIdentifier :: DBShardGroup -> Value Text
dBShardGroupIdentifier :: DBShardGroup -> Maybe (Value Text)
maxACU :: DBShardGroup -> Value Double
minACU :: DBShardGroup -> Maybe (Value Double)
publiclyAccessible :: DBShardGroup -> Maybe (Value Bool)
tags :: DBShardGroup -> Maybe [Tag]
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
    = DBShardGroup {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" DBShardGroup
newValue, Maybe (Value Bool)
Maybe (Value Double)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
haddock_workaround_ :: ()
computeRedundancy :: Maybe (Value Integer)
dBClusterIdentifier :: Value Text
dBShardGroupIdentifier :: Maybe (Value Text)
maxACU :: Value Double
minACU :: Maybe (Value Double)
publiclyAccessible :: Maybe (Value Bool)
..}