module Stratosphere.NetworkFirewall.RuleGroup (
module Exports, RuleGroup(..), mkRuleGroup
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.NetworkFirewall.RuleGroup.RuleGroupProperty as Exports
import {-# SOURCE #-} Stratosphere.NetworkFirewall.RuleGroup.SummaryConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data RuleGroup
=
RuleGroup {RuleGroup -> ()
haddock_workaround_ :: (),
RuleGroup -> Value Integer
capacity :: (Value Prelude.Integer),
RuleGroup -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
RuleGroup -> Maybe RuleGroupProperty
ruleGroup :: (Prelude.Maybe RuleGroupProperty),
RuleGroup -> Value Text
ruleGroupName :: (Value Prelude.Text),
RuleGroup -> Maybe SummaryConfigurationProperty
summaryConfiguration :: (Prelude.Maybe SummaryConfigurationProperty),
RuleGroup -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
RuleGroup -> Value Text
type' :: (Value Prelude.Text)}
deriving stock (RuleGroup -> RuleGroup -> Bool
(RuleGroup -> RuleGroup -> Bool)
-> (RuleGroup -> RuleGroup -> Bool) -> Eq RuleGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: RuleGroup -> RuleGroup -> Bool
== :: RuleGroup -> RuleGroup -> Bool
$c/= :: RuleGroup -> RuleGroup -> Bool
/= :: RuleGroup -> RuleGroup -> Bool
Prelude.Eq, Int -> RuleGroup -> ShowS
[RuleGroup] -> ShowS
RuleGroup -> String
(Int -> RuleGroup -> ShowS)
-> (RuleGroup -> String)
-> ([RuleGroup] -> ShowS)
-> Show RuleGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> RuleGroup -> ShowS
showsPrec :: Int -> RuleGroup -> ShowS
$cshow :: RuleGroup -> String
show :: RuleGroup -> String
$cshowList :: [RuleGroup] -> ShowS
showList :: [RuleGroup] -> ShowS
Prelude.Show)
mkRuleGroup ::
Value Prelude.Integer
-> Value Prelude.Text -> Value Prelude.Text -> RuleGroup
mkRuleGroup :: Value Integer -> Value Text -> Value Text -> RuleGroup
mkRuleGroup Value Integer
capacity Value Text
ruleGroupName Value Text
type'
= RuleGroup
{haddock_workaround_ :: ()
haddock_workaround_ = (), capacity :: Value Integer
capacity = Value Integer
capacity,
ruleGroupName :: Value Text
ruleGroupName = Value Text
ruleGroupName, type' :: Value Text
type' = Value Text
type',
description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, ruleGroup :: Maybe RuleGroupProperty
ruleGroup = Maybe RuleGroupProperty
forall a. Maybe a
Prelude.Nothing,
summaryConfiguration :: Maybe SummaryConfigurationProperty
summaryConfiguration = Maybe SummaryConfigurationProperty
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties RuleGroup where
toResourceProperties :: RuleGroup -> ResourceProperties
toResourceProperties RuleGroup {Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: RuleGroup -> ()
capacity :: RuleGroup -> Value Integer
description :: RuleGroup -> Maybe (Value Text)
ruleGroup :: RuleGroup -> Maybe RuleGroupProperty
ruleGroupName :: RuleGroup -> Value Text
summaryConfiguration :: RuleGroup -> Maybe SummaryConfigurationProperty
tags :: RuleGroup -> Maybe [Tag]
type' :: RuleGroup -> Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::NetworkFirewall::RuleGroup",
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
"Capacity" 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..= Value Integer
capacity,
Key
"RuleGroupName" 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
ruleGroupName, Key
"Type" 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
type']
([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 -> RuleGroupProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RuleGroup" (RuleGroupProperty -> (Key, Value))
-> Maybe RuleGroupProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RuleGroupProperty
ruleGroup,
Key -> SummaryConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SummaryConfiguration" (SummaryConfigurationProperty -> (Key, Value))
-> Maybe SummaryConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SummaryConfigurationProperty
summaryConfiguration,
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 RuleGroup where
toJSON :: RuleGroup -> Value
toJSON RuleGroup {Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: RuleGroup -> ()
capacity :: RuleGroup -> Value Integer
description :: RuleGroup -> Maybe (Value Text)
ruleGroup :: RuleGroup -> Maybe RuleGroupProperty
ruleGroupName :: RuleGroup -> Value Text
summaryConfiguration :: RuleGroup -> Maybe SummaryConfigurationProperty
tags :: RuleGroup -> Maybe [Tag]
type' :: RuleGroup -> Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: 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
"Capacity" 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..= Value Integer
capacity,
Key
"RuleGroupName" 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
ruleGroupName, Key
"Type" 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
type']
([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 -> RuleGroupProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RuleGroup" (RuleGroupProperty -> (Key, Value))
-> Maybe RuleGroupProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RuleGroupProperty
ruleGroup,
Key -> SummaryConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SummaryConfiguration" (SummaryConfigurationProperty -> (Key, Value))
-> Maybe SummaryConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SummaryConfigurationProperty
summaryConfiguration,
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 "Capacity" RuleGroup where
type PropertyType "Capacity" RuleGroup = Value Prelude.Integer
set :: PropertyType "Capacity" RuleGroup -> RuleGroup -> RuleGroup
set PropertyType "Capacity" RuleGroup
newValue RuleGroup {Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: RuleGroup -> ()
capacity :: RuleGroup -> Value Integer
description :: RuleGroup -> Maybe (Value Text)
ruleGroup :: RuleGroup -> Maybe RuleGroupProperty
ruleGroupName :: RuleGroup -> Value Text
summaryConfiguration :: RuleGroup -> Maybe SummaryConfigurationProperty
tags :: RuleGroup -> Maybe [Tag]
type' :: RuleGroup -> Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..} = RuleGroup {capacity :: Value Integer
capacity = PropertyType "Capacity" RuleGroup
Value Integer
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "Description" RuleGroup where
type PropertyType "Description" RuleGroup = Value Prelude.Text
set :: PropertyType "Description" RuleGroup -> RuleGroup -> RuleGroup
set PropertyType "Description" RuleGroup
newValue RuleGroup {Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: RuleGroup -> ()
capacity :: RuleGroup -> Value Integer
description :: RuleGroup -> Maybe (Value Text)
ruleGroup :: RuleGroup -> Maybe RuleGroupProperty
ruleGroupName :: RuleGroup -> Value Text
summaryConfiguration :: RuleGroup -> Maybe SummaryConfigurationProperty
tags :: RuleGroup -> Maybe [Tag]
type' :: RuleGroup -> Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
= RuleGroup {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" RuleGroup
Value Text
newValue, Maybe [Tag]
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "RuleGroup" RuleGroup where
type PropertyType "RuleGroup" RuleGroup = RuleGroupProperty
set :: PropertyType "RuleGroup" RuleGroup -> RuleGroup -> RuleGroup
set PropertyType "RuleGroup" RuleGroup
newValue RuleGroup {Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: RuleGroup -> ()
capacity :: RuleGroup -> Value Integer
description :: RuleGroup -> Maybe (Value Text)
ruleGroup :: RuleGroup -> Maybe RuleGroupProperty
ruleGroupName :: RuleGroup -> Value Text
summaryConfiguration :: RuleGroup -> Maybe SummaryConfigurationProperty
tags :: RuleGroup -> Maybe [Tag]
type' :: RuleGroup -> Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
= RuleGroup {ruleGroup :: Maybe RuleGroupProperty
ruleGroup = RuleGroupProperty -> Maybe RuleGroupProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RuleGroup" RuleGroup
RuleGroupProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "RuleGroupName" RuleGroup where
type PropertyType "RuleGroupName" RuleGroup = Value Prelude.Text
set :: PropertyType "RuleGroupName" RuleGroup -> RuleGroup -> RuleGroup
set PropertyType "RuleGroupName" RuleGroup
newValue RuleGroup {Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: RuleGroup -> ()
capacity :: RuleGroup -> Value Integer
description :: RuleGroup -> Maybe (Value Text)
ruleGroup :: RuleGroup -> Maybe RuleGroupProperty
ruleGroupName :: RuleGroup -> Value Text
summaryConfiguration :: RuleGroup -> Maybe SummaryConfigurationProperty
tags :: RuleGroup -> Maybe [Tag]
type' :: RuleGroup -> Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
= RuleGroup {ruleGroupName :: Value Text
ruleGroupName = PropertyType "RuleGroupName" RuleGroup
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "SummaryConfiguration" RuleGroup where
type PropertyType "SummaryConfiguration" RuleGroup = SummaryConfigurationProperty
set :: PropertyType "SummaryConfiguration" RuleGroup
-> RuleGroup -> RuleGroup
set PropertyType "SummaryConfiguration" RuleGroup
newValue RuleGroup {Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: RuleGroup -> ()
capacity :: RuleGroup -> Value Integer
description :: RuleGroup -> Maybe (Value Text)
ruleGroup :: RuleGroup -> Maybe RuleGroupProperty
ruleGroupName :: RuleGroup -> Value Text
summaryConfiguration :: RuleGroup -> Maybe SummaryConfigurationProperty
tags :: RuleGroup -> Maybe [Tag]
type' :: RuleGroup -> Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
= RuleGroup {summaryConfiguration :: Maybe SummaryConfigurationProperty
summaryConfiguration = SummaryConfigurationProperty -> Maybe SummaryConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SummaryConfiguration" RuleGroup
SummaryConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
tags :: Maybe [Tag]
type' :: Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
tags :: Maybe [Tag]
type' :: Value Text
..}
instance Property "Tags" RuleGroup where
type PropertyType "Tags" RuleGroup = [Tag]
set :: PropertyType "Tags" RuleGroup -> RuleGroup -> RuleGroup
set PropertyType "Tags" RuleGroup
newValue RuleGroup {Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: RuleGroup -> ()
capacity :: RuleGroup -> Value Integer
description :: RuleGroup -> Maybe (Value Text)
ruleGroup :: RuleGroup -> Maybe RuleGroupProperty
ruleGroupName :: RuleGroup -> Value Text
summaryConfiguration :: RuleGroup -> Maybe SummaryConfigurationProperty
tags :: RuleGroup -> Maybe [Tag]
type' :: RuleGroup -> Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..}
= RuleGroup {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" RuleGroup
newValue, Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
type' :: Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
type' :: Value Text
..}
instance Property "Type" RuleGroup where
type PropertyType "Type" RuleGroup = Value Prelude.Text
set :: PropertyType "Type" RuleGroup -> RuleGroup -> RuleGroup
set PropertyType "Type" RuleGroup
newValue RuleGroup {Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: RuleGroup -> ()
capacity :: RuleGroup -> Value Integer
description :: RuleGroup -> Maybe (Value Text)
ruleGroup :: RuleGroup -> Maybe RuleGroupProperty
ruleGroupName :: RuleGroup -> Value Text
summaryConfiguration :: RuleGroup -> Maybe SummaryConfigurationProperty
tags :: RuleGroup -> Maybe [Tag]
type' :: RuleGroup -> Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
type' :: Value Text
..} = RuleGroup {type' :: Value Text
type' = PropertyType "Type" RuleGroup
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe SummaryConfigurationProperty
Maybe RuleGroupProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
capacity :: Value Integer
description :: Maybe (Value Text)
ruleGroup :: Maybe RuleGroupProperty
ruleGroupName :: Value Text
summaryConfiguration :: Maybe SummaryConfigurationProperty
tags :: Maybe [Tag]
..}