module Stratosphere.QuickSight.Analysis.DestinationParameterValueConfigurationProperty (
module Exports, DestinationParameterValueConfigurationProperty(..),
mkDestinationParameterValueConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.ColumnIdentifierProperty as Exports
import {-# SOURCE #-} Stratosphere.QuickSight.Analysis.CustomValuesConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data DestinationParameterValueConfigurationProperty
=
DestinationParameterValueConfigurationProperty {DestinationParameterValueConfigurationProperty -> ()
haddock_workaround_ :: (),
DestinationParameterValueConfigurationProperty
-> Maybe CustomValuesConfigurationProperty
customValuesConfiguration :: (Prelude.Maybe CustomValuesConfigurationProperty),
DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
selectAllValueOptions :: (Prelude.Maybe (Value Prelude.Text)),
DestinationParameterValueConfigurationProperty
-> Maybe ColumnIdentifierProperty
sourceColumn :: (Prelude.Maybe ColumnIdentifierProperty),
DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceField :: (Prelude.Maybe (Value Prelude.Text)),
DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceParameterName :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty -> Bool
(DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty -> Bool)
-> (DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty -> Bool)
-> Eq DestinationParameterValueConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty -> Bool
== :: DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty -> Bool
$c/= :: DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty -> Bool
/= :: DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty -> Bool
Prelude.Eq, Int -> DestinationParameterValueConfigurationProperty -> ShowS
[DestinationParameterValueConfigurationProperty] -> ShowS
DestinationParameterValueConfigurationProperty -> String
(Int -> DestinationParameterValueConfigurationProperty -> ShowS)
-> (DestinationParameterValueConfigurationProperty -> String)
-> ([DestinationParameterValueConfigurationProperty] -> ShowS)
-> Show DestinationParameterValueConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> DestinationParameterValueConfigurationProperty -> ShowS
showsPrec :: Int -> DestinationParameterValueConfigurationProperty -> ShowS
$cshow :: DestinationParameterValueConfigurationProperty -> String
show :: DestinationParameterValueConfigurationProperty -> String
$cshowList :: [DestinationParameterValueConfigurationProperty] -> ShowS
showList :: [DestinationParameterValueConfigurationProperty] -> ShowS
Prelude.Show)
mkDestinationParameterValueConfigurationProperty ::
DestinationParameterValueConfigurationProperty
mkDestinationParameterValueConfigurationProperty :: DestinationParameterValueConfigurationProperty
mkDestinationParameterValueConfigurationProperty
= DestinationParameterValueConfigurationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (),
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
customValuesConfiguration = Maybe CustomValuesConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
selectAllValueOptions :: Maybe (Value Text)
selectAllValueOptions = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
sourceColumn :: Maybe ColumnIdentifierProperty
sourceColumn = Maybe ColumnIdentifierProperty
forall a. Maybe a
Prelude.Nothing, sourceField :: Maybe (Value Text)
sourceField = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
sourceParameterName :: Maybe (Value Text)
sourceParameterName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties DestinationParameterValueConfigurationProperty where
toResourceProperties :: DestinationParameterValueConfigurationProperty
-> ResourceProperties
toResourceProperties
DestinationParameterValueConfigurationProperty {Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: DestinationParameterValueConfigurationProperty -> ()
customValuesConfiguration :: DestinationParameterValueConfigurationProperty
-> Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceColumn :: DestinationParameterValueConfigurationProperty
-> Maybe ColumnIdentifierProperty
sourceField :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceParameterName :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::QuickSight::Analysis.DestinationParameterValueConfiguration",
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 -> CustomValuesConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomValuesConfiguration"
(CustomValuesConfigurationProperty -> (Key, Value))
-> Maybe CustomValuesConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomValuesConfigurationProperty
customValuesConfiguration,
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
"SelectAllValueOptions"
(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)
selectAllValueOptions,
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..=) Key
"SourceColumn" (ColumnIdentifierProperty -> (Key, Value))
-> Maybe ColumnIdentifierProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ColumnIdentifierProperty
sourceColumn,
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
"SourceField" (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)
sourceField,
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
"SourceParameterName" (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)
sourceParameterName])}
instance JSON.ToJSON DestinationParameterValueConfigurationProperty where
toJSON :: DestinationParameterValueConfigurationProperty -> Value
toJSON DestinationParameterValueConfigurationProperty {Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: DestinationParameterValueConfigurationProperty -> ()
customValuesConfiguration :: DestinationParameterValueConfigurationProperty
-> Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceColumn :: DestinationParameterValueConfigurationProperty
-> Maybe ColumnIdentifierProperty
sourceField :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceParameterName :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value 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 -> CustomValuesConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomValuesConfiguration"
(CustomValuesConfigurationProperty -> (Key, Value))
-> Maybe CustomValuesConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomValuesConfigurationProperty
customValuesConfiguration,
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
"SelectAllValueOptions"
(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)
selectAllValueOptions,
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..=) Key
"SourceColumn" (ColumnIdentifierProperty -> (Key, Value))
-> Maybe ColumnIdentifierProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ColumnIdentifierProperty
sourceColumn,
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
"SourceField" (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)
sourceField,
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
"SourceParameterName" (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)
sourceParameterName]))
instance Property "CustomValuesConfiguration" DestinationParameterValueConfigurationProperty where
type PropertyType "CustomValuesConfiguration" DestinationParameterValueConfigurationProperty = CustomValuesConfigurationProperty
set :: PropertyType
"CustomValuesConfiguration"
DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
set PropertyType
"CustomValuesConfiguration"
DestinationParameterValueConfigurationProperty
newValue DestinationParameterValueConfigurationProperty {Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: DestinationParameterValueConfigurationProperty -> ()
customValuesConfiguration :: DestinationParameterValueConfigurationProperty
-> Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceColumn :: DestinationParameterValueConfigurationProperty
-> Maybe ColumnIdentifierProperty
sourceField :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceParameterName :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
..}
= DestinationParameterValueConfigurationProperty
{customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
customValuesConfiguration = CustomValuesConfigurationProperty
-> Maybe CustomValuesConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"CustomValuesConfiguration"
DestinationParameterValueConfigurationProperty
CustomValuesConfigurationProperty
newValue, Maybe (Value Text)
Maybe ColumnIdentifierProperty
()
haddock_workaround_ :: ()
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
haddock_workaround_ :: ()
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
..}
instance Property "SelectAllValueOptions" DestinationParameterValueConfigurationProperty where
type PropertyType "SelectAllValueOptions" DestinationParameterValueConfigurationProperty = Value Prelude.Text
set :: PropertyType
"SelectAllValueOptions"
DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
set PropertyType
"SelectAllValueOptions"
DestinationParameterValueConfigurationProperty
newValue DestinationParameterValueConfigurationProperty {Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: DestinationParameterValueConfigurationProperty -> ()
customValuesConfiguration :: DestinationParameterValueConfigurationProperty
-> Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceColumn :: DestinationParameterValueConfigurationProperty
-> Maybe ColumnIdentifierProperty
sourceField :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceParameterName :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
..}
= DestinationParameterValueConfigurationProperty
{selectAllValueOptions :: Maybe (Value Text)
selectAllValueOptions = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"SelectAllValueOptions"
DestinationParameterValueConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
..}
instance Property "SourceColumn" DestinationParameterValueConfigurationProperty where
type PropertyType "SourceColumn" DestinationParameterValueConfigurationProperty = ColumnIdentifierProperty
set :: PropertyType
"SourceColumn" DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
set PropertyType
"SourceColumn" DestinationParameterValueConfigurationProperty
newValue DestinationParameterValueConfigurationProperty {Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: DestinationParameterValueConfigurationProperty -> ()
customValuesConfiguration :: DestinationParameterValueConfigurationProperty
-> Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceColumn :: DestinationParameterValueConfigurationProperty
-> Maybe ColumnIdentifierProperty
sourceField :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceParameterName :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
..}
= DestinationParameterValueConfigurationProperty
{sourceColumn :: Maybe ColumnIdentifierProperty
sourceColumn = ColumnIdentifierProperty -> Maybe ColumnIdentifierProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"SourceColumn" DestinationParameterValueConfigurationProperty
ColumnIdentifierProperty
newValue, Maybe (Value Text)
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
..}
instance Property "SourceField" DestinationParameterValueConfigurationProperty where
type PropertyType "SourceField" DestinationParameterValueConfigurationProperty = Value Prelude.Text
set :: PropertyType
"SourceField" DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
set PropertyType
"SourceField" DestinationParameterValueConfigurationProperty
newValue DestinationParameterValueConfigurationProperty {Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: DestinationParameterValueConfigurationProperty -> ()
customValuesConfiguration :: DestinationParameterValueConfigurationProperty
-> Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceColumn :: DestinationParameterValueConfigurationProperty
-> Maybe ColumnIdentifierProperty
sourceField :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceParameterName :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
..}
= DestinationParameterValueConfigurationProperty
{sourceField :: Maybe (Value Text)
sourceField = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"SourceField" DestinationParameterValueConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceParameterName :: Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceParameterName :: Maybe (Value Text)
..}
instance Property "SourceParameterName" DestinationParameterValueConfigurationProperty where
type PropertyType "SourceParameterName" DestinationParameterValueConfigurationProperty = Value Prelude.Text
set :: PropertyType
"SourceParameterName"
DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
-> DestinationParameterValueConfigurationProperty
set PropertyType
"SourceParameterName"
DestinationParameterValueConfigurationProperty
newValue DestinationParameterValueConfigurationProperty {Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: DestinationParameterValueConfigurationProperty -> ()
customValuesConfiguration :: DestinationParameterValueConfigurationProperty
-> Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceColumn :: DestinationParameterValueConfigurationProperty
-> Maybe ColumnIdentifierProperty
sourceField :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
sourceParameterName :: DestinationParameterValueConfigurationProperty
-> Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
sourceParameterName :: Maybe (Value Text)
..}
= DestinationParameterValueConfigurationProperty
{sourceParameterName :: Maybe (Value Text)
sourceParameterName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"SourceParameterName"
DestinationParameterValueConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe ColumnIdentifierProperty
Maybe CustomValuesConfigurationProperty
()
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
haddock_workaround_ :: ()
customValuesConfiguration :: Maybe CustomValuesConfigurationProperty
selectAllValueOptions :: Maybe (Value Text)
sourceColumn :: Maybe ColumnIdentifierProperty
sourceField :: Maybe (Value Text)
..}