module Stratosphere.RDS.DBProxyTargetGroup.ConnectionPoolConfigurationInfoFormatProperty (
ConnectionPoolConfigurationInfoFormatProperty(..),
mkConnectionPoolConfigurationInfoFormatProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ConnectionPoolConfigurationInfoFormatProperty
=
ConnectionPoolConfigurationInfoFormatProperty {ConnectionPoolConfigurationInfoFormatProperty -> ()
haddock_workaround_ :: (),
ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
connectionBorrowTimeout :: (Prelude.Maybe (Value Prelude.Integer)),
ConnectionPoolConfigurationInfoFormatProperty -> Maybe (Value Text)
initQuery :: (Prelude.Maybe (Value Prelude.Text)),
ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
maxConnectionsPercent :: (Prelude.Maybe (Value Prelude.Integer)),
ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
maxIdleConnectionsPercent :: (Prelude.Maybe (Value Prelude.Integer)),
ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (ValueList Text)
sessionPinningFilters :: (Prelude.Maybe (ValueList Prelude.Text))}
deriving stock (ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty -> Bool
(ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty -> Bool)
-> (ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty -> Bool)
-> Eq ConnectionPoolConfigurationInfoFormatProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty -> Bool
== :: ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty -> Bool
$c/= :: ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty -> Bool
/= :: ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty -> Bool
Prelude.Eq, Int -> ConnectionPoolConfigurationInfoFormatProperty -> ShowS
[ConnectionPoolConfigurationInfoFormatProperty] -> ShowS
ConnectionPoolConfigurationInfoFormatProperty -> String
(Int -> ConnectionPoolConfigurationInfoFormatProperty -> ShowS)
-> (ConnectionPoolConfigurationInfoFormatProperty -> String)
-> ([ConnectionPoolConfigurationInfoFormatProperty] -> ShowS)
-> Show ConnectionPoolConfigurationInfoFormatProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ConnectionPoolConfigurationInfoFormatProperty -> ShowS
showsPrec :: Int -> ConnectionPoolConfigurationInfoFormatProperty -> ShowS
$cshow :: ConnectionPoolConfigurationInfoFormatProperty -> String
show :: ConnectionPoolConfigurationInfoFormatProperty -> String
$cshowList :: [ConnectionPoolConfigurationInfoFormatProperty] -> ShowS
showList :: [ConnectionPoolConfigurationInfoFormatProperty] -> ShowS
Prelude.Show)
mkConnectionPoolConfigurationInfoFormatProperty ::
ConnectionPoolConfigurationInfoFormatProperty
mkConnectionPoolConfigurationInfoFormatProperty :: ConnectionPoolConfigurationInfoFormatProperty
mkConnectionPoolConfigurationInfoFormatProperty
= ConnectionPoolConfigurationInfoFormatProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (),
connectionBorrowTimeout :: Maybe (Value Integer)
connectionBorrowTimeout = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
initQuery :: Maybe (Value Text)
initQuery = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
maxConnectionsPercent :: Maybe (Value Integer)
maxConnectionsPercent = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
maxIdleConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
sessionPinningFilters :: Maybe (ValueList Text)
sessionPinningFilters = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ConnectionPoolConfigurationInfoFormatProperty where
toResourceProperties :: ConnectionPoolConfigurationInfoFormatProperty -> ResourceProperties
toResourceProperties
ConnectionPoolConfigurationInfoFormatProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ConnectionPoolConfigurationInfoFormatProperty -> ()
connectionBorrowTimeout :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
initQuery :: ConnectionPoolConfigurationInfoFormatProperty -> Maybe (Value Text)
maxConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
maxIdleConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
sessionPinningFilters :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::RDS::DBProxyTargetGroup.ConnectionPoolConfigurationInfoFormat",
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
"ConnectionBorrowTimeout"
(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)
connectionBorrowTimeout,
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
"InitQuery" (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)
initQuery,
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
"MaxConnectionsPercent"
(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)
maxConnectionsPercent,
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
"MaxIdleConnectionsPercent"
(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)
maxIdleConnectionsPercent,
Key -> ValueList 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
"SessionPinningFilters"
(ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
sessionPinningFilters])}
instance JSON.ToJSON ConnectionPoolConfigurationInfoFormatProperty where
toJSON :: ConnectionPoolConfigurationInfoFormatProperty -> Value
toJSON ConnectionPoolConfigurationInfoFormatProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ConnectionPoolConfigurationInfoFormatProperty -> ()
connectionBorrowTimeout :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
initQuery :: ConnectionPoolConfigurationInfoFormatProperty -> Maybe (Value Text)
maxConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
maxIdleConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
sessionPinningFilters :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList 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 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
"ConnectionBorrowTimeout"
(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)
connectionBorrowTimeout,
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
"InitQuery" (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)
initQuery,
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
"MaxConnectionsPercent"
(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)
maxConnectionsPercent,
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
"MaxIdleConnectionsPercent"
(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)
maxIdleConnectionsPercent,
Key -> ValueList 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
"SessionPinningFilters"
(ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
sessionPinningFilters]))
instance Property "ConnectionBorrowTimeout" ConnectionPoolConfigurationInfoFormatProperty where
type PropertyType "ConnectionBorrowTimeout" ConnectionPoolConfigurationInfoFormatProperty = Value Prelude.Integer
set :: PropertyType
"ConnectionBorrowTimeout"
ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
set PropertyType
"ConnectionBorrowTimeout"
ConnectionPoolConfigurationInfoFormatProperty
newValue ConnectionPoolConfigurationInfoFormatProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ConnectionPoolConfigurationInfoFormatProperty -> ()
connectionBorrowTimeout :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
initQuery :: ConnectionPoolConfigurationInfoFormatProperty -> Maybe (Value Text)
maxConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
maxIdleConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
sessionPinningFilters :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
= ConnectionPoolConfigurationInfoFormatProperty
{connectionBorrowTimeout :: Maybe (Value Integer)
connectionBorrowTimeout = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"ConnectionBorrowTimeout"
ConnectionPoolConfigurationInfoFormatProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
haddock_workaround_ :: ()
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
instance Property "InitQuery" ConnectionPoolConfigurationInfoFormatProperty where
type PropertyType "InitQuery" ConnectionPoolConfigurationInfoFormatProperty = Value Prelude.Text
set :: PropertyType
"InitQuery" ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
set PropertyType
"InitQuery" ConnectionPoolConfigurationInfoFormatProperty
newValue ConnectionPoolConfigurationInfoFormatProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ConnectionPoolConfigurationInfoFormatProperty -> ()
connectionBorrowTimeout :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
initQuery :: ConnectionPoolConfigurationInfoFormatProperty -> Maybe (Value Text)
maxConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
maxIdleConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
sessionPinningFilters :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
= ConnectionPoolConfigurationInfoFormatProperty
{initQuery :: Maybe (Value Text)
initQuery = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"InitQuery" ConnectionPoolConfigurationInfoFormatProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
()
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
instance Property "MaxConnectionsPercent" ConnectionPoolConfigurationInfoFormatProperty where
type PropertyType "MaxConnectionsPercent" ConnectionPoolConfigurationInfoFormatProperty = Value Prelude.Integer
set :: PropertyType
"MaxConnectionsPercent"
ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
set PropertyType
"MaxConnectionsPercent"
ConnectionPoolConfigurationInfoFormatProperty
newValue ConnectionPoolConfigurationInfoFormatProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ConnectionPoolConfigurationInfoFormatProperty -> ()
connectionBorrowTimeout :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
initQuery :: ConnectionPoolConfigurationInfoFormatProperty -> Maybe (Value Text)
maxConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
maxIdleConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
sessionPinningFilters :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
= ConnectionPoolConfigurationInfoFormatProperty
{maxConnectionsPercent :: Maybe (Value Integer)
maxConnectionsPercent = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"MaxConnectionsPercent"
ConnectionPoolConfigurationInfoFormatProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
instance Property "MaxIdleConnectionsPercent" ConnectionPoolConfigurationInfoFormatProperty where
type PropertyType "MaxIdleConnectionsPercent" ConnectionPoolConfigurationInfoFormatProperty = Value Prelude.Integer
set :: PropertyType
"MaxIdleConnectionsPercent"
ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
set PropertyType
"MaxIdleConnectionsPercent"
ConnectionPoolConfigurationInfoFormatProperty
newValue ConnectionPoolConfigurationInfoFormatProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ConnectionPoolConfigurationInfoFormatProperty -> ()
connectionBorrowTimeout :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
initQuery :: ConnectionPoolConfigurationInfoFormatProperty -> Maybe (Value Text)
maxConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
maxIdleConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
sessionPinningFilters :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
= ConnectionPoolConfigurationInfoFormatProperty
{maxIdleConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"MaxIdleConnectionsPercent"
ConnectionPoolConfigurationInfoFormatProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
instance Property "SessionPinningFilters" ConnectionPoolConfigurationInfoFormatProperty where
type PropertyType "SessionPinningFilters" ConnectionPoolConfigurationInfoFormatProperty = ValueList Prelude.Text
set :: PropertyType
"SessionPinningFilters"
ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
-> ConnectionPoolConfigurationInfoFormatProperty
set PropertyType
"SessionPinningFilters"
ConnectionPoolConfigurationInfoFormatProperty
newValue ConnectionPoolConfigurationInfoFormatProperty {Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ConnectionPoolConfigurationInfoFormatProperty -> ()
connectionBorrowTimeout :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
initQuery :: ConnectionPoolConfigurationInfoFormatProperty -> Maybe (Value Text)
maxConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
maxIdleConnectionsPercent :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (Value Integer)
sessionPinningFilters :: ConnectionPoolConfigurationInfoFormatProperty
-> Maybe (ValueList Text)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
sessionPinningFilters :: Maybe (ValueList Text)
..}
= ConnectionPoolConfigurationInfoFormatProperty
{sessionPinningFilters :: Maybe (ValueList Text)
sessionPinningFilters = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"SessionPinningFilters"
ConnectionPoolConfigurationInfoFormatProperty
ValueList Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
haddock_workaround_ :: ()
connectionBorrowTimeout :: Maybe (Value Integer)
initQuery :: Maybe (Value Text)
maxConnectionsPercent :: Maybe (Value Integer)
maxIdleConnectionsPercent :: Maybe (Value Integer)
..}