{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributionconfig-restrictions-georestriction.html module Stratosphere.ResourceProperties.CloudFrontDistributionGeoRestriction where import Control.Lens hiding ((.=)) import Data.Aeson import Data.Maybe (catMaybes) import Data.Monoid (mempty) import Data.Text import Stratosphere.Values -- | Full data type definition for CloudFrontDistributionGeoRestriction. See -- 'cloudFrontDistributionGeoRestriction' for a more convenient constructor. data CloudFrontDistributionGeoRestriction = CloudFrontDistributionGeoRestriction { _cloudFrontDistributionGeoRestrictionLocations :: Maybe [Val Text] , _cloudFrontDistributionGeoRestrictionRestrictionType :: Val Text } deriving (Show, Eq) instance ToJSON CloudFrontDistributionGeoRestriction where toJSON CloudFrontDistributionGeoRestriction{..} = object $ catMaybes [ ("Locations" .=) <$> _cloudFrontDistributionGeoRestrictionLocations , Just ("RestrictionType" .= _cloudFrontDistributionGeoRestrictionRestrictionType) ] instance FromJSON CloudFrontDistributionGeoRestriction where parseJSON (Object obj) = CloudFrontDistributionGeoRestriction <$> obj .:? "Locations" <*> obj .: "RestrictionType" parseJSON _ = mempty -- | Constructor for 'CloudFrontDistributionGeoRestriction' containing -- required fields as arguments. cloudFrontDistributionGeoRestriction :: Val Text -- ^ 'cfdgrRestrictionType' -> CloudFrontDistributionGeoRestriction cloudFrontDistributionGeoRestriction restrictionTypearg = CloudFrontDistributionGeoRestriction { _cloudFrontDistributionGeoRestrictionLocations = Nothing , _cloudFrontDistributionGeoRestrictionRestrictionType = restrictionTypearg } -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributionconfig-restrictions-georestriction.html#cfn-cloudfront-distributionconfig-restrictions-georestriction-locations cfdgrLocations :: Lens' CloudFrontDistributionGeoRestriction (Maybe [Val Text]) cfdgrLocations = lens _cloudFrontDistributionGeoRestrictionLocations (\s a -> s { _cloudFrontDistributionGeoRestrictionLocations = a }) -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distributionconfig-restrictions-georestriction.html#cfn-cloudfront-distributionconfig-restrictions-georestriction-restrictiontype cfdgrRestrictionType :: Lens' CloudFrontDistributionGeoRestriction (Val Text) cfdgrRestrictionType = lens _cloudFrontDistributionGeoRestrictionRestrictionType (\s a -> s { _cloudFrontDistributionGeoRestrictionRestrictionType = a })