module Stratosphere.Config.OrganizationConfigRule.OrganizationManagedRuleMetadataProperty (
OrganizationManagedRuleMetadataProperty(..),
mkOrganizationManagedRuleMetadataProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data OrganizationManagedRuleMetadataProperty
=
OrganizationManagedRuleMetadataProperty {OrganizationManagedRuleMetadataProperty -> ()
haddock_workaround_ :: (),
OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: (Prelude.Maybe (Value Prelude.Text)),
OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: (Prelude.Maybe (Value Prelude.Text)),
OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: (Prelude.Maybe (Value Prelude.Text)),
OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
resourceTypesScope :: (Prelude.Maybe (ValueList Prelude.Text)),
OrganizationManagedRuleMetadataProperty -> Value Text
ruleIdentifier :: (Value Prelude.Text),
OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagKeyScope :: (Prelude.Maybe (Value Prelude.Text)),
OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty -> Bool
(OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty -> Bool)
-> (OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty -> Bool)
-> Eq OrganizationManagedRuleMetadataProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty -> Bool
== :: OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty -> Bool
$c/= :: OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty -> Bool
/= :: OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty -> Bool
Prelude.Eq, Int -> OrganizationManagedRuleMetadataProperty -> ShowS
[OrganizationManagedRuleMetadataProperty] -> ShowS
OrganizationManagedRuleMetadataProperty -> String
(Int -> OrganizationManagedRuleMetadataProperty -> ShowS)
-> (OrganizationManagedRuleMetadataProperty -> String)
-> ([OrganizationManagedRuleMetadataProperty] -> ShowS)
-> Show OrganizationManagedRuleMetadataProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> OrganizationManagedRuleMetadataProperty -> ShowS
showsPrec :: Int -> OrganizationManagedRuleMetadataProperty -> ShowS
$cshow :: OrganizationManagedRuleMetadataProperty -> String
show :: OrganizationManagedRuleMetadataProperty -> String
$cshowList :: [OrganizationManagedRuleMetadataProperty] -> ShowS
showList :: [OrganizationManagedRuleMetadataProperty] -> ShowS
Prelude.Show)
mkOrganizationManagedRuleMetadataProperty ::
Value Prelude.Text -> OrganizationManagedRuleMetadataProperty
mkOrganizationManagedRuleMetadataProperty :: Value Text -> OrganizationManagedRuleMetadataProperty
mkOrganizationManagedRuleMetadataProperty Value Text
ruleIdentifier
= OrganizationManagedRuleMetadataProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), ruleIdentifier :: Value Text
ruleIdentifier = Value Text
ruleIdentifier,
description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, inputParameters :: Maybe (Value Text)
inputParameters = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
maximumExecutionFrequency :: Maybe (Value Text)
maximumExecutionFrequency = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
resourceIdScope :: Maybe (Value Text)
resourceIdScope = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
resourceTypesScope :: Maybe (ValueList Text)
resourceTypesScope = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
tagKeyScope :: Maybe (Value Text)
tagKeyScope = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tagValueScope :: Maybe (Value Text)
tagValueScope = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties OrganizationManagedRuleMetadataProperty where
toResourceProperties :: OrganizationManagedRuleMetadataProperty -> ResourceProperties
toResourceProperties OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::Config::OrganizationConfigRule.OrganizationManagedRuleMetadata",
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
"RuleIdentifier" 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
ruleIdentifier]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
Key -> 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
"InputParameters" (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)
inputParameters,
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
"MaximumExecutionFrequency"
(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)
maximumExecutionFrequency,
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
"ResourceIdScope" (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)
resourceIdScope,
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
"ResourceTypesScope" (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)
resourceTypesScope,
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
"TagKeyScope" (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)
tagKeyScope,
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
"TagValueScope" (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)
tagValueScope]))}
instance JSON.ToJSON OrganizationManagedRuleMetadataProperty where
toJSON :: OrganizationManagedRuleMetadataProperty -> Value
toJSON OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: 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
"RuleIdentifier" 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
ruleIdentifier]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
Key -> 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
"InputParameters" (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)
inputParameters,
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
"MaximumExecutionFrequency"
(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)
maximumExecutionFrequency,
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
"ResourceIdScope" (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)
resourceIdScope,
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
"ResourceTypesScope" (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)
resourceTypesScope,
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
"TagKeyScope" (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)
tagKeyScope,
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
"TagValueScope" (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)
tagValueScope])))
instance Property "Description" OrganizationManagedRuleMetadataProperty where
type PropertyType "Description" OrganizationManagedRuleMetadataProperty = Value Prelude.Text
set :: PropertyType "Description" OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
set PropertyType "Description" OrganizationManagedRuleMetadataProperty
newValue OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
= OrganizationManagedRuleMetadataProperty
{description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" OrganizationManagedRuleMetadataProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
haddock_workaround_ :: ()
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
instance Property "InputParameters" OrganizationManagedRuleMetadataProperty where
type PropertyType "InputParameters" OrganizationManagedRuleMetadataProperty = Value Prelude.Text
set :: PropertyType
"InputParameters" OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
set PropertyType
"InputParameters" OrganizationManagedRuleMetadataProperty
newValue OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
= OrganizationManagedRuleMetadataProperty
{inputParameters :: Maybe (Value Text)
inputParameters = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"InputParameters" OrganizationManagedRuleMetadataProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
instance Property "MaximumExecutionFrequency" OrganizationManagedRuleMetadataProperty where
type PropertyType "MaximumExecutionFrequency" OrganizationManagedRuleMetadataProperty = Value Prelude.Text
set :: PropertyType
"MaximumExecutionFrequency" OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
set PropertyType
"MaximumExecutionFrequency" OrganizationManagedRuleMetadataProperty
newValue OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
= OrganizationManagedRuleMetadataProperty
{maximumExecutionFrequency :: Maybe (Value Text)
maximumExecutionFrequency = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"MaximumExecutionFrequency" OrganizationManagedRuleMetadataProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
instance Property "ResourceIdScope" OrganizationManagedRuleMetadataProperty where
type PropertyType "ResourceIdScope" OrganizationManagedRuleMetadataProperty = Value Prelude.Text
set :: PropertyType
"ResourceIdScope" OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
set PropertyType
"ResourceIdScope" OrganizationManagedRuleMetadataProperty
newValue OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
= OrganizationManagedRuleMetadataProperty
{resourceIdScope :: Maybe (Value Text)
resourceIdScope = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"ResourceIdScope" OrganizationManagedRuleMetadataProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
instance Property "ResourceTypesScope" OrganizationManagedRuleMetadataProperty where
type PropertyType "ResourceTypesScope" OrganizationManagedRuleMetadataProperty = ValueList Prelude.Text
set :: PropertyType
"ResourceTypesScope" OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
set PropertyType
"ResourceTypesScope" OrganizationManagedRuleMetadataProperty
newValue OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
= OrganizationManagedRuleMetadataProperty
{resourceTypesScope :: Maybe (ValueList Text)
resourceTypesScope = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"ResourceTypesScope" OrganizationManagedRuleMetadataProperty
ValueList Text
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
instance Property "RuleIdentifier" OrganizationManagedRuleMetadataProperty where
type PropertyType "RuleIdentifier" OrganizationManagedRuleMetadataProperty = Value Prelude.Text
set :: PropertyType
"RuleIdentifier" OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
set PropertyType
"RuleIdentifier" OrganizationManagedRuleMetadataProperty
newValue OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
= OrganizationManagedRuleMetadataProperty
{ruleIdentifier :: Value Text
ruleIdentifier = PropertyType
"RuleIdentifier" OrganizationManagedRuleMetadataProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
instance Property "TagKeyScope" OrganizationManagedRuleMetadataProperty where
type PropertyType "TagKeyScope" OrganizationManagedRuleMetadataProperty = Value Prelude.Text
set :: PropertyType "TagKeyScope" OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
set PropertyType "TagKeyScope" OrganizationManagedRuleMetadataProperty
newValue OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
= OrganizationManagedRuleMetadataProperty
{tagKeyScope :: Maybe (Value Text)
tagKeyScope = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TagKeyScope" OrganizationManagedRuleMetadataProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagValueScope :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagValueScope :: Maybe (Value Text)
..}
instance Property "TagValueScope" OrganizationManagedRuleMetadataProperty where
type PropertyType "TagValueScope" OrganizationManagedRuleMetadataProperty = Value Prelude.Text
set :: PropertyType
"TagValueScope" OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
-> OrganizationManagedRuleMetadataProperty
set PropertyType
"TagValueScope" OrganizationManagedRuleMetadataProperty
newValue OrganizationManagedRuleMetadataProperty {Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: OrganizationManagedRuleMetadataProperty -> ()
description :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
inputParameters :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
maximumExecutionFrequency :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceIdScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
resourceTypesScope :: OrganizationManagedRuleMetadataProperty -> Maybe (ValueList Text)
ruleIdentifier :: OrganizationManagedRuleMetadataProperty -> Value Text
tagKeyScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
tagValueScope :: OrganizationManagedRuleMetadataProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
tagValueScope :: Maybe (Value Text)
..}
= OrganizationManagedRuleMetadataProperty
{tagValueScope :: Maybe (Value Text)
tagValueScope = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"TagValueScope" OrganizationManagedRuleMetadataProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
inputParameters :: Maybe (Value Text)
maximumExecutionFrequency :: Maybe (Value Text)
resourceIdScope :: Maybe (Value Text)
resourceTypesScope :: Maybe (ValueList Text)
ruleIdentifier :: Value Text
tagKeyScope :: Maybe (Value Text)
..}