{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html module Stratosphere.ResourceProperties.OpsWorksLayerRecipes 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 OpsWorksLayerRecipes. See -- 'opsWorksLayerRecipes' for a more convenient constructor. data OpsWorksLayerRecipes = OpsWorksLayerRecipes { _opsWorksLayerRecipesConfigure :: Maybe [Val Text] , _opsWorksLayerRecipesDeploy :: Maybe [Val Text] , _opsWorksLayerRecipesSetup :: Maybe [Val Text] , _opsWorksLayerRecipesShutdown :: Maybe [Val Text] , _opsWorksLayerRecipesUndeploy :: Maybe [Val Text] } deriving (Show, Eq) instance ToJSON OpsWorksLayerRecipes where toJSON OpsWorksLayerRecipes{..} = object $ catMaybes [ ("Configure" .=) <$> _opsWorksLayerRecipesConfigure , ("Deploy" .=) <$> _opsWorksLayerRecipesDeploy , ("Setup" .=) <$> _opsWorksLayerRecipesSetup , ("Shutdown" .=) <$> _opsWorksLayerRecipesShutdown , ("Undeploy" .=) <$> _opsWorksLayerRecipesUndeploy ] instance FromJSON OpsWorksLayerRecipes where parseJSON (Object obj) = OpsWorksLayerRecipes <$> obj .:? "Configure" <*> obj .:? "Deploy" <*> obj .:? "Setup" <*> obj .:? "Shutdown" <*> obj .:? "Undeploy" parseJSON _ = mempty -- | Constructor for 'OpsWorksLayerRecipes' containing required fields as -- arguments. opsWorksLayerRecipes :: OpsWorksLayerRecipes opsWorksLayerRecipes = OpsWorksLayerRecipes { _opsWorksLayerRecipesConfigure = Nothing , _opsWorksLayerRecipesDeploy = Nothing , _opsWorksLayerRecipesSetup = Nothing , _opsWorksLayerRecipesShutdown = Nothing , _opsWorksLayerRecipesUndeploy = Nothing } -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-configure owlrConfigure :: Lens' OpsWorksLayerRecipes (Maybe [Val Text]) owlrConfigure = lens _opsWorksLayerRecipesConfigure (\s a -> s { _opsWorksLayerRecipesConfigure = a }) -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-deploy owlrDeploy :: Lens' OpsWorksLayerRecipes (Maybe [Val Text]) owlrDeploy = lens _opsWorksLayerRecipesDeploy (\s a -> s { _opsWorksLayerRecipesDeploy = a }) -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-setup owlrSetup :: Lens' OpsWorksLayerRecipes (Maybe [Val Text]) owlrSetup = lens _opsWorksLayerRecipesSetup (\s a -> s { _opsWorksLayerRecipesSetup = a }) -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-shutdown owlrShutdown :: Lens' OpsWorksLayerRecipes (Maybe [Val Text]) owlrShutdown = lens _opsWorksLayerRecipesShutdown (\s a -> s { _opsWorksLayerRecipesShutdown = a }) -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-undeploy owlrUndeploy :: Lens' OpsWorksLayerRecipes (Maybe [Val Text]) owlrUndeploy = lens _opsWorksLayerRecipesUndeploy (\s a -> s { _opsWorksLayerRecipesUndeploy = a })