module Stratosphere.QuickSight.Analysis.TopBottomFilterProperty (
module Exports, TopBottomFilterProperty(..),
mkTopBottomFilterProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.AggregationSortConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.ColumnIdentifierProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.DefaultFilterControlConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data TopBottomFilterProperty
=
TopBottomFilterProperty {TopBottomFilterProperty -> ()
haddock_workaround_ :: (),
TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
aggregationSortConfigurations :: [AggregationSortConfigurationProperty],
TopBottomFilterProperty -> ColumnIdentifierProperty
column :: ColumnIdentifierProperty,
TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
defaultFilterControlConfiguration :: (Prelude.Maybe DefaultFilterControlConfigurationProperty),
TopBottomFilterProperty -> Value Text
filterId :: (Value Prelude.Text),
TopBottomFilterProperty -> Maybe (Value Double)
limit :: (Prelude.Maybe (Value Prelude.Double)),
TopBottomFilterProperty -> Maybe (Value Text)
parameterName :: (Prelude.Maybe (Value Prelude.Text)),
TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (TopBottomFilterProperty -> TopBottomFilterProperty -> Bool
(TopBottomFilterProperty -> TopBottomFilterProperty -> Bool)
-> (TopBottomFilterProperty -> TopBottomFilterProperty -> Bool)
-> Eq TopBottomFilterProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: TopBottomFilterProperty -> TopBottomFilterProperty -> Bool
== :: TopBottomFilterProperty -> TopBottomFilterProperty -> Bool
$c/= :: TopBottomFilterProperty -> TopBottomFilterProperty -> Bool
/= :: TopBottomFilterProperty -> TopBottomFilterProperty -> Bool
Prelude.Eq, Int -> TopBottomFilterProperty -> ShowS
[TopBottomFilterProperty] -> ShowS
TopBottomFilterProperty -> String
(Int -> TopBottomFilterProperty -> ShowS)
-> (TopBottomFilterProperty -> String)
-> ([TopBottomFilterProperty] -> ShowS)
-> Show TopBottomFilterProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> TopBottomFilterProperty -> ShowS
showsPrec :: Int -> TopBottomFilterProperty -> ShowS
$cshow :: TopBottomFilterProperty -> String
show :: TopBottomFilterProperty -> String
$cshowList :: [TopBottomFilterProperty] -> ShowS
showList :: [TopBottomFilterProperty] -> ShowS
Prelude.Show)
mkTopBottomFilterProperty ::
[AggregationSortConfigurationProperty]
-> ColumnIdentifierProperty
-> Value Prelude.Text -> TopBottomFilterProperty
mkTopBottomFilterProperty :: [AggregationSortConfigurationProperty]
-> ColumnIdentifierProperty
-> Value Text
-> TopBottomFilterProperty
mkTopBottomFilterProperty
[AggregationSortConfigurationProperty]
aggregationSortConfigurations
ColumnIdentifierProperty
column
Value Text
filterId
= TopBottomFilterProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (),
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
aggregationSortConfigurations = [AggregationSortConfigurationProperty]
aggregationSortConfigurations,
column :: ColumnIdentifierProperty
column = ColumnIdentifierProperty
column, filterId :: Value Text
filterId = Value Text
filterId,
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
defaultFilterControlConfiguration = Maybe DefaultFilterControlConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
limit :: Maybe (Value Double)
limit = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing, parameterName :: Maybe (Value Text)
parameterName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
timeGranularity :: Maybe (Value Text)
timeGranularity = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties TopBottomFilterProperty where
toResourceProperties :: TopBottomFilterProperty -> ResourceProperties
toResourceProperties TopBottomFilterProperty {[AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: TopBottomFilterProperty -> ()
aggregationSortConfigurations :: TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
column :: TopBottomFilterProperty -> ColumnIdentifierProperty
defaultFilterControlConfiguration :: TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
filterId :: TopBottomFilterProperty -> Value Text
limit :: TopBottomFilterProperty -> Maybe (Value Double)
parameterName :: TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: TopBottomFilterProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Analysis.TopBottomFilter",
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
"AggregationSortConfigurations"
Key -> [AggregationSortConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= [AggregationSortConfigurationProperty]
aggregationSortConfigurations,
Key
"Column" Key -> ColumnIdentifierProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ColumnIdentifierProperty
column, Key
"FilterId" 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
filterId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> DefaultFilterControlConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefaultFilterControlConfiguration"
(DefaultFilterControlConfigurationProperty -> (Key, Value))
-> Maybe DefaultFilterControlConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DefaultFilterControlConfigurationProperty
defaultFilterControlConfiguration,
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
"Limit" (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)
limit,
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
"ParameterName" (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)
parameterName,
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
"TimeGranularity" (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)
timeGranularity]))}
instance JSON.ToJSON TopBottomFilterProperty where
toJSON :: TopBottomFilterProperty -> Value
toJSON TopBottomFilterProperty {[AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: TopBottomFilterProperty -> ()
aggregationSortConfigurations :: TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
column :: TopBottomFilterProperty -> ColumnIdentifierProperty
defaultFilterControlConfiguration :: TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
filterId :: TopBottomFilterProperty -> Value Text
limit :: TopBottomFilterProperty -> Maybe (Value Double)
parameterName :: TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: TopBottomFilterProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (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
"AggregationSortConfigurations"
Key -> [AggregationSortConfigurationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= [AggregationSortConfigurationProperty]
aggregationSortConfigurations,
Key
"Column" Key -> ColumnIdentifierProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ColumnIdentifierProperty
column, Key
"FilterId" 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
filterId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> DefaultFilterControlConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefaultFilterControlConfiguration"
(DefaultFilterControlConfigurationProperty -> (Key, Value))
-> Maybe DefaultFilterControlConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe DefaultFilterControlConfigurationProperty
defaultFilterControlConfiguration,
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
"Limit" (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)
limit,
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
"ParameterName" (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)
parameterName,
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
"TimeGranularity" (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)
timeGranularity])))
instance Property "AggregationSortConfigurations" TopBottomFilterProperty where
type PropertyType "AggregationSortConfigurations" TopBottomFilterProperty = [AggregationSortConfigurationProperty]
set :: PropertyType
"AggregationSortConfigurations" TopBottomFilterProperty
-> TopBottomFilterProperty -> TopBottomFilterProperty
set PropertyType
"AggregationSortConfigurations" TopBottomFilterProperty
newValue TopBottomFilterProperty {[AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: TopBottomFilterProperty -> ()
aggregationSortConfigurations :: TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
column :: TopBottomFilterProperty -> ColumnIdentifierProperty
defaultFilterControlConfiguration :: TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
filterId :: TopBottomFilterProperty -> Value Text
limit :: TopBottomFilterProperty -> Maybe (Value Double)
parameterName :: TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: TopBottomFilterProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
= TopBottomFilterProperty
{aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
aggregationSortConfigurations = [AggregationSortConfigurationProperty]
PropertyType
"AggregationSortConfigurations" TopBottomFilterProperty
newValue, Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: ()
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
haddock_workaround_ :: ()
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
instance Property "Column" TopBottomFilterProperty where
type PropertyType "Column" TopBottomFilterProperty = ColumnIdentifierProperty
set :: PropertyType "Column" TopBottomFilterProperty
-> TopBottomFilterProperty -> TopBottomFilterProperty
set PropertyType "Column" TopBottomFilterProperty
newValue TopBottomFilterProperty {[AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: TopBottomFilterProperty -> ()
aggregationSortConfigurations :: TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
column :: TopBottomFilterProperty -> ColumnIdentifierProperty
defaultFilterControlConfiguration :: TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
filterId :: TopBottomFilterProperty -> Value Text
limit :: TopBottomFilterProperty -> Maybe (Value Double)
parameterName :: TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: TopBottomFilterProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
= TopBottomFilterProperty {column :: ColumnIdentifierProperty
column = PropertyType "Column" TopBottomFilterProperty
ColumnIdentifierProperty
newValue, [AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
instance Property "DefaultFilterControlConfiguration" TopBottomFilterProperty where
type PropertyType "DefaultFilterControlConfiguration" TopBottomFilterProperty = DefaultFilterControlConfigurationProperty
set :: PropertyType
"DefaultFilterControlConfiguration" TopBottomFilterProperty
-> TopBottomFilterProperty -> TopBottomFilterProperty
set PropertyType
"DefaultFilterControlConfiguration" TopBottomFilterProperty
newValue TopBottomFilterProperty {[AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: TopBottomFilterProperty -> ()
aggregationSortConfigurations :: TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
column :: TopBottomFilterProperty -> ColumnIdentifierProperty
defaultFilterControlConfiguration :: TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
filterId :: TopBottomFilterProperty -> Value Text
limit :: TopBottomFilterProperty -> Maybe (Value Double)
parameterName :: TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: TopBottomFilterProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
= TopBottomFilterProperty
{defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
defaultFilterControlConfiguration = DefaultFilterControlConfigurationProperty
-> Maybe DefaultFilterControlConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"DefaultFilterControlConfiguration" TopBottomFilterProperty
DefaultFilterControlConfigurationProperty
newValue, [AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
instance Property "FilterId" TopBottomFilterProperty where
type PropertyType "FilterId" TopBottomFilterProperty = Value Prelude.Text
set :: PropertyType "FilterId" TopBottomFilterProperty
-> TopBottomFilterProperty -> TopBottomFilterProperty
set PropertyType "FilterId" TopBottomFilterProperty
newValue TopBottomFilterProperty {[AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: TopBottomFilterProperty -> ()
aggregationSortConfigurations :: TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
column :: TopBottomFilterProperty -> ColumnIdentifierProperty
defaultFilterControlConfiguration :: TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
filterId :: TopBottomFilterProperty -> Value Text
limit :: TopBottomFilterProperty -> Maybe (Value Double)
parameterName :: TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: TopBottomFilterProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
= TopBottomFilterProperty {filterId :: Value Text
filterId = PropertyType "FilterId" TopBottomFilterProperty
Value Text
newValue, [AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
ColumnIdentifierProperty
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
instance Property "Limit" TopBottomFilterProperty where
type PropertyType "Limit" TopBottomFilterProperty = Value Prelude.Double
set :: PropertyType "Limit" TopBottomFilterProperty
-> TopBottomFilterProperty -> TopBottomFilterProperty
set PropertyType "Limit" TopBottomFilterProperty
newValue TopBottomFilterProperty {[AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: TopBottomFilterProperty -> ()
aggregationSortConfigurations :: TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
column :: TopBottomFilterProperty -> ColumnIdentifierProperty
defaultFilterControlConfiguration :: TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
filterId :: TopBottomFilterProperty -> Value Text
limit :: TopBottomFilterProperty -> Maybe (Value Double)
parameterName :: TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: TopBottomFilterProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
= TopBottomFilterProperty {limit :: Maybe (Value Double)
limit = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Limit" TopBottomFilterProperty
Value Double
newValue, [AggregationSortConfigurationProperty]
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
instance Property "ParameterName" TopBottomFilterProperty where
type PropertyType "ParameterName" TopBottomFilterProperty = Value Prelude.Text
set :: PropertyType "ParameterName" TopBottomFilterProperty
-> TopBottomFilterProperty -> TopBottomFilterProperty
set PropertyType "ParameterName" TopBottomFilterProperty
newValue TopBottomFilterProperty {[AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: TopBottomFilterProperty -> ()
aggregationSortConfigurations :: TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
column :: TopBottomFilterProperty -> ColumnIdentifierProperty
defaultFilterControlConfiguration :: TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
filterId :: TopBottomFilterProperty -> Value Text
limit :: TopBottomFilterProperty -> Maybe (Value Double)
parameterName :: TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: TopBottomFilterProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
= TopBottomFilterProperty
{parameterName :: Maybe (Value Text)
parameterName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ParameterName" TopBottomFilterProperty
Value Text
newValue, [AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
timeGranularity :: Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
timeGranularity :: Maybe (Value Text)
..}
instance Property "TimeGranularity" TopBottomFilterProperty where
type PropertyType "TimeGranularity" TopBottomFilterProperty = Value Prelude.Text
set :: PropertyType "TimeGranularity" TopBottomFilterProperty
-> TopBottomFilterProperty -> TopBottomFilterProperty
set PropertyType "TimeGranularity" TopBottomFilterProperty
newValue TopBottomFilterProperty {[AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: TopBottomFilterProperty -> ()
aggregationSortConfigurations :: TopBottomFilterProperty -> [AggregationSortConfigurationProperty]
column :: TopBottomFilterProperty -> ColumnIdentifierProperty
defaultFilterControlConfiguration :: TopBottomFilterProperty
-> Maybe DefaultFilterControlConfigurationProperty
filterId :: TopBottomFilterProperty -> Value Text
limit :: TopBottomFilterProperty -> Maybe (Value Double)
parameterName :: TopBottomFilterProperty -> Maybe (Value Text)
timeGranularity :: TopBottomFilterProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
timeGranularity :: Maybe (Value Text)
..}
= TopBottomFilterProperty
{timeGranularity :: Maybe (Value Text)
timeGranularity = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TimeGranularity" TopBottomFilterProperty
Value Text
newValue, [AggregationSortConfigurationProperty]
Maybe (Value Double)
Maybe (Value Text)
Maybe DefaultFilterControlConfigurationProperty
()
Value Text
ColumnIdentifierProperty
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
haddock_workaround_ :: ()
aggregationSortConfigurations :: [AggregationSortConfigurationProperty]
column :: ColumnIdentifierProperty
defaultFilterControlConfiguration :: Maybe DefaultFilterControlConfigurationProperty
filterId :: Value Text
limit :: Maybe (Value Double)
parameterName :: Maybe (Value Text)
..}