stratosphere-0.15.2: library-gen/Stratosphere/ResourceProperties/ConfigConfigRuleScope.hs
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TupleSections #-}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html
module Stratosphere.ResourceProperties.ConfigConfigRuleScope where
import Stratosphere.ResourceImports
-- | Full data type definition for ConfigConfigRuleScope. See
-- 'configConfigRuleScope' for a more convenient constructor.
data ConfigConfigRuleScope =
ConfigConfigRuleScope
{ _configConfigRuleScopeComplianceResourceId :: Maybe (Val Text)
, _configConfigRuleScopeComplianceResourceTypes :: Maybe (ValList Text)
, _configConfigRuleScopeTagKey :: Maybe (Val Text)
, _configConfigRuleScopeTagValue :: Maybe (Val Text)
} deriving (Show, Eq)
instance ToJSON ConfigConfigRuleScope where
toJSON ConfigConfigRuleScope{..} =
object $
catMaybes
[ fmap (("ComplianceResourceId",) . toJSON) _configConfigRuleScopeComplianceResourceId
, fmap (("ComplianceResourceTypes",) . toJSON) _configConfigRuleScopeComplianceResourceTypes
, fmap (("TagKey",) . toJSON) _configConfigRuleScopeTagKey
, fmap (("TagValue",) . toJSON) _configConfigRuleScopeTagValue
]
instance FromJSON ConfigConfigRuleScope where
parseJSON (Object obj) =
ConfigConfigRuleScope <$>
(obj .:? "ComplianceResourceId") <*>
(obj .:? "ComplianceResourceTypes") <*>
(obj .:? "TagKey") <*>
(obj .:? "TagValue")
parseJSON _ = mempty
-- | Constructor for 'ConfigConfigRuleScope' containing required fields as
-- arguments.
configConfigRuleScope
:: ConfigConfigRuleScope
configConfigRuleScope =
ConfigConfigRuleScope
{ _configConfigRuleScopeComplianceResourceId = Nothing
, _configConfigRuleScopeComplianceResourceTypes = Nothing
, _configConfigRuleScopeTagKey = Nothing
, _configConfigRuleScopeTagValue = Nothing
}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid
ccrsComplianceResourceId :: Lens' ConfigConfigRuleScope (Maybe (Val Text))
ccrsComplianceResourceId = lens _configConfigRuleScopeComplianceResourceId (\s a -> s { _configConfigRuleScopeComplianceResourceId = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourcetypes
ccrsComplianceResourceTypes :: Lens' ConfigConfigRuleScope (Maybe (ValList Text))
ccrsComplianceResourceTypes = lens _configConfigRuleScopeComplianceResourceTypes (\s a -> s { _configConfigRuleScopeComplianceResourceTypes = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey
ccrsTagKey :: Lens' ConfigConfigRuleScope (Maybe (Val Text))
ccrsTagKey = lens _configConfigRuleScopeTagKey (\s a -> s { _configConfigRuleScopeTagKey = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue
ccrsTagValue :: Lens' ConfigConfigRuleScope (Maybe (Val Text))
ccrsTagValue = lens _configConfigRuleScopeTagValue (\s a -> s { _configConfigRuleScopeTagValue = a })