module Stratosphere.AppSync.ApiCache (
ApiCache(..), mkApiCache
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ApiCache
=
ApiCache {ApiCache -> ()
haddock_workaround_ :: (),
ApiCache -> Value Text
apiCachingBehavior :: (Value Prelude.Text),
ApiCache -> Value Text
apiId :: (Value Prelude.Text),
ApiCache -> Maybe (Value Bool)
atRestEncryptionEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
ApiCache -> Maybe (Value Text)
healthMetricsConfig :: (Prelude.Maybe (Value Prelude.Text)),
ApiCache -> Maybe (Value Bool)
transitEncryptionEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
ApiCache -> Value Double
ttl :: (Value Prelude.Double),
ApiCache -> Value Text
type' :: (Value Prelude.Text)}
deriving stock (ApiCache -> ApiCache -> Bool
(ApiCache -> ApiCache -> Bool)
-> (ApiCache -> ApiCache -> Bool) -> Eq ApiCache
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ApiCache -> ApiCache -> Bool
== :: ApiCache -> ApiCache -> Bool
$c/= :: ApiCache -> ApiCache -> Bool
/= :: ApiCache -> ApiCache -> Bool
Prelude.Eq, Int -> ApiCache -> ShowS
[ApiCache] -> ShowS
ApiCache -> String
(Int -> ApiCache -> ShowS)
-> (ApiCache -> String) -> ([ApiCache] -> ShowS) -> Show ApiCache
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ApiCache -> ShowS
showsPrec :: Int -> ApiCache -> ShowS
$cshow :: ApiCache -> String
show :: ApiCache -> String
$cshowList :: [ApiCache] -> ShowS
showList :: [ApiCache] -> ShowS
Prelude.Show)
mkApiCache ::
Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Double -> Value Prelude.Text -> ApiCache
mkApiCache :: Value Text -> Value Text -> Value Double -> Value Text -> ApiCache
mkApiCache Value Text
apiCachingBehavior Value Text
apiId Value Double
ttl Value Text
type'
= ApiCache
{haddock_workaround_ :: ()
haddock_workaround_ = (), apiCachingBehavior :: Value Text
apiCachingBehavior = Value Text
apiCachingBehavior,
apiId :: Value Text
apiId = Value Text
apiId, ttl :: Value Double
ttl = Value Double
ttl, type' :: Value Text
type' = Value Text
type',
atRestEncryptionEnabled :: Maybe (Value Bool)
atRestEncryptionEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
healthMetricsConfig :: Maybe (Value Text)
healthMetricsConfig = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
transitEncryptionEnabled :: Maybe (Value Bool)
transitEncryptionEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ApiCache where
toResourceProperties :: ApiCache -> ResourceProperties
toResourceProperties ApiCache {Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ApiCache -> ()
apiCachingBehavior :: ApiCache -> Value Text
apiId :: ApiCache -> Value Text
atRestEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
healthMetricsConfig :: ApiCache -> Maybe (Value Text)
transitEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
ttl :: ApiCache -> Value Double
type' :: ApiCache -> Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::AppSync::ApiCache", 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
"ApiCachingBehavior" 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
apiCachingBehavior,
Key
"ApiId" 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
apiId, Key
"Ttl" 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
ttl, Key
"Type" 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
type']
([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
"AtRestEncryptionEnabled"
(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)
atRestEncryptionEnabled,
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
"HealthMetricsConfig" (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)
healthMetricsConfig,
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
"TransitEncryptionEnabled"
(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)
transitEncryptionEnabled]))}
instance JSON.ToJSON ApiCache where
toJSON :: ApiCache -> Value
toJSON ApiCache {Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ApiCache -> ()
apiCachingBehavior :: ApiCache -> Value Text
apiId :: ApiCache -> Value Text
atRestEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
healthMetricsConfig :: ApiCache -> Maybe (Value Text)
transitEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
ttl :: ApiCache -> Value Double
type' :: ApiCache -> Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: 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
"ApiCachingBehavior" 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
apiCachingBehavior,
Key
"ApiId" 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
apiId, Key
"Ttl" 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
ttl, Key
"Type" 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
type']
([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
"AtRestEncryptionEnabled"
(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)
atRestEncryptionEnabled,
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
"HealthMetricsConfig" (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)
healthMetricsConfig,
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
"TransitEncryptionEnabled"
(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)
transitEncryptionEnabled])))
instance Property "ApiCachingBehavior" ApiCache where
type PropertyType "ApiCachingBehavior" ApiCache = Value Prelude.Text
set :: PropertyType "ApiCachingBehavior" ApiCache -> ApiCache -> ApiCache
set PropertyType "ApiCachingBehavior" ApiCache
newValue ApiCache {Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ApiCache -> ()
apiCachingBehavior :: ApiCache -> Value Text
apiId :: ApiCache -> Value Text
atRestEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
healthMetricsConfig :: ApiCache -> Maybe (Value Text)
transitEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
ttl :: ApiCache -> Value Double
type' :: ApiCache -> Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..}
= ApiCache {apiCachingBehavior :: Value Text
apiCachingBehavior = PropertyType "ApiCachingBehavior" ApiCache
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ()
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
haddock_workaround_ :: ()
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..}
instance Property "ApiId" ApiCache where
type PropertyType "ApiId" ApiCache = Value Prelude.Text
set :: PropertyType "ApiId" ApiCache -> ApiCache -> ApiCache
set PropertyType "ApiId" ApiCache
newValue ApiCache {Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ApiCache -> ()
apiCachingBehavior :: ApiCache -> Value Text
apiId :: ApiCache -> Value Text
atRestEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
healthMetricsConfig :: ApiCache -> Maybe (Value Text)
transitEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
ttl :: ApiCache -> Value Double
type' :: ApiCache -> Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..} = ApiCache {apiId :: Value Text
apiId = PropertyType "ApiId" ApiCache
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..}
instance Property "AtRestEncryptionEnabled" ApiCache where
type PropertyType "AtRestEncryptionEnabled" ApiCache = Value Prelude.Bool
set :: PropertyType "AtRestEncryptionEnabled" ApiCache
-> ApiCache -> ApiCache
set PropertyType "AtRestEncryptionEnabled" ApiCache
newValue ApiCache {Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ApiCache -> ()
apiCachingBehavior :: ApiCache -> Value Text
apiId :: ApiCache -> Value Text
atRestEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
healthMetricsConfig :: ApiCache -> Maybe (Value Text)
transitEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
ttl :: ApiCache -> Value Double
type' :: ApiCache -> Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..}
= ApiCache {atRestEncryptionEnabled :: Maybe (Value Bool)
atRestEncryptionEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AtRestEncryptionEnabled" ApiCache
Value Bool
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..}
instance Property "HealthMetricsConfig" ApiCache where
type PropertyType "HealthMetricsConfig" ApiCache = Value Prelude.Text
set :: PropertyType "HealthMetricsConfig" ApiCache -> ApiCache -> ApiCache
set PropertyType "HealthMetricsConfig" ApiCache
newValue ApiCache {Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ApiCache -> ()
apiCachingBehavior :: ApiCache -> Value Text
apiId :: ApiCache -> Value Text
atRestEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
healthMetricsConfig :: ApiCache -> Maybe (Value Text)
transitEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
ttl :: ApiCache -> Value Double
type' :: ApiCache -> Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..}
= ApiCache {healthMetricsConfig :: Maybe (Value Text)
healthMetricsConfig = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthMetricsConfig" ApiCache
Value Text
newValue, Maybe (Value Bool)
()
Value Double
Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..}
instance Property "TransitEncryptionEnabled" ApiCache where
type PropertyType "TransitEncryptionEnabled" ApiCache = Value Prelude.Bool
set :: PropertyType "TransitEncryptionEnabled" ApiCache
-> ApiCache -> ApiCache
set PropertyType "TransitEncryptionEnabled" ApiCache
newValue ApiCache {Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ApiCache -> ()
apiCachingBehavior :: ApiCache -> Value Text
apiId :: ApiCache -> Value Text
atRestEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
healthMetricsConfig :: ApiCache -> Maybe (Value Text)
transitEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
ttl :: ApiCache -> Value Double
type' :: ApiCache -> Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..}
= ApiCache {transitEncryptionEnabled :: Maybe (Value Bool)
transitEncryptionEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TransitEncryptionEnabled" ApiCache
Value Bool
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
ttl :: Value Double
type' :: Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
ttl :: Value Double
type' :: Value Text
..}
instance Property "Ttl" ApiCache where
type PropertyType "Ttl" ApiCache = Value Prelude.Double
set :: PropertyType "Ttl" ApiCache -> ApiCache -> ApiCache
set PropertyType "Ttl" ApiCache
newValue ApiCache {Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ApiCache -> ()
apiCachingBehavior :: ApiCache -> Value Text
apiId :: ApiCache -> Value Text
atRestEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
healthMetricsConfig :: ApiCache -> Maybe (Value Text)
transitEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
ttl :: ApiCache -> Value Double
type' :: ApiCache -> Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..} = ApiCache {ttl :: Value Double
ttl = PropertyType "Ttl" ApiCache
Value Double
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
type' :: Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
type' :: Value Text
..}
instance Property "Type" ApiCache where
type PropertyType "Type" ApiCache = Value Prelude.Text
set :: PropertyType "Type" ApiCache -> ApiCache -> ApiCache
set PropertyType "Type" ApiCache
newValue ApiCache {Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ApiCache -> ()
apiCachingBehavior :: ApiCache -> Value Text
apiId :: ApiCache -> Value Text
atRestEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
healthMetricsConfig :: ApiCache -> Maybe (Value Text)
transitEncryptionEnabled :: ApiCache -> Maybe (Value Bool)
ttl :: ApiCache -> Value Double
type' :: ApiCache -> Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
type' :: Value Text
..} = ApiCache {type' :: Value Text
type' = PropertyType "Type" ApiCache
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
Value Double
Value Text
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
haddock_workaround_ :: ()
apiCachingBehavior :: Value Text
apiId :: Value Text
atRestEncryptionEnabled :: Maybe (Value Bool)
healthMetricsConfig :: Maybe (Value Text)
transitEncryptionEnabled :: Maybe (Value Bool)
ttl :: Value Double
..}