module Stratosphere.DLM.LifecyclePolicy.ScriptProperty (
ScriptProperty(..), mkScriptProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ScriptProperty
=
ScriptProperty {ScriptProperty -> ()
haddock_workaround_ :: (),
ScriptProperty -> Maybe (Value Bool)
executeOperationOnScriptFailure :: (Prelude.Maybe (Value Prelude.Bool)),
ScriptProperty -> Maybe (Value Text)
executionHandler :: (Prelude.Maybe (Value Prelude.Text)),
ScriptProperty -> Maybe (Value Text)
executionHandlerService :: (Prelude.Maybe (Value Prelude.Text)),
ScriptProperty -> Maybe (Value Integer)
executionTimeout :: (Prelude.Maybe (Value Prelude.Integer)),
ScriptProperty -> Maybe (Value Integer)
maximumRetryCount :: (Prelude.Maybe (Value Prelude.Integer)),
ScriptProperty -> Maybe (ValueList Text)
stages :: (Prelude.Maybe (ValueList Prelude.Text))}
deriving stock (ScriptProperty -> ScriptProperty -> Bool
(ScriptProperty -> ScriptProperty -> Bool)
-> (ScriptProperty -> ScriptProperty -> Bool) -> Eq ScriptProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ScriptProperty -> ScriptProperty -> Bool
== :: ScriptProperty -> ScriptProperty -> Bool
$c/= :: ScriptProperty -> ScriptProperty -> Bool
/= :: ScriptProperty -> ScriptProperty -> Bool
Prelude.Eq, Int -> ScriptProperty -> ShowS
[ScriptProperty] -> ShowS
ScriptProperty -> String
(Int -> ScriptProperty -> ShowS)
-> (ScriptProperty -> String)
-> ([ScriptProperty] -> ShowS)
-> Show ScriptProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ScriptProperty -> ShowS
showsPrec :: Int -> ScriptProperty -> ShowS
$cshow :: ScriptProperty -> String
show :: ScriptProperty -> String
$cshowList :: [ScriptProperty] -> ShowS
showList :: [ScriptProperty] -> ShowS
Prelude.Show)
mkScriptProperty :: ScriptProperty
mkScriptProperty :: ScriptProperty
mkScriptProperty
= ScriptProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (),
executeOperationOnScriptFailure :: Maybe (Value Bool)
executeOperationOnScriptFailure = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
executionHandler :: Maybe (Value Text)
executionHandler = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
executionHandlerService :: Maybe (Value Text)
executionHandlerService = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
executionTimeout :: Maybe (Value Integer)
executionTimeout = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
maximumRetryCount :: Maybe (Value Integer)
maximumRetryCount = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, stages :: Maybe (ValueList Text)
stages = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ScriptProperty where
toResourceProperties :: ScriptProperty -> ResourceProperties
toResourceProperties ScriptProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ScriptProperty -> ()
executeOperationOnScriptFailure :: ScriptProperty -> Maybe (Value Bool)
executionHandler :: ScriptProperty -> Maybe (Value Text)
executionHandlerService :: ScriptProperty -> Maybe (Value Text)
executionTimeout :: ScriptProperty -> Maybe (Value Integer)
maximumRetryCount :: ScriptProperty -> Maybe (Value Integer)
stages :: ScriptProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::DLM::LifecyclePolicy.Script",
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 -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ExecuteOperationOnScriptFailure"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
executeOperationOnScriptFailure,
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
"ExecutionHandler" (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)
executionHandler,
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
"ExecutionHandlerService"
(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)
executionHandlerService,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ExecutionTimeout" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
executionTimeout,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaximumRetryCount" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
maximumRetryCount,
Key -> ValueList 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
"Stages" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
stages])}
instance JSON.ToJSON ScriptProperty where
toJSON :: ScriptProperty -> Value
toJSON ScriptProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ScriptProperty -> ()
executeOperationOnScriptFailure :: ScriptProperty -> Maybe (Value Bool)
executionHandler :: ScriptProperty -> Maybe (Value Text)
executionHandlerService :: ScriptProperty -> Maybe (Value Text)
executionTimeout :: ScriptProperty -> Maybe (Value Integer)
maximumRetryCount :: ScriptProperty -> Maybe (Value Integer)
stages :: ScriptProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList 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 -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ExecuteOperationOnScriptFailure"
(Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
executeOperationOnScriptFailure,
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
"ExecutionHandler" (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)
executionHandler,
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
"ExecutionHandlerService"
(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)
executionHandlerService,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ExecutionTimeout" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
executionTimeout,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaximumRetryCount" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
maximumRetryCount,
Key -> ValueList 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
"Stages" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
stages]))
instance Property "ExecuteOperationOnScriptFailure" ScriptProperty where
type PropertyType "ExecuteOperationOnScriptFailure" ScriptProperty = Value Prelude.Bool
set :: PropertyType "ExecuteOperationOnScriptFailure" ScriptProperty
-> ScriptProperty -> ScriptProperty
set PropertyType "ExecuteOperationOnScriptFailure" ScriptProperty
newValue ScriptProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ScriptProperty -> ()
executeOperationOnScriptFailure :: ScriptProperty -> Maybe (Value Bool)
executionHandler :: ScriptProperty -> Maybe (Value Text)
executionHandlerService :: ScriptProperty -> Maybe (Value Text)
executionTimeout :: ScriptProperty -> Maybe (Value Integer)
maximumRetryCount :: ScriptProperty -> Maybe (Value Integer)
stages :: ScriptProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
= ScriptProperty
{executeOperationOnScriptFailure :: Maybe (Value Bool)
executeOperationOnScriptFailure = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExecuteOperationOnScriptFailure" ScriptProperty
Value Bool
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
haddock_workaround_ :: ()
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
instance Property "ExecutionHandler" ScriptProperty where
type PropertyType "ExecutionHandler" ScriptProperty = Value Prelude.Text
set :: PropertyType "ExecutionHandler" ScriptProperty
-> ScriptProperty -> ScriptProperty
set PropertyType "ExecutionHandler" ScriptProperty
newValue ScriptProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ScriptProperty -> ()
executeOperationOnScriptFailure :: ScriptProperty -> Maybe (Value Bool)
executionHandler :: ScriptProperty -> Maybe (Value Text)
executionHandlerService :: ScriptProperty -> Maybe (Value Text)
executionTimeout :: ScriptProperty -> Maybe (Value Integer)
maximumRetryCount :: ScriptProperty -> Maybe (Value Integer)
stages :: ScriptProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
= ScriptProperty {executionHandler :: Maybe (Value Text)
executionHandler = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExecutionHandler" ScriptProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
instance Property "ExecutionHandlerService" ScriptProperty where
type PropertyType "ExecutionHandlerService" ScriptProperty = Value Prelude.Text
set :: PropertyType "ExecutionHandlerService" ScriptProperty
-> ScriptProperty -> ScriptProperty
set PropertyType "ExecutionHandlerService" ScriptProperty
newValue ScriptProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ScriptProperty -> ()
executeOperationOnScriptFailure :: ScriptProperty -> Maybe (Value Bool)
executionHandler :: ScriptProperty -> Maybe (Value Text)
executionHandlerService :: ScriptProperty -> Maybe (Value Text)
executionTimeout :: ScriptProperty -> Maybe (Value Integer)
maximumRetryCount :: ScriptProperty -> Maybe (Value Integer)
stages :: ScriptProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
= ScriptProperty
{executionHandlerService :: Maybe (Value Text)
executionHandlerService = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExecutionHandlerService" ScriptProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
instance Property "ExecutionTimeout" ScriptProperty where
type PropertyType "ExecutionTimeout" ScriptProperty = Value Prelude.Integer
set :: PropertyType "ExecutionTimeout" ScriptProperty
-> ScriptProperty -> ScriptProperty
set PropertyType "ExecutionTimeout" ScriptProperty
newValue ScriptProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ScriptProperty -> ()
executeOperationOnScriptFailure :: ScriptProperty -> Maybe (Value Bool)
executionHandler :: ScriptProperty -> Maybe (Value Text)
executionHandlerService :: ScriptProperty -> Maybe (Value Text)
executionTimeout :: ScriptProperty -> Maybe (Value Integer)
maximumRetryCount :: ScriptProperty -> Maybe (Value Integer)
stages :: ScriptProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
= ScriptProperty {executionTimeout :: Maybe (Value Integer)
executionTimeout = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExecutionTimeout" ScriptProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
instance Property "MaximumRetryCount" ScriptProperty where
type PropertyType "MaximumRetryCount" ScriptProperty = Value Prelude.Integer
set :: PropertyType "MaximumRetryCount" ScriptProperty
-> ScriptProperty -> ScriptProperty
set PropertyType "MaximumRetryCount" ScriptProperty
newValue ScriptProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ScriptProperty -> ()
executeOperationOnScriptFailure :: ScriptProperty -> Maybe (Value Bool)
executionHandler :: ScriptProperty -> Maybe (Value Text)
executionHandlerService :: ScriptProperty -> Maybe (Value Text)
executionTimeout :: ScriptProperty -> Maybe (Value Integer)
maximumRetryCount :: ScriptProperty -> Maybe (Value Integer)
stages :: ScriptProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
= ScriptProperty {maximumRetryCount :: Maybe (Value Integer)
maximumRetryCount = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MaximumRetryCount" ScriptProperty
Value Integer
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
instance Property "Stages" ScriptProperty where
type PropertyType "Stages" ScriptProperty = ValueList Prelude.Text
set :: PropertyType "Stages" ScriptProperty
-> ScriptProperty -> ScriptProperty
set PropertyType "Stages" ScriptProperty
newValue ScriptProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ScriptProperty -> ()
executeOperationOnScriptFailure :: ScriptProperty -> Maybe (Value Bool)
executionHandler :: ScriptProperty -> Maybe (Value Text)
executionHandlerService :: ScriptProperty -> Maybe (Value Text)
executionTimeout :: ScriptProperty -> Maybe (Value Integer)
maximumRetryCount :: ScriptProperty -> Maybe (Value Integer)
stages :: ScriptProperty -> Maybe (ValueList Text)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
stages :: Maybe (ValueList Text)
..}
= ScriptProperty {stages :: Maybe (ValueList Text)
stages = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Stages" ScriptProperty
ValueList Text
newValue, Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
haddock_workaround_ :: ()
executeOperationOnScriptFailure :: Maybe (Value Bool)
executionHandler :: Maybe (Value Text)
executionHandlerService :: Maybe (Value Text)
executionTimeout :: Maybe (Value Integer)
maximumRetryCount :: Maybe (Value Integer)
..}