module Stratosphere.AppRunner.Service.HealthCheckConfigurationProperty (
HealthCheckConfigurationProperty(..),
mkHealthCheckConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data HealthCheckConfigurationProperty
=
HealthCheckConfigurationProperty {HealthCheckConfigurationProperty -> ()
haddock_workaround_ :: (),
HealthCheckConfigurationProperty -> Maybe (Value Integer)
healthyThreshold :: (Prelude.Maybe (Value Prelude.Integer)),
HealthCheckConfigurationProperty -> Maybe (Value Integer)
interval :: (Prelude.Maybe (Value Prelude.Integer)),
HealthCheckConfigurationProperty -> Maybe (Value Text)
path :: (Prelude.Maybe (Value Prelude.Text)),
HealthCheckConfigurationProperty -> Maybe (Value Text)
protocol :: (Prelude.Maybe (Value Prelude.Text)),
HealthCheckConfigurationProperty -> Maybe (Value Integer)
timeout :: (Prelude.Maybe (Value Prelude.Integer)),
HealthCheckConfigurationProperty -> Maybe (Value Integer)
unhealthyThreshold :: (Prelude.Maybe (Value Prelude.Integer))}
deriving stock (HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty -> Bool
(HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty -> Bool)
-> (HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty -> Bool)
-> Eq HealthCheckConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty -> Bool
== :: HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty -> Bool
$c/= :: HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty -> Bool
/= :: HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty -> Bool
Prelude.Eq, Int -> HealthCheckConfigurationProperty -> ShowS
[HealthCheckConfigurationProperty] -> ShowS
HealthCheckConfigurationProperty -> String
(Int -> HealthCheckConfigurationProperty -> ShowS)
-> (HealthCheckConfigurationProperty -> String)
-> ([HealthCheckConfigurationProperty] -> ShowS)
-> Show HealthCheckConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> HealthCheckConfigurationProperty -> ShowS
showsPrec :: Int -> HealthCheckConfigurationProperty -> ShowS
$cshow :: HealthCheckConfigurationProperty -> String
show :: HealthCheckConfigurationProperty -> String
$cshowList :: [HealthCheckConfigurationProperty] -> ShowS
showList :: [HealthCheckConfigurationProperty] -> ShowS
Prelude.Show)
mkHealthCheckConfigurationProperty ::
HealthCheckConfigurationProperty
mkHealthCheckConfigurationProperty :: HealthCheckConfigurationProperty
mkHealthCheckConfigurationProperty
= HealthCheckConfigurationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), healthyThreshold :: Maybe (Value Integer)
healthyThreshold = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
interval :: Maybe (Value Integer)
interval = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, path :: Maybe (Value Text)
path = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
protocol :: Maybe (Value Text)
protocol = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, timeout :: Maybe (Value Integer)
timeout = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
unhealthyThreshold :: Maybe (Value Integer)
unhealthyThreshold = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties HealthCheckConfigurationProperty where
toResourceProperties :: HealthCheckConfigurationProperty -> ResourceProperties
toResourceProperties HealthCheckConfigurationProperty {Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: HealthCheckConfigurationProperty -> ()
healthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
interval :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
path :: HealthCheckConfigurationProperty -> Maybe (Value Text)
protocol :: HealthCheckConfigurationProperty -> Maybe (Value Text)
timeout :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
unhealthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::AppRunner::Service.HealthCheckConfiguration",
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 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
"HealthyThreshold" (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)
healthyThreshold,
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
"Interval" (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)
interval,
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
"Path" (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)
path,
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
"Protocol" (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)
protocol,
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
"Timeout" (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)
timeout,
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
"UnhealthyThreshold" (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)
unhealthyThreshold])}
instance JSON.ToJSON HealthCheckConfigurationProperty where
toJSON :: HealthCheckConfigurationProperty -> Value
toJSON HealthCheckConfigurationProperty {Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: HealthCheckConfigurationProperty -> ()
healthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
interval :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
path :: HealthCheckConfigurationProperty -> Maybe (Value Text)
protocol :: HealthCheckConfigurationProperty -> Maybe (Value Text)
timeout :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
unhealthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
= [(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 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
"HealthyThreshold" (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)
healthyThreshold,
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
"Interval" (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)
interval,
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
"Path" (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)
path,
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
"Protocol" (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)
protocol,
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
"Timeout" (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)
timeout,
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
"UnhealthyThreshold" (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)
unhealthyThreshold]))
instance Property "HealthyThreshold" HealthCheckConfigurationProperty where
type PropertyType "HealthyThreshold" HealthCheckConfigurationProperty = Value Prelude.Integer
set :: PropertyType "HealthyThreshold" HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
set PropertyType "HealthyThreshold" HealthCheckConfigurationProperty
newValue HealthCheckConfigurationProperty {Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: HealthCheckConfigurationProperty -> ()
healthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
interval :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
path :: HealthCheckConfigurationProperty -> Maybe (Value Text)
protocol :: HealthCheckConfigurationProperty -> Maybe (Value Text)
timeout :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
unhealthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
= HealthCheckConfigurationProperty
{healthyThreshold :: Maybe (Value Integer)
healthyThreshold = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthyThreshold" HealthCheckConfigurationProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
haddock_workaround_ :: ()
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
instance Property "Interval" HealthCheckConfigurationProperty where
type PropertyType "Interval" HealthCheckConfigurationProperty = Value Prelude.Integer
set :: PropertyType "Interval" HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
set PropertyType "Interval" HealthCheckConfigurationProperty
newValue HealthCheckConfigurationProperty {Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: HealthCheckConfigurationProperty -> ()
healthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
interval :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
path :: HealthCheckConfigurationProperty -> Maybe (Value Text)
protocol :: HealthCheckConfigurationProperty -> Maybe (Value Text)
timeout :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
unhealthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
= HealthCheckConfigurationProperty
{interval :: Maybe (Value Integer)
interval = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Interval" HealthCheckConfigurationProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
instance Property "Path" HealthCheckConfigurationProperty where
type PropertyType "Path" HealthCheckConfigurationProperty = Value Prelude.Text
set :: PropertyType "Path" HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
set PropertyType "Path" HealthCheckConfigurationProperty
newValue HealthCheckConfigurationProperty {Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: HealthCheckConfigurationProperty -> ()
healthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
interval :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
path :: HealthCheckConfigurationProperty -> Maybe (Value Text)
protocol :: HealthCheckConfigurationProperty -> Maybe (Value Text)
timeout :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
unhealthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
= HealthCheckConfigurationProperty
{path :: Maybe (Value Text)
path = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Path" HealthCheckConfigurationProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
instance Property "Protocol" HealthCheckConfigurationProperty where
type PropertyType "Protocol" HealthCheckConfigurationProperty = Value Prelude.Text
set :: PropertyType "Protocol" HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
set PropertyType "Protocol" HealthCheckConfigurationProperty
newValue HealthCheckConfigurationProperty {Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: HealthCheckConfigurationProperty -> ()
healthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
interval :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
path :: HealthCheckConfigurationProperty -> Maybe (Value Text)
protocol :: HealthCheckConfigurationProperty -> Maybe (Value Text)
timeout :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
unhealthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
= HealthCheckConfigurationProperty
{protocol :: Maybe (Value Text)
protocol = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Protocol" HealthCheckConfigurationProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
instance Property "Timeout" HealthCheckConfigurationProperty where
type PropertyType "Timeout" HealthCheckConfigurationProperty = Value Prelude.Integer
set :: PropertyType "Timeout" HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
set PropertyType "Timeout" HealthCheckConfigurationProperty
newValue HealthCheckConfigurationProperty {Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: HealthCheckConfigurationProperty -> ()
healthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
interval :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
path :: HealthCheckConfigurationProperty -> Maybe (Value Text)
protocol :: HealthCheckConfigurationProperty -> Maybe (Value Text)
timeout :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
unhealthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
= HealthCheckConfigurationProperty
{timeout :: Maybe (Value Integer)
timeout = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Timeout" HealthCheckConfigurationProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
unhealthyThreshold :: Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
unhealthyThreshold :: Maybe (Value Integer)
..}
instance Property "UnhealthyThreshold" HealthCheckConfigurationProperty where
type PropertyType "UnhealthyThreshold" HealthCheckConfigurationProperty = Value Prelude.Integer
set :: PropertyType "UnhealthyThreshold" HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
-> HealthCheckConfigurationProperty
set PropertyType "UnhealthyThreshold" HealthCheckConfigurationProperty
newValue HealthCheckConfigurationProperty {Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: HealthCheckConfigurationProperty -> ()
healthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
interval :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
path :: HealthCheckConfigurationProperty -> Maybe (Value Text)
protocol :: HealthCheckConfigurationProperty -> Maybe (Value Text)
timeout :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
unhealthyThreshold :: HealthCheckConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
unhealthyThreshold :: Maybe (Value Integer)
..}
= HealthCheckConfigurationProperty
{unhealthyThreshold :: Maybe (Value Integer)
unhealthyThreshold = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UnhealthyThreshold" HealthCheckConfigurationProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
haddock_workaround_ :: ()
healthyThreshold :: Maybe (Value Integer)
interval :: Maybe (Value Integer)
path :: Maybe (Value Text)
protocol :: Maybe (Value Text)
timeout :: Maybe (Value Integer)
..}