stratosphere-0.15.2: library-gen/Stratosphere/ResourceProperties/WAFRulePredicate.hs
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TupleSections #-}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-rule-predicates.html
module Stratosphere.ResourceProperties.WAFRulePredicate where
import Stratosphere.ResourceImports
-- | Full data type definition for WAFRulePredicate. See 'wafRulePredicate'
-- for a more convenient constructor.
data WAFRulePredicate =
WAFRulePredicate
{ _wAFRulePredicateDataId :: Val Text
, _wAFRulePredicateNegated :: Val Bool
, _wAFRulePredicateType :: Val Text
} deriving (Show, Eq)
instance ToJSON WAFRulePredicate where
toJSON WAFRulePredicate{..} =
object $
catMaybes
[ (Just . ("DataId",) . toJSON) _wAFRulePredicateDataId
, (Just . ("Negated",) . toJSON . fmap Bool') _wAFRulePredicateNegated
, (Just . ("Type",) . toJSON) _wAFRulePredicateType
]
instance FromJSON WAFRulePredicate where
parseJSON (Object obj) =
WAFRulePredicate <$>
(obj .: "DataId") <*>
fmap (fmap unBool') (obj .: "Negated") <*>
(obj .: "Type")
parseJSON _ = mempty
-- | Constructor for 'WAFRulePredicate' containing required fields as
-- arguments.
wafRulePredicate
:: Val Text -- ^ 'wafrpDataId'
-> Val Bool -- ^ 'wafrpNegated'
-> Val Text -- ^ 'wafrpType'
-> WAFRulePredicate
wafRulePredicate dataIdarg negatedarg typearg =
WAFRulePredicate
{ _wAFRulePredicateDataId = dataIdarg
, _wAFRulePredicateNegated = negatedarg
, _wAFRulePredicateType = typearg
}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-rule-predicates.html#cfn-waf-rule-predicates-dataid
wafrpDataId :: Lens' WAFRulePredicate (Val Text)
wafrpDataId = lens _wAFRulePredicateDataId (\s a -> s { _wAFRulePredicateDataId = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-rule-predicates.html#cfn-waf-rule-predicates-negated
wafrpNegated :: Lens' WAFRulePredicate (Val Bool)
wafrpNegated = lens _wAFRulePredicateNegated (\s a -> s { _wAFRulePredicateNegated = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-rule-predicates.html#cfn-waf-rule-predicates-type
wafrpType :: Lens' WAFRulePredicate (Val Text)
wafrpType = lens _wAFRulePredicateType (\s a -> s { _wAFRulePredicateType = a })