module Stratosphere.SageMaker.ProcessingJob (
module Exports, ProcessingJob(..), mkProcessingJob
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.SageMaker.ProcessingJob.AppSpecificationProperty as Exports
import {-# SOURCE #-} Stratosphere.SageMaker.ProcessingJob.ExperimentConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.SageMaker.ProcessingJob.NetworkConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.SageMaker.ProcessingJob.ProcessingInputsObjectProperty as Exports
import {-# SOURCE #-} Stratosphere.SageMaker.ProcessingJob.ProcessingOutputConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.SageMaker.ProcessingJob.ProcessingResourcesProperty as Exports
import {-# SOURCE #-} Stratosphere.SageMaker.ProcessingJob.StoppingConditionProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data ProcessingJob
=
ProcessingJob {ProcessingJob -> ()
haddock_workaround_ :: (),
ProcessingJob -> AppSpecificationProperty
appSpecification :: AppSpecificationProperty,
ProcessingJob -> Maybe (Map Text (Value Text))
environment :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text))),
ProcessingJob -> Maybe ExperimentConfigProperty
experimentConfig :: (Prelude.Maybe ExperimentConfigProperty),
ProcessingJob -> Maybe NetworkConfigProperty
networkConfig :: (Prelude.Maybe NetworkConfigProperty),
ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingInputs :: (Prelude.Maybe [ProcessingInputsObjectProperty]),
ProcessingJob -> Maybe (Value Text)
processingJobName :: (Prelude.Maybe (Value Prelude.Text)),
ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingOutputConfig :: (Prelude.Maybe ProcessingOutputConfigProperty),
ProcessingJob -> ProcessingResourcesProperty
processingResources :: ProcessingResourcesProperty,
ProcessingJob -> Value Text
roleArn :: (Value Prelude.Text),
ProcessingJob -> Maybe StoppingConditionProperty
stoppingCondition :: (Prelude.Maybe StoppingConditionProperty),
ProcessingJob -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (ProcessingJob -> ProcessingJob -> Bool
(ProcessingJob -> ProcessingJob -> Bool)
-> (ProcessingJob -> ProcessingJob -> Bool) -> Eq ProcessingJob
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ProcessingJob -> ProcessingJob -> Bool
== :: ProcessingJob -> ProcessingJob -> Bool
$c/= :: ProcessingJob -> ProcessingJob -> Bool
/= :: ProcessingJob -> ProcessingJob -> Bool
Prelude.Eq, Int -> ProcessingJob -> ShowS
[ProcessingJob] -> ShowS
ProcessingJob -> String
(Int -> ProcessingJob -> ShowS)
-> (ProcessingJob -> String)
-> ([ProcessingJob] -> ShowS)
-> Show ProcessingJob
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ProcessingJob -> ShowS
showsPrec :: Int -> ProcessingJob -> ShowS
$cshow :: ProcessingJob -> String
show :: ProcessingJob -> String
$cshowList :: [ProcessingJob] -> ShowS
showList :: [ProcessingJob] -> ShowS
Prelude.Show)
mkProcessingJob ::
AppSpecificationProperty
-> ProcessingResourcesProperty
-> Value Prelude.Text -> ProcessingJob
mkProcessingJob :: AppSpecificationProperty
-> ProcessingResourcesProperty -> Value Text -> ProcessingJob
mkProcessingJob AppSpecificationProperty
appSpecification ProcessingResourcesProperty
processingResources Value Text
roleArn
= ProcessingJob
{haddock_workaround_ :: ()
haddock_workaround_ = (), appSpecification :: AppSpecificationProperty
appSpecification = AppSpecificationProperty
appSpecification,
processingResources :: ProcessingResourcesProperty
processingResources = ProcessingResourcesProperty
processingResources, roleArn :: Value Text
roleArn = Value Text
roleArn,
environment :: Maybe (Map Text (Value Text))
environment = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing, experimentConfig :: Maybe ExperimentConfigProperty
experimentConfig = Maybe ExperimentConfigProperty
forall a. Maybe a
Prelude.Nothing,
networkConfig :: Maybe NetworkConfigProperty
networkConfig = Maybe NetworkConfigProperty
forall a. Maybe a
Prelude.Nothing,
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingInputs = Maybe [ProcessingInputsObjectProperty]
forall a. Maybe a
Prelude.Nothing,
processingJobName :: Maybe (Value Text)
processingJobName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingOutputConfig = Maybe ProcessingOutputConfigProperty
forall a. Maybe a
Prelude.Nothing,
stoppingCondition :: Maybe StoppingConditionProperty
stoppingCondition = Maybe StoppingConditionProperty
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ProcessingJob where
toResourceProperties :: ProcessingJob -> ResourceProperties
toResourceProperties ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::SageMaker::ProcessingJob",
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
"AppSpecification" Key -> AppSpecificationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= AppSpecificationProperty
appSpecification,
Key
"ProcessingResources" Key -> ProcessingResourcesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ProcessingResourcesProperty
processingResources,
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]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Map Text (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
"Environment" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
environment,
Key -> ExperimentConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ExperimentConfig" (ExperimentConfigProperty -> (Key, Value))
-> Maybe ExperimentConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ExperimentConfigProperty
experimentConfig,
Key -> NetworkConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NetworkConfig" (NetworkConfigProperty -> (Key, Value))
-> Maybe NetworkConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NetworkConfigProperty
networkConfig,
Key -> [ProcessingInputsObjectProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ProcessingInputs" ([ProcessingInputsObjectProperty] -> (Key, Value))
-> Maybe [ProcessingInputsObjectProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ProcessingInputsObjectProperty]
processingInputs,
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
"ProcessingJobName" (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)
processingJobName,
Key -> ProcessingOutputConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ProcessingOutputConfig"
(ProcessingOutputConfigProperty -> (Key, Value))
-> Maybe ProcessingOutputConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ProcessingOutputConfigProperty
processingOutputConfig,
Key -> StoppingConditionProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StoppingCondition" (StoppingConditionProperty -> (Key, Value))
-> Maybe StoppingConditionProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe StoppingConditionProperty
stoppingCondition,
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 ProcessingJob where
toJSON :: ProcessingJob -> Value
toJSON ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= [(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
"AppSpecification" Key -> AppSpecificationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= AppSpecificationProperty
appSpecification,
Key
"ProcessingResources" Key -> ProcessingResourcesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ProcessingResourcesProperty
processingResources,
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]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Map Text (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
"Environment" (Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
environment,
Key -> ExperimentConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ExperimentConfig" (ExperimentConfigProperty -> (Key, Value))
-> Maybe ExperimentConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ExperimentConfigProperty
experimentConfig,
Key -> NetworkConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NetworkConfig" (NetworkConfigProperty -> (Key, Value))
-> Maybe NetworkConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NetworkConfigProperty
networkConfig,
Key -> [ProcessingInputsObjectProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ProcessingInputs" ([ProcessingInputsObjectProperty] -> (Key, Value))
-> Maybe [ProcessingInputsObjectProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [ProcessingInputsObjectProperty]
processingInputs,
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
"ProcessingJobName" (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)
processingJobName,
Key -> ProcessingOutputConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ProcessingOutputConfig"
(ProcessingOutputConfigProperty -> (Key, Value))
-> Maybe ProcessingOutputConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ProcessingOutputConfigProperty
processingOutputConfig,
Key -> StoppingConditionProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StoppingCondition" (StoppingConditionProperty -> (Key, Value))
-> Maybe StoppingConditionProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe StoppingConditionProperty
stoppingCondition,
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 "AppSpecification" ProcessingJob where
type PropertyType "AppSpecification" ProcessingJob = AppSpecificationProperty
set :: PropertyType "AppSpecification" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "AppSpecification" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {appSpecification :: AppSpecificationProperty
appSpecification = PropertyType "AppSpecification" ProcessingJob
AppSpecificationProperty
newValue, Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
ProcessingResourcesProperty
haddock_workaround_ :: ()
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
instance Property "Environment" ProcessingJob where
type PropertyType "Environment" ProcessingJob = Prelude.Map Prelude.Text (Value Prelude.Text)
set :: PropertyType "Environment" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "Environment" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {environment :: Maybe (Map Text (Value Text))
environment = Map Text (Value Text) -> Maybe (Map Text (Value Text))
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Map Text (Value Text)
PropertyType "Environment" ProcessingJob
newValue, Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
instance Property "ExperimentConfig" ProcessingJob where
type PropertyType "ExperimentConfig" ProcessingJob = ExperimentConfigProperty
set :: PropertyType "ExperimentConfig" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "ExperimentConfig" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {experimentConfig :: Maybe ExperimentConfigProperty
experimentConfig = ExperimentConfigProperty -> Maybe ExperimentConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExperimentConfig" ProcessingJob
ExperimentConfigProperty
newValue, Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
instance Property "NetworkConfig" ProcessingJob where
type PropertyType "NetworkConfig" ProcessingJob = NetworkConfigProperty
set :: PropertyType "NetworkConfig" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "NetworkConfig" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {networkConfig :: Maybe NetworkConfigProperty
networkConfig = NetworkConfigProperty -> Maybe NetworkConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "NetworkConfig" ProcessingJob
NetworkConfigProperty
newValue, Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
instance Property "ProcessingInputs" ProcessingJob where
type PropertyType "ProcessingInputs" ProcessingJob = [ProcessingInputsObjectProperty]
set :: PropertyType "ProcessingInputs" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "ProcessingInputs" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingInputs = [ProcessingInputsObjectProperty]
-> Maybe [ProcessingInputsObjectProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [ProcessingInputsObjectProperty]
PropertyType "ProcessingInputs" ProcessingJob
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
instance Property "ProcessingJobName" ProcessingJob where
type PropertyType "ProcessingJobName" ProcessingJob = Value Prelude.Text
set :: PropertyType "ProcessingJobName" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "ProcessingJobName" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {processingJobName :: Maybe (Value Text)
processingJobName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ProcessingJobName" ProcessingJob
Value Text
newValue, Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
instance Property "ProcessingOutputConfig" ProcessingJob where
type PropertyType "ProcessingOutputConfig" ProcessingJob = ProcessingOutputConfigProperty
set :: PropertyType "ProcessingOutputConfig" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "ProcessingOutputConfig" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob
{processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingOutputConfig = ProcessingOutputConfigProperty
-> Maybe ProcessingOutputConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ProcessingOutputConfig" ProcessingJob
ProcessingOutputConfigProperty
newValue, Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
instance Property "ProcessingResources" ProcessingJob where
type PropertyType "ProcessingResources" ProcessingJob = ProcessingResourcesProperty
set :: PropertyType "ProcessingResources" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "ProcessingResources" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {processingResources :: ProcessingResourcesProperty
processingResources = PropertyType "ProcessingResources" ProcessingJob
ProcessingResourcesProperty
newValue, Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
instance Property "RoleArn" ProcessingJob where
type PropertyType "RoleArn" ProcessingJob = Value Prelude.Text
set :: PropertyType "RoleArn" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "RoleArn" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {roleArn :: Value Text
roleArn = PropertyType "RoleArn" ProcessingJob
Value Text
newValue, Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
instance Property "StoppingCondition" ProcessingJob where
type PropertyType "StoppingCondition" ProcessingJob = StoppingConditionProperty
set :: PropertyType "StoppingCondition" ProcessingJob
-> ProcessingJob -> ProcessingJob
set PropertyType "StoppingCondition" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {stoppingCondition :: Maybe StoppingConditionProperty
stoppingCondition = StoppingConditionProperty -> Maybe StoppingConditionProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "StoppingCondition" ProcessingJob
StoppingConditionProperty
newValue, Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
tags :: Maybe [Tag]
..}
instance Property "Tags" ProcessingJob where
type PropertyType "Tags" ProcessingJob = [Tag]
set :: PropertyType "Tags" ProcessingJob -> ProcessingJob -> ProcessingJob
set PropertyType "Tags" ProcessingJob
newValue ProcessingJob {Maybe [Tag]
Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ProcessingJob -> ()
appSpecification :: ProcessingJob -> AppSpecificationProperty
environment :: ProcessingJob -> Maybe (Map Text (Value Text))
experimentConfig :: ProcessingJob -> Maybe ExperimentConfigProperty
networkConfig :: ProcessingJob -> Maybe NetworkConfigProperty
processingInputs :: ProcessingJob -> Maybe [ProcessingInputsObjectProperty]
processingJobName :: ProcessingJob -> Maybe (Value Text)
processingOutputConfig :: ProcessingJob -> Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingJob -> ProcessingResourcesProperty
roleArn :: ProcessingJob -> Value Text
stoppingCondition :: ProcessingJob -> Maybe StoppingConditionProperty
tags :: ProcessingJob -> Maybe [Tag]
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
tags :: Maybe [Tag]
..}
= ProcessingJob {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" ProcessingJob
newValue, Maybe [ProcessingInputsObjectProperty]
Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe ExperimentConfigProperty
Maybe ProcessingOutputConfigProperty
Maybe StoppingConditionProperty
Maybe NetworkConfigProperty
()
Value Text
AppSpecificationProperty
ProcessingResourcesProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
haddock_workaround_ :: ()
appSpecification :: AppSpecificationProperty
environment :: Maybe (Map Text (Value Text))
experimentConfig :: Maybe ExperimentConfigProperty
networkConfig :: Maybe NetworkConfigProperty
processingInputs :: Maybe [ProcessingInputsObjectProperty]
processingJobName :: Maybe (Value Text)
processingOutputConfig :: Maybe ProcessingOutputConfigProperty
processingResources :: ProcessingResourcesProperty
roleArn :: Value Text
stoppingCondition :: Maybe StoppingConditionProperty
..}