stratosphere-0.3.0: library-gen/Stratosphere/Resources/WAFWebACL.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html
module Stratosphere.Resources.WAFWebACL where
import Control.Lens
import Data.Aeson
import Data.Aeson.Types
import Data.Text
import GHC.Generics
import Stratosphere.Values
import Stratosphere.ResourceProperties.WAFWebACLWafAction
import Stratosphere.ResourceProperties.WAFWebACLActivatedRule
-- | Full data type definition for WAFWebACL. See 'wafWebACL' for a more
-- | convenient constructor.
data WAFWebACL =
WAFWebACL
{ _wAFWebACLDefaultAction :: WAFWebACLWafAction
, _wAFWebACLMetricName :: Val Text
, _wAFWebACLName :: Val Text
, _wAFWebACLRules :: Maybe [WAFWebACLActivatedRule]
} deriving (Show, Generic)
instance ToJSON WAFWebACL where
toJSON = genericToJSON defaultOptions { fieldLabelModifier = Prelude.drop 10, omitNothingFields = True }
instance FromJSON WAFWebACL where
parseJSON = genericParseJSON defaultOptions { fieldLabelModifier = Prelude.drop 10, omitNothingFields = True }
-- | Constructor for 'WAFWebACL' containing required fields as arguments.
wafWebACL
:: WAFWebACLWafAction -- ^ 'wafwaclDefaultAction'
-> Val Text -- ^ 'wafwaclMetricName'
-> Val Text -- ^ 'wafwaclName'
-> WAFWebACL
wafWebACL defaultActionarg metricNamearg namearg =
WAFWebACL
{ _wAFWebACLDefaultAction = defaultActionarg
, _wAFWebACLMetricName = metricNamearg
, _wAFWebACLName = namearg
, _wAFWebACLRules = Nothing
}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-defaultaction
wafwaclDefaultAction :: Lens' WAFWebACL WAFWebACLWafAction
wafwaclDefaultAction = lens _wAFWebACLDefaultAction (\s a -> s { _wAFWebACLDefaultAction = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname
wafwaclMetricName :: Lens' WAFWebACL (Val Text)
wafwaclMetricName = lens _wAFWebACLMetricName (\s a -> s { _wAFWebACLMetricName = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name
wafwaclName :: Lens' WAFWebACL (Val Text)
wafwaclName = lens _wAFWebACLName (\s a -> s { _wAFWebACLName = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-rules
wafwaclRules :: Lens' WAFWebACL (Maybe [WAFWebACLActivatedRule])
wafwaclRules = lens _wAFWebACLRules (\s a -> s { _wAFWebACLRules = a })