module Stratosphere.EntityResolution.MatchingWorkflow (
module Exports, MatchingWorkflow(..), mkMatchingWorkflow
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.EntityResolution.MatchingWorkflow.IncrementalRunConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.EntityResolution.MatchingWorkflow.InputSourceProperty as Exports
import {-# SOURCE #-} Stratosphere.EntityResolution.MatchingWorkflow.OutputSourceProperty as Exports
import {-# SOURCE #-} Stratosphere.EntityResolution.MatchingWorkflow.ResolutionTechniquesProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data MatchingWorkflow
=
MatchingWorkflow {MatchingWorkflow -> ()
haddock_workaround_ :: (),
MatchingWorkflow -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
MatchingWorkflow -> Maybe IncrementalRunConfigProperty
incrementalRunConfig :: (Prelude.Maybe IncrementalRunConfigProperty),
MatchingWorkflow -> [InputSourceProperty]
inputSourceConfig :: [InputSourceProperty],
MatchingWorkflow -> [OutputSourceProperty]
outputSourceConfig :: [OutputSourceProperty],
MatchingWorkflow -> ResolutionTechniquesProperty
resolutionTechniques :: ResolutionTechniquesProperty,
MatchingWorkflow -> Value Text
roleArn :: (Value Prelude.Text),
MatchingWorkflow -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
MatchingWorkflow -> Value Text
workflowName :: (Value Prelude.Text)}
deriving stock (MatchingWorkflow -> MatchingWorkflow -> Bool
(MatchingWorkflow -> MatchingWorkflow -> Bool)
-> (MatchingWorkflow -> MatchingWorkflow -> Bool)
-> Eq MatchingWorkflow
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: MatchingWorkflow -> MatchingWorkflow -> Bool
== :: MatchingWorkflow -> MatchingWorkflow -> Bool
$c/= :: MatchingWorkflow -> MatchingWorkflow -> Bool
/= :: MatchingWorkflow -> MatchingWorkflow -> Bool
Prelude.Eq, Int -> MatchingWorkflow -> ShowS
[MatchingWorkflow] -> ShowS
MatchingWorkflow -> String
(Int -> MatchingWorkflow -> ShowS)
-> (MatchingWorkflow -> String)
-> ([MatchingWorkflow] -> ShowS)
-> Show MatchingWorkflow
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> MatchingWorkflow -> ShowS
showsPrec :: Int -> MatchingWorkflow -> ShowS
$cshow :: MatchingWorkflow -> String
show :: MatchingWorkflow -> String
$cshowList :: [MatchingWorkflow] -> ShowS
showList :: [MatchingWorkflow] -> ShowS
Prelude.Show)
mkMatchingWorkflow ::
[InputSourceProperty]
-> [OutputSourceProperty]
-> ResolutionTechniquesProperty
-> Value Prelude.Text -> Value Prelude.Text -> MatchingWorkflow
mkMatchingWorkflow :: [InputSourceProperty]
-> [OutputSourceProperty]
-> ResolutionTechniquesProperty
-> Value Text
-> Value Text
-> MatchingWorkflow
mkMatchingWorkflow
[InputSourceProperty]
inputSourceConfig
[OutputSourceProperty]
outputSourceConfig
ResolutionTechniquesProperty
resolutionTechniques
Value Text
roleArn
Value Text
workflowName
= MatchingWorkflow
{haddock_workaround_ :: ()
haddock_workaround_ = (), inputSourceConfig :: [InputSourceProperty]
inputSourceConfig = [InputSourceProperty]
inputSourceConfig,
outputSourceConfig :: [OutputSourceProperty]
outputSourceConfig = [OutputSourceProperty]
outputSourceConfig,
resolutionTechniques :: ResolutionTechniquesProperty
resolutionTechniques = ResolutionTechniquesProperty
resolutionTechniques, roleArn :: Value Text
roleArn = Value Text
roleArn,
workflowName :: Value Text
workflowName = Value Text
workflowName, description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
incrementalRunConfig = Maybe IncrementalRunConfigProperty
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties MatchingWorkflow where
toResourceProperties :: MatchingWorkflow -> ResourceProperties
toResourceProperties MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::EntityResolution::MatchingWorkflow",
supportsTags :: Bool
supportsTags = Bool
Prelude.True,
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
"InputSourceConfig" Key -> [InputSourceProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= [InputSourceProperty]
inputSourceConfig,
Key
"OutputSourceConfig" Key -> [OutputSourceProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= [OutputSourceProperty]
outputSourceConfig,
Key
"ResolutionTechniques" Key -> ResolutionTechniquesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ResolutionTechniquesProperty
resolutionTechniques,
Key
"RoleArn" 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
roleArn, Key
"WorkflowName" 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
workflowName]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"Description" (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)
description,
Key -> IncrementalRunConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IncrementalRunConfig" (IncrementalRunConfigProperty -> (Key, Value))
-> Maybe IncrementalRunConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IncrementalRunConfigProperty
incrementalRunConfig,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON MatchingWorkflow where
toJSON :: MatchingWorkflow -> Value
toJSON MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: 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
"InputSourceConfig" Key -> [InputSourceProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= [InputSourceProperty]
inputSourceConfig,
Key
"OutputSourceConfig" Key -> [OutputSourceProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= [OutputSourceProperty]
outputSourceConfig,
Key
"ResolutionTechniques" Key -> ResolutionTechniquesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ResolutionTechniquesProperty
resolutionTechniques,
Key
"RoleArn" 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
roleArn, Key
"WorkflowName" 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
workflowName]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"Description" (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)
description,
Key -> IncrementalRunConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IncrementalRunConfig" (IncrementalRunConfigProperty -> (Key, Value))
-> Maybe IncrementalRunConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IncrementalRunConfigProperty
incrementalRunConfig,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "Description" MatchingWorkflow where
type PropertyType "Description" MatchingWorkflow = Value Prelude.Text
set :: PropertyType "Description" MatchingWorkflow
-> MatchingWorkflow -> MatchingWorkflow
set PropertyType "Description" MatchingWorkflow
newValue MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
= MatchingWorkflow {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" MatchingWorkflow
Value Text
newValue, [InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: ()
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
haddock_workaround_ :: ()
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
instance Property "IncrementalRunConfig" MatchingWorkflow where
type PropertyType "IncrementalRunConfig" MatchingWorkflow = IncrementalRunConfigProperty
set :: PropertyType "IncrementalRunConfig" MatchingWorkflow
-> MatchingWorkflow -> MatchingWorkflow
set PropertyType "IncrementalRunConfig" MatchingWorkflow
newValue MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
= MatchingWorkflow
{incrementalRunConfig :: Maybe IncrementalRunConfigProperty
incrementalRunConfig = IncrementalRunConfigProperty -> Maybe IncrementalRunConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IncrementalRunConfig" MatchingWorkflow
IncrementalRunConfigProperty
newValue, [InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
instance Property "InputSourceConfig" MatchingWorkflow where
type PropertyType "InputSourceConfig" MatchingWorkflow = [InputSourceProperty]
set :: PropertyType "InputSourceConfig" MatchingWorkflow
-> MatchingWorkflow -> MatchingWorkflow
set PropertyType "InputSourceConfig" MatchingWorkflow
newValue MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
= MatchingWorkflow {inputSourceConfig :: [InputSourceProperty]
inputSourceConfig = [InputSourceProperty]
PropertyType "InputSourceConfig" MatchingWorkflow
newValue, [OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
instance Property "OutputSourceConfig" MatchingWorkflow where
type PropertyType "OutputSourceConfig" MatchingWorkflow = [OutputSourceProperty]
set :: PropertyType "OutputSourceConfig" MatchingWorkflow
-> MatchingWorkflow -> MatchingWorkflow
set PropertyType "OutputSourceConfig" MatchingWorkflow
newValue MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
= MatchingWorkflow {outputSourceConfig :: [OutputSourceProperty]
outputSourceConfig = [OutputSourceProperty]
PropertyType "OutputSourceConfig" MatchingWorkflow
newValue, [InputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
instance Property "ResolutionTechniques" MatchingWorkflow where
type PropertyType "ResolutionTechniques" MatchingWorkflow = ResolutionTechniquesProperty
set :: PropertyType "ResolutionTechniques" MatchingWorkflow
-> MatchingWorkflow -> MatchingWorkflow
set PropertyType "ResolutionTechniques" MatchingWorkflow
newValue MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
= MatchingWorkflow {resolutionTechniques :: ResolutionTechniquesProperty
resolutionTechniques = PropertyType "ResolutionTechniques" MatchingWorkflow
ResolutionTechniquesProperty
newValue, [InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
instance Property "RoleArn" MatchingWorkflow where
type PropertyType "RoleArn" MatchingWorkflow = Value Prelude.Text
set :: PropertyType "RoleArn" MatchingWorkflow
-> MatchingWorkflow -> MatchingWorkflow
set PropertyType "RoleArn" MatchingWorkflow
newValue MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
= MatchingWorkflow {roleArn :: Value Text
roleArn = PropertyType "RoleArn" MatchingWorkflow
Value Text
newValue, [InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
tags :: Maybe [Tag]
workflowName :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
tags :: Maybe [Tag]
workflowName :: Value Text
..}
instance Property "Tags" MatchingWorkflow where
type PropertyType "Tags" MatchingWorkflow = [Tag]
set :: PropertyType "Tags" MatchingWorkflow
-> MatchingWorkflow -> MatchingWorkflow
set PropertyType "Tags" MatchingWorkflow
newValue MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
= MatchingWorkflow {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" MatchingWorkflow
newValue, [InputSourceProperty]
[OutputSourceProperty]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
workflowName :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
workflowName :: Value Text
..}
instance Property "WorkflowName" MatchingWorkflow where
type PropertyType "WorkflowName" MatchingWorkflow = Value Prelude.Text
set :: PropertyType "WorkflowName" MatchingWorkflow
-> MatchingWorkflow -> MatchingWorkflow
set PropertyType "WorkflowName" MatchingWorkflow
newValue MatchingWorkflow {[InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: MatchingWorkflow -> ()
description :: MatchingWorkflow -> Maybe (Value Text)
incrementalRunConfig :: MatchingWorkflow -> Maybe IncrementalRunConfigProperty
inputSourceConfig :: MatchingWorkflow -> [InputSourceProperty]
outputSourceConfig :: MatchingWorkflow -> [OutputSourceProperty]
resolutionTechniques :: MatchingWorkflow -> ResolutionTechniquesProperty
roleArn :: MatchingWorkflow -> Value Text
tags :: MatchingWorkflow -> Maybe [Tag]
workflowName :: MatchingWorkflow -> Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
workflowName :: Value Text
..}
= MatchingWorkflow {workflowName :: Value Text
workflowName = PropertyType "WorkflowName" MatchingWorkflow
Value Text
newValue, [InputSourceProperty]
[OutputSourceProperty]
Maybe [Tag]
Maybe (Value Text)
Maybe IncrementalRunConfigProperty
()
Value Text
ResolutionTechniquesProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
incrementalRunConfig :: Maybe IncrementalRunConfigProperty
inputSourceConfig :: [InputSourceProperty]
outputSourceConfig :: [OutputSourceProperty]
resolutionTechniques :: ResolutionTechniquesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
..}