module Stratosphere.QuickSight.Template.FilterListControlProperty (
        module Exports, FilterListControlProperty(..),
        mkFilterListControlProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Template.CascadingControlConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Template.FilterSelectableValuesProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Template.ListControlDisplayOptionsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data FilterListControlProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterlistcontrol.html>
    FilterListControlProperty {FilterListControlProperty -> ()
haddock_workaround_ :: (),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterlistcontrol.html#cfn-quicksight-template-filterlistcontrol-cascadingcontrolconfiguration>
                               FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
cascadingControlConfiguration :: (Prelude.Maybe CascadingControlConfigurationProperty),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterlistcontrol.html#cfn-quicksight-template-filterlistcontrol-displayoptions>
                               FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
displayOptions :: (Prelude.Maybe ListControlDisplayOptionsProperty),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterlistcontrol.html#cfn-quicksight-template-filterlistcontrol-filtercontrolid>
                               FilterListControlProperty -> Value Text
filterControlId :: (Value Prelude.Text),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterlistcontrol.html#cfn-quicksight-template-filterlistcontrol-selectablevalues>
                               FilterListControlProperty -> Maybe FilterSelectableValuesProperty
selectableValues :: (Prelude.Maybe FilterSelectableValuesProperty),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterlistcontrol.html#cfn-quicksight-template-filterlistcontrol-sourcefilterid>
                               FilterListControlProperty -> Value Text
sourceFilterId :: (Value Prelude.Text),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterlistcontrol.html#cfn-quicksight-template-filterlistcontrol-title>
                               FilterListControlProperty -> Value Text
title :: (Value Prelude.Text),
                               -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-filterlistcontrol.html#cfn-quicksight-template-filterlistcontrol-type>
                               FilterListControlProperty -> Maybe (Value Text)
type' :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (FilterListControlProperty -> FilterListControlProperty -> Bool
(FilterListControlProperty -> FilterListControlProperty -> Bool)
-> (FilterListControlProperty -> FilterListControlProperty -> Bool)
-> Eq FilterListControlProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: FilterListControlProperty -> FilterListControlProperty -> Bool
== :: FilterListControlProperty -> FilterListControlProperty -> Bool
$c/= :: FilterListControlProperty -> FilterListControlProperty -> Bool
/= :: FilterListControlProperty -> FilterListControlProperty -> Bool
Prelude.Eq, Int -> FilterListControlProperty -> ShowS
[FilterListControlProperty] -> ShowS
FilterListControlProperty -> String
(Int -> FilterListControlProperty -> ShowS)
-> (FilterListControlProperty -> String)
-> ([FilterListControlProperty] -> ShowS)
-> Show FilterListControlProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> FilterListControlProperty -> ShowS
showsPrec :: Int -> FilterListControlProperty -> ShowS
$cshow :: FilterListControlProperty -> String
show :: FilterListControlProperty -> String
$cshowList :: [FilterListControlProperty] -> ShowS
showList :: [FilterListControlProperty] -> ShowS
Prelude.Show)
mkFilterListControlProperty ::
  Value Prelude.Text
  -> Value Prelude.Text
     -> Value Prelude.Text -> FilterListControlProperty
mkFilterListControlProperty :: Value Text -> Value Text -> Value Text -> FilterListControlProperty
mkFilterListControlProperty Value Text
filterControlId Value Text
sourceFilterId Value Text
title
  = FilterListControlProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), filterControlId :: Value Text
filterControlId = Value Text
filterControlId,
       sourceFilterId :: Value Text
sourceFilterId = Value Text
sourceFilterId, title :: Value Text
title = Value Text
title,
       cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
cascadingControlConfiguration = Maybe CascadingControlConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       displayOptions :: Maybe ListControlDisplayOptionsProperty
displayOptions = Maybe ListControlDisplayOptionsProperty
forall a. Maybe a
Prelude.Nothing,
       selectableValues :: Maybe FilterSelectableValuesProperty
selectableValues = Maybe FilterSelectableValuesProperty
forall a. Maybe a
Prelude.Nothing, type' :: Maybe (Value Text)
type' = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties FilterListControlProperty where
  toResourceProperties :: FilterListControlProperty -> ResourceProperties
toResourceProperties FilterListControlProperty {Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: FilterListControlProperty -> ()
cascadingControlConfiguration :: FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
displayOptions :: FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
filterControlId :: FilterListControlProperty -> Value Text
selectableValues :: FilterListControlProperty -> Maybe FilterSelectableValuesProperty
sourceFilterId :: FilterListControlProperty -> Value Text
title :: FilterListControlProperty -> Value Text
type' :: FilterListControlProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::QuickSight::Template.FilterListControl",
         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
"FilterControlId" 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
filterControlId,
                            Key
"SourceFilterId" 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
sourceFilterId, Key
"Title" 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
title]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> CascadingControlConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CascadingControlConfiguration"
                                 (CascadingControlConfigurationProperty -> (Key, Value))
-> Maybe CascadingControlConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CascadingControlConfigurationProperty
cascadingControlConfiguration,
                               Key -> ListControlDisplayOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisplayOptions" (ListControlDisplayOptionsProperty -> (Key, Value))
-> Maybe ListControlDisplayOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ListControlDisplayOptionsProperty
displayOptions,
                               Key -> FilterSelectableValuesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SelectableValues" (FilterSelectableValuesProperty -> (Key, Value))
-> Maybe FilterSelectableValuesProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FilterSelectableValuesProperty
selectableValues,
                               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
"Type" (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)
type']))}
instance JSON.ToJSON FilterListControlProperty where
  toJSON :: FilterListControlProperty -> Value
toJSON FilterListControlProperty {Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: FilterListControlProperty -> ()
cascadingControlConfiguration :: FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
displayOptions :: FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
filterControlId :: FilterListControlProperty -> Value Text
selectableValues :: FilterListControlProperty -> Maybe FilterSelectableValuesProperty
sourceFilterId :: FilterListControlProperty -> Value Text
title :: FilterListControlProperty -> Value Text
type' :: FilterListControlProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: 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
"FilterControlId" 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
filterControlId,
               Key
"SourceFilterId" 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
sourceFilterId, Key
"Title" 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
title]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> CascadingControlConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CascadingControlConfiguration"
                    (CascadingControlConfigurationProperty -> (Key, Value))
-> Maybe CascadingControlConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CascadingControlConfigurationProperty
cascadingControlConfiguration,
                  Key -> ListControlDisplayOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisplayOptions" (ListControlDisplayOptionsProperty -> (Key, Value))
-> Maybe ListControlDisplayOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ListControlDisplayOptionsProperty
displayOptions,
                  Key -> FilterSelectableValuesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SelectableValues" (FilterSelectableValuesProperty -> (Key, Value))
-> Maybe FilterSelectableValuesProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FilterSelectableValuesProperty
selectableValues,
                  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
"Type" (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)
type'])))
instance Property "CascadingControlConfiguration" FilterListControlProperty where
  type PropertyType "CascadingControlConfiguration" FilterListControlProperty = CascadingControlConfigurationProperty
  set :: PropertyType
  "CascadingControlConfiguration" FilterListControlProperty
-> FilterListControlProperty -> FilterListControlProperty
set PropertyType
  "CascadingControlConfiguration" FilterListControlProperty
newValue FilterListControlProperty {Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: FilterListControlProperty -> ()
cascadingControlConfiguration :: FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
displayOptions :: FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
filterControlId :: FilterListControlProperty -> Value Text
selectableValues :: FilterListControlProperty -> Maybe FilterSelectableValuesProperty
sourceFilterId :: FilterListControlProperty -> Value Text
title :: FilterListControlProperty -> Value Text
type' :: FilterListControlProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
    = FilterListControlProperty
        {cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
cascadingControlConfiguration = CascadingControlConfigurationProperty
-> Maybe CascadingControlConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "CascadingControlConfiguration" FilterListControlProperty
CascadingControlConfigurationProperty
newValue, Maybe (Value Text)
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: ()
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
instance Property "DisplayOptions" FilterListControlProperty where
  type PropertyType "DisplayOptions" FilterListControlProperty = ListControlDisplayOptionsProperty
  set :: PropertyType "DisplayOptions" FilterListControlProperty
-> FilterListControlProperty -> FilterListControlProperty
set PropertyType "DisplayOptions" FilterListControlProperty
newValue FilterListControlProperty {Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: FilterListControlProperty -> ()
cascadingControlConfiguration :: FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
displayOptions :: FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
filterControlId :: FilterListControlProperty -> Value Text
selectableValues :: FilterListControlProperty -> Maybe FilterSelectableValuesProperty
sourceFilterId :: FilterListControlProperty -> Value Text
title :: FilterListControlProperty -> Value Text
type' :: FilterListControlProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
    = FilterListControlProperty
        {displayOptions :: Maybe ListControlDisplayOptionsProperty
displayOptions = ListControlDisplayOptionsProperty
-> Maybe ListControlDisplayOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DisplayOptions" FilterListControlProperty
ListControlDisplayOptionsProperty
newValue, Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
()
Value Text
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
instance Property "FilterControlId" FilterListControlProperty where
  type PropertyType "FilterControlId" FilterListControlProperty = Value Prelude.Text
  set :: PropertyType "FilterControlId" FilterListControlProperty
-> FilterListControlProperty -> FilterListControlProperty
set PropertyType "FilterControlId" FilterListControlProperty
newValue FilterListControlProperty {Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: FilterListControlProperty -> ()
cascadingControlConfiguration :: FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
displayOptions :: FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
filterControlId :: FilterListControlProperty -> Value Text
selectableValues :: FilterListControlProperty -> Maybe FilterSelectableValuesProperty
sourceFilterId :: FilterListControlProperty -> Value Text
title :: FilterListControlProperty -> Value Text
type' :: FilterListControlProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
    = FilterListControlProperty {filterControlId :: Value Text
filterControlId = PropertyType "FilterControlId" FilterListControlProperty
Value Text
newValue, Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
instance Property "SelectableValues" FilterListControlProperty where
  type PropertyType "SelectableValues" FilterListControlProperty = FilterSelectableValuesProperty
  set :: PropertyType "SelectableValues" FilterListControlProperty
-> FilterListControlProperty -> FilterListControlProperty
set PropertyType "SelectableValues" FilterListControlProperty
newValue FilterListControlProperty {Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: FilterListControlProperty -> ()
cascadingControlConfiguration :: FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
displayOptions :: FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
filterControlId :: FilterListControlProperty -> Value Text
selectableValues :: FilterListControlProperty -> Maybe FilterSelectableValuesProperty
sourceFilterId :: FilterListControlProperty -> Value Text
title :: FilterListControlProperty -> Value Text
type' :: FilterListControlProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
    = FilterListControlProperty
        {selectableValues :: Maybe FilterSelectableValuesProperty
selectableValues = FilterSelectableValuesProperty
-> Maybe FilterSelectableValuesProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SelectableValues" FilterListControlProperty
FilterSelectableValuesProperty
newValue, Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
instance Property "SourceFilterId" FilterListControlProperty where
  type PropertyType "SourceFilterId" FilterListControlProperty = Value Prelude.Text
  set :: PropertyType "SourceFilterId" FilterListControlProperty
-> FilterListControlProperty -> FilterListControlProperty
set PropertyType "SourceFilterId" FilterListControlProperty
newValue FilterListControlProperty {Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: FilterListControlProperty -> ()
cascadingControlConfiguration :: FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
displayOptions :: FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
filterControlId :: FilterListControlProperty -> Value Text
selectableValues :: FilterListControlProperty -> Maybe FilterSelectableValuesProperty
sourceFilterId :: FilterListControlProperty -> Value Text
title :: FilterListControlProperty -> Value Text
type' :: FilterListControlProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
    = FilterListControlProperty {sourceFilterId :: Value Text
sourceFilterId = PropertyType "SourceFilterId" FilterListControlProperty
Value Text
newValue, Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
title :: Value Text
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
title :: Value Text
type' :: Maybe (Value Text)
..}
instance Property "Title" FilterListControlProperty where
  type PropertyType "Title" FilterListControlProperty = Value Prelude.Text
  set :: PropertyType "Title" FilterListControlProperty
-> FilterListControlProperty -> FilterListControlProperty
set PropertyType "Title" FilterListControlProperty
newValue FilterListControlProperty {Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: FilterListControlProperty -> ()
cascadingControlConfiguration :: FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
displayOptions :: FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
filterControlId :: FilterListControlProperty -> Value Text
selectableValues :: FilterListControlProperty -> Maybe FilterSelectableValuesProperty
sourceFilterId :: FilterListControlProperty -> Value Text
title :: FilterListControlProperty -> Value Text
type' :: FilterListControlProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
    = FilterListControlProperty {title :: Value Text
title = PropertyType "Title" FilterListControlProperty
Value Text
newValue, Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
type' :: Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
type' :: Maybe (Value Text)
..}
instance Property "Type" FilterListControlProperty where
  type PropertyType "Type" FilterListControlProperty = Value Prelude.Text
  set :: PropertyType "Type" FilterListControlProperty
-> FilterListControlProperty -> FilterListControlProperty
set PropertyType "Type" FilterListControlProperty
newValue FilterListControlProperty {Maybe (Value Text)
Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: FilterListControlProperty -> ()
cascadingControlConfiguration :: FilterListControlProperty
-> Maybe CascadingControlConfigurationProperty
displayOptions :: FilterListControlProperty
-> Maybe ListControlDisplayOptionsProperty
filterControlId :: FilterListControlProperty -> Value Text
selectableValues :: FilterListControlProperty -> Maybe FilterSelectableValuesProperty
sourceFilterId :: FilterListControlProperty -> Value Text
title :: FilterListControlProperty -> Value Text
type' :: FilterListControlProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
type' :: Maybe (Value Text)
..}
    = FilterListControlProperty {type' :: Maybe (Value Text)
type' = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Type" FilterListControlProperty
Value Text
newValue, Maybe CascadingControlConfigurationProperty
Maybe FilterSelectableValuesProperty
Maybe ListControlDisplayOptionsProperty
()
Value Text
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
haddock_workaround_ :: ()
cascadingControlConfiguration :: Maybe CascadingControlConfigurationProperty
displayOptions :: Maybe ListControlDisplayOptionsProperty
filterControlId :: Value Text
selectableValues :: Maybe FilterSelectableValuesProperty
sourceFilterId :: Value Text
title :: Value Text
..}