module Stratosphere.APS.AnomalyDetector.RandomCutForestConfigurationProperty (
module Exports, RandomCutForestConfigurationProperty(..),
mkRandomCutForestConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.APS.AnomalyDetector.IgnoreNearExpectedProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data RandomCutForestConfigurationProperty
=
RandomCutForestConfigurationProperty {RandomCutForestConfigurationProperty -> ()
haddock_workaround_ :: (),
RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromAbove :: (Prelude.Maybe IgnoreNearExpectedProperty),
RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: (Prelude.Maybe IgnoreNearExpectedProperty),
RandomCutForestConfigurationProperty -> Value Text
query :: (Value Prelude.Text),
RandomCutForestConfigurationProperty -> Maybe (Value Integer)
sampleSize :: (Prelude.Maybe (Value Prelude.Integer)),
RandomCutForestConfigurationProperty -> Maybe (Value Integer)
shingleSize :: (Prelude.Maybe (Value Prelude.Integer))}
deriving stock (RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty -> Bool
(RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty -> Bool)
-> (RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty -> Bool)
-> Eq RandomCutForestConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty -> Bool
== :: RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty -> Bool
$c/= :: RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty -> Bool
/= :: RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty -> Bool
Prelude.Eq, Int -> RandomCutForestConfigurationProperty -> ShowS
[RandomCutForestConfigurationProperty] -> ShowS
RandomCutForestConfigurationProperty -> String
(Int -> RandomCutForestConfigurationProperty -> ShowS)
-> (RandomCutForestConfigurationProperty -> String)
-> ([RandomCutForestConfigurationProperty] -> ShowS)
-> Show RandomCutForestConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> RandomCutForestConfigurationProperty -> ShowS
showsPrec :: Int -> RandomCutForestConfigurationProperty -> ShowS
$cshow :: RandomCutForestConfigurationProperty -> String
show :: RandomCutForestConfigurationProperty -> String
$cshowList :: [RandomCutForestConfigurationProperty] -> ShowS
showList :: [RandomCutForestConfigurationProperty] -> ShowS
Prelude.Show)
mkRandomCutForestConfigurationProperty ::
Value Prelude.Text -> RandomCutForestConfigurationProperty
mkRandomCutForestConfigurationProperty :: Value Text -> RandomCutForestConfigurationProperty
mkRandomCutForestConfigurationProperty Value Text
query
= RandomCutForestConfigurationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), query :: Value Text
query = Value Text
query,
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromAbove = Maybe IgnoreNearExpectedProperty
forall a. Maybe a
Prelude.Nothing,
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow = Maybe IgnoreNearExpectedProperty
forall a. Maybe a
Prelude.Nothing,
sampleSize :: Maybe (Value Integer)
sampleSize = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, shingleSize :: Maybe (Value Integer)
shingleSize = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties RandomCutForestConfigurationProperty where
toResourceProperties :: RandomCutForestConfigurationProperty -> ResourceProperties
toResourceProperties RandomCutForestConfigurationProperty {Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: RandomCutForestConfigurationProperty -> ()
ignoreNearExpectedFromAbove :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
query :: RandomCutForestConfigurationProperty -> Value Text
sampleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
shingleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::APS::AnomalyDetector.RandomCutForestConfiguration",
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
"Query" 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
query]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> IgnoreNearExpectedProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IgnoreNearExpectedFromAbove"
(IgnoreNearExpectedProperty -> (Key, Value))
-> Maybe IgnoreNearExpectedProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromAbove,
Key -> IgnoreNearExpectedProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IgnoreNearExpectedFromBelow"
(IgnoreNearExpectedProperty -> (Key, Value))
-> Maybe IgnoreNearExpectedProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow,
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
"SampleSize" (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)
sampleSize,
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
"ShingleSize" (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)
shingleSize]))}
instance JSON.ToJSON RandomCutForestConfigurationProperty where
toJSON :: RandomCutForestConfigurationProperty -> Value
toJSON RandomCutForestConfigurationProperty {Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: RandomCutForestConfigurationProperty -> ()
ignoreNearExpectedFromAbove :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
query :: RandomCutForestConfigurationProperty -> Value Text
sampleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
shingleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
= [(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
"Query" 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
query]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> IgnoreNearExpectedProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IgnoreNearExpectedFromAbove"
(IgnoreNearExpectedProperty -> (Key, Value))
-> Maybe IgnoreNearExpectedProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromAbove,
Key -> IgnoreNearExpectedProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IgnoreNearExpectedFromBelow"
(IgnoreNearExpectedProperty -> (Key, Value))
-> Maybe IgnoreNearExpectedProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow,
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
"SampleSize" (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)
sampleSize,
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
"ShingleSize" (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)
shingleSize])))
instance Property "IgnoreNearExpectedFromAbove" RandomCutForestConfigurationProperty where
type PropertyType "IgnoreNearExpectedFromAbove" RandomCutForestConfigurationProperty = IgnoreNearExpectedProperty
set :: PropertyType
"IgnoreNearExpectedFromAbove" RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
set PropertyType
"IgnoreNearExpectedFromAbove" RandomCutForestConfigurationProperty
newValue RandomCutForestConfigurationProperty {Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: RandomCutForestConfigurationProperty -> ()
ignoreNearExpectedFromAbove :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
query :: RandomCutForestConfigurationProperty -> Value Text
sampleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
shingleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
= RandomCutForestConfigurationProperty
{ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromAbove = IgnoreNearExpectedProperty -> Maybe IgnoreNearExpectedProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"IgnoreNearExpectedFromAbove" RandomCutForestConfigurationProperty
IgnoreNearExpectedProperty
newValue, Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: ()
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
instance Property "IgnoreNearExpectedFromBelow" RandomCutForestConfigurationProperty where
type PropertyType "IgnoreNearExpectedFromBelow" RandomCutForestConfigurationProperty = IgnoreNearExpectedProperty
set :: PropertyType
"IgnoreNearExpectedFromBelow" RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
set PropertyType
"IgnoreNearExpectedFromBelow" RandomCutForestConfigurationProperty
newValue RandomCutForestConfigurationProperty {Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: RandomCutForestConfigurationProperty -> ()
ignoreNearExpectedFromAbove :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
query :: RandomCutForestConfigurationProperty -> Value Text
sampleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
shingleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
= RandomCutForestConfigurationProperty
{ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow = IgnoreNearExpectedProperty -> Maybe IgnoreNearExpectedProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"IgnoreNearExpectedFromBelow" RandomCutForestConfigurationProperty
IgnoreNearExpectedProperty
newValue, Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
instance Property "Query" RandomCutForestConfigurationProperty where
type PropertyType "Query" RandomCutForestConfigurationProperty = Value Prelude.Text
set :: PropertyType "Query" RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
set PropertyType "Query" RandomCutForestConfigurationProperty
newValue RandomCutForestConfigurationProperty {Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: RandomCutForestConfigurationProperty -> ()
ignoreNearExpectedFromAbove :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
query :: RandomCutForestConfigurationProperty -> Value Text
sampleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
shingleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
= RandomCutForestConfigurationProperty {query :: Value Text
query = PropertyType "Query" RandomCutForestConfigurationProperty
Value Text
newValue, Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
instance Property "SampleSize" RandomCutForestConfigurationProperty where
type PropertyType "SampleSize" RandomCutForestConfigurationProperty = Value Prelude.Integer
set :: PropertyType "SampleSize" RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
set PropertyType "SampleSize" RandomCutForestConfigurationProperty
newValue RandomCutForestConfigurationProperty {Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: RandomCutForestConfigurationProperty -> ()
ignoreNearExpectedFromAbove :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
query :: RandomCutForestConfigurationProperty -> Value Text
sampleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
shingleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
= RandomCutForestConfigurationProperty
{sampleSize :: Maybe (Value Integer)
sampleSize = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SampleSize" RandomCutForestConfigurationProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
shingleSize :: Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
shingleSize :: Maybe (Value Integer)
..}
instance Property "ShingleSize" RandomCutForestConfigurationProperty where
type PropertyType "ShingleSize" RandomCutForestConfigurationProperty = Value Prelude.Integer
set :: PropertyType "ShingleSize" RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
-> RandomCutForestConfigurationProperty
set PropertyType "ShingleSize" RandomCutForestConfigurationProperty
newValue RandomCutForestConfigurationProperty {Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: RandomCutForestConfigurationProperty -> ()
ignoreNearExpectedFromAbove :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: RandomCutForestConfigurationProperty
-> Maybe IgnoreNearExpectedProperty
query :: RandomCutForestConfigurationProperty -> Value Text
sampleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
shingleSize :: RandomCutForestConfigurationProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
shingleSize :: Maybe (Value Integer)
..}
= RandomCutForestConfigurationProperty
{shingleSize :: Maybe (Value Integer)
shingleSize = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ShingleSize" RandomCutForestConfigurationProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe IgnoreNearExpectedProperty
()
Value Text
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
haddock_workaround_ :: ()
ignoreNearExpectedFromAbove :: Maybe IgnoreNearExpectedProperty
ignoreNearExpectedFromBelow :: Maybe IgnoreNearExpectedProperty
query :: Value Text
sampleSize :: Maybe (Value Integer)
..}