module Stratosphere.SSMIncidents.ResponsePlan.SsmAutomationProperty (
module Exports, SsmAutomationProperty(..), mkSsmAutomationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.SSMIncidents.ResponsePlan.DynamicSsmParameterProperty as Exports
import {-# SOURCE #-} Stratosphere.SSMIncidents.ResponsePlan.SsmParameterProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data SsmAutomationProperty
=
SsmAutomationProperty {SsmAutomationProperty -> ()
haddock_workaround_ :: (),
SsmAutomationProperty -> Value Text
documentName :: (Value Prelude.Text),
SsmAutomationProperty -> Maybe (Value Text)
documentVersion :: (Prelude.Maybe (Value Prelude.Text)),
SsmAutomationProperty -> Maybe [DynamicSsmParameterProperty]
dynamicParameters :: (Prelude.Maybe [DynamicSsmParameterProperty]),
SsmAutomationProperty -> Maybe [SsmParameterProperty]
parameters :: (Prelude.Maybe [SsmParameterProperty]),
SsmAutomationProperty -> Value Text
roleArn :: (Value Prelude.Text),
SsmAutomationProperty -> Maybe (Value Text)
targetAccount :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (SsmAutomationProperty -> SsmAutomationProperty -> Bool
(SsmAutomationProperty -> SsmAutomationProperty -> Bool)
-> (SsmAutomationProperty -> SsmAutomationProperty -> Bool)
-> Eq SsmAutomationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: SsmAutomationProperty -> SsmAutomationProperty -> Bool
== :: SsmAutomationProperty -> SsmAutomationProperty -> Bool
$c/= :: SsmAutomationProperty -> SsmAutomationProperty -> Bool
/= :: SsmAutomationProperty -> SsmAutomationProperty -> Bool
Prelude.Eq, Int -> SsmAutomationProperty -> ShowS
[SsmAutomationProperty] -> ShowS
SsmAutomationProperty -> String
(Int -> SsmAutomationProperty -> ShowS)
-> (SsmAutomationProperty -> String)
-> ([SsmAutomationProperty] -> ShowS)
-> Show SsmAutomationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> SsmAutomationProperty -> ShowS
showsPrec :: Int -> SsmAutomationProperty -> ShowS
$cshow :: SsmAutomationProperty -> String
show :: SsmAutomationProperty -> String
$cshowList :: [SsmAutomationProperty] -> ShowS
showList :: [SsmAutomationProperty] -> ShowS
Prelude.Show)
mkSsmAutomationProperty ::
Value Prelude.Text -> Value Prelude.Text -> SsmAutomationProperty
mkSsmAutomationProperty :: Value Text -> Value Text -> SsmAutomationProperty
mkSsmAutomationProperty Value Text
documentName Value Text
roleArn
= SsmAutomationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), documentName :: Value Text
documentName = Value Text
documentName,
roleArn :: Value Text
roleArn = Value Text
roleArn, documentVersion :: Maybe (Value Text)
documentVersion = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
dynamicParameters = Maybe [DynamicSsmParameterProperty]
forall a. Maybe a
Prelude.Nothing, parameters :: Maybe [SsmParameterProperty]
parameters = Maybe [SsmParameterProperty]
forall a. Maybe a
Prelude.Nothing,
targetAccount :: Maybe (Value Text)
targetAccount = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties SsmAutomationProperty where
toResourceProperties :: SsmAutomationProperty -> ResourceProperties
toResourceProperties SsmAutomationProperty {Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SsmAutomationProperty -> ()
documentName :: SsmAutomationProperty -> Value Text
documentVersion :: SsmAutomationProperty -> Maybe (Value Text)
dynamicParameters :: SsmAutomationProperty -> Maybe [DynamicSsmParameterProperty]
parameters :: SsmAutomationProperty -> Maybe [SsmParameterProperty]
roleArn :: SsmAutomationProperty -> Value Text
targetAccount :: SsmAutomationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::SSMIncidents::ResponsePlan.SsmAutomation",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"DocumentName" 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
documentName, 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 -> 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
"DocumentVersion" (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)
documentVersion,
Key -> [DynamicSsmParameterProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DynamicParameters" ([DynamicSsmParameterProperty] -> (Key, Value))
-> Maybe [DynamicSsmParameterProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DynamicSsmParameterProperty]
dynamicParameters,
Key -> [SsmParameterProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Parameters" ([SsmParameterProperty] -> (Key, Value))
-> Maybe [SsmParameterProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [SsmParameterProperty]
parameters,
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
"TargetAccount" (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)
targetAccount]))}
instance JSON.ToJSON SsmAutomationProperty where
toJSON :: SsmAutomationProperty -> Value
toJSON SsmAutomationProperty {Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SsmAutomationProperty -> ()
documentName :: SsmAutomationProperty -> Value Text
documentVersion :: SsmAutomationProperty -> Maybe (Value Text)
dynamicParameters :: SsmAutomationProperty -> Maybe [DynamicSsmParameterProperty]
parameters :: SsmAutomationProperty -> Maybe [SsmParameterProperty]
roleArn :: SsmAutomationProperty -> Value Text
targetAccount :: SsmAutomationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"DocumentName" 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
documentName, 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 -> 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
"DocumentVersion" (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)
documentVersion,
Key -> [DynamicSsmParameterProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DynamicParameters" ([DynamicSsmParameterProperty] -> (Key, Value))
-> Maybe [DynamicSsmParameterProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DynamicSsmParameterProperty]
dynamicParameters,
Key -> [SsmParameterProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Parameters" ([SsmParameterProperty] -> (Key, Value))
-> Maybe [SsmParameterProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [SsmParameterProperty]
parameters,
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
"TargetAccount" (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)
targetAccount])))
instance Property "DocumentName" SsmAutomationProperty where
type PropertyType "DocumentName" SsmAutomationProperty = Value Prelude.Text
set :: PropertyType "DocumentName" SsmAutomationProperty
-> SsmAutomationProperty -> SsmAutomationProperty
set PropertyType "DocumentName" SsmAutomationProperty
newValue SsmAutomationProperty {Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SsmAutomationProperty -> ()
documentName :: SsmAutomationProperty -> Value Text
documentVersion :: SsmAutomationProperty -> Maybe (Value Text)
dynamicParameters :: SsmAutomationProperty -> Maybe [DynamicSsmParameterProperty]
parameters :: SsmAutomationProperty -> Maybe [SsmParameterProperty]
roleArn :: SsmAutomationProperty -> Value Text
targetAccount :: SsmAutomationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
= SsmAutomationProperty {documentName :: Value Text
documentName = PropertyType "DocumentName" SsmAutomationProperty
Value Text
newValue, Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
haddock_workaround_ :: ()
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
instance Property "DocumentVersion" SsmAutomationProperty where
type PropertyType "DocumentVersion" SsmAutomationProperty = Value Prelude.Text
set :: PropertyType "DocumentVersion" SsmAutomationProperty
-> SsmAutomationProperty -> SsmAutomationProperty
set PropertyType "DocumentVersion" SsmAutomationProperty
newValue SsmAutomationProperty {Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SsmAutomationProperty -> ()
documentName :: SsmAutomationProperty -> Value Text
documentVersion :: SsmAutomationProperty -> Maybe (Value Text)
dynamicParameters :: SsmAutomationProperty -> Maybe [DynamicSsmParameterProperty]
parameters :: SsmAutomationProperty -> Maybe [SsmParameterProperty]
roleArn :: SsmAutomationProperty -> Value Text
targetAccount :: SsmAutomationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
= SsmAutomationProperty
{documentVersion :: Maybe (Value Text)
documentVersion = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DocumentVersion" SsmAutomationProperty
Value Text
newValue, Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
documentName :: Value Text
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
instance Property "DynamicParameters" SsmAutomationProperty where
type PropertyType "DynamicParameters" SsmAutomationProperty = [DynamicSsmParameterProperty]
set :: PropertyType "DynamicParameters" SsmAutomationProperty
-> SsmAutomationProperty -> SsmAutomationProperty
set PropertyType "DynamicParameters" SsmAutomationProperty
newValue SsmAutomationProperty {Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SsmAutomationProperty -> ()
documentName :: SsmAutomationProperty -> Value Text
documentVersion :: SsmAutomationProperty -> Maybe (Value Text)
dynamicParameters :: SsmAutomationProperty -> Maybe [DynamicSsmParameterProperty]
parameters :: SsmAutomationProperty -> Maybe [SsmParameterProperty]
roleArn :: SsmAutomationProperty -> Value Text
targetAccount :: SsmAutomationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
= SsmAutomationProperty
{dynamicParameters :: Maybe [DynamicSsmParameterProperty]
dynamicParameters = [DynamicSsmParameterProperty]
-> Maybe [DynamicSsmParameterProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [DynamicSsmParameterProperty]
PropertyType "DynamicParameters" SsmAutomationProperty
newValue, Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
instance Property "Parameters" SsmAutomationProperty where
type PropertyType "Parameters" SsmAutomationProperty = [SsmParameterProperty]
set :: PropertyType "Parameters" SsmAutomationProperty
-> SsmAutomationProperty -> SsmAutomationProperty
set PropertyType "Parameters" SsmAutomationProperty
newValue SsmAutomationProperty {Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SsmAutomationProperty -> ()
documentName :: SsmAutomationProperty -> Value Text
documentVersion :: SsmAutomationProperty -> Maybe (Value Text)
dynamicParameters :: SsmAutomationProperty -> Maybe [DynamicSsmParameterProperty]
parameters :: SsmAutomationProperty -> Maybe [SsmParameterProperty]
roleArn :: SsmAutomationProperty -> Value Text
targetAccount :: SsmAutomationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
= SsmAutomationProperty {parameters :: Maybe [SsmParameterProperty]
parameters = [SsmParameterProperty] -> Maybe [SsmParameterProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [SsmParameterProperty]
PropertyType "Parameters" SsmAutomationProperty
newValue, Maybe [DynamicSsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
instance Property "RoleArn" SsmAutomationProperty where
type PropertyType "RoleArn" SsmAutomationProperty = Value Prelude.Text
set :: PropertyType "RoleArn" SsmAutomationProperty
-> SsmAutomationProperty -> SsmAutomationProperty
set PropertyType "RoleArn" SsmAutomationProperty
newValue SsmAutomationProperty {Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SsmAutomationProperty -> ()
documentName :: SsmAutomationProperty -> Value Text
documentVersion :: SsmAutomationProperty -> Maybe (Value Text)
dynamicParameters :: SsmAutomationProperty -> Maybe [DynamicSsmParameterProperty]
parameters :: SsmAutomationProperty -> Maybe [SsmParameterProperty]
roleArn :: SsmAutomationProperty -> Value Text
targetAccount :: SsmAutomationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
= SsmAutomationProperty {roleArn :: Value Text
roleArn = PropertyType "RoleArn" SsmAutomationProperty
Value Text
newValue, Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
targetAccount :: Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
targetAccount :: Maybe (Value Text)
..}
instance Property "TargetAccount" SsmAutomationProperty where
type PropertyType "TargetAccount" SsmAutomationProperty = Value Prelude.Text
set :: PropertyType "TargetAccount" SsmAutomationProperty
-> SsmAutomationProperty -> SsmAutomationProperty
set PropertyType "TargetAccount" SsmAutomationProperty
newValue SsmAutomationProperty {Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: SsmAutomationProperty -> ()
documentName :: SsmAutomationProperty -> Value Text
documentVersion :: SsmAutomationProperty -> Maybe (Value Text)
dynamicParameters :: SsmAutomationProperty -> Maybe [DynamicSsmParameterProperty]
parameters :: SsmAutomationProperty -> Maybe [SsmParameterProperty]
roleArn :: SsmAutomationProperty -> Value Text
targetAccount :: SsmAutomationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
targetAccount :: Maybe (Value Text)
..}
= SsmAutomationProperty {targetAccount :: Maybe (Value Text)
targetAccount = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TargetAccount" SsmAutomationProperty
Value Text
newValue, Maybe [DynamicSsmParameterProperty]
Maybe [SsmParameterProperty]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
haddock_workaround_ :: ()
documentName :: Value Text
documentVersion :: Maybe (Value Text)
dynamicParameters :: Maybe [DynamicSsmParameterProperty]
parameters :: Maybe [SsmParameterProperty]
roleArn :: Value Text
..}