{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Network.AWS.Lambda.DeleteAlias -- Copyright : (c) 2013-2017 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Deletes the specified Lambda function alias. For more information, see . -- -- -- This requires permission for the lambda:DeleteAlias action. -- module Network.AWS.Lambda.DeleteAlias ( -- * Creating a Request deleteAlias , DeleteAlias -- * Request Lenses , daFunctionName , daName -- * Destructuring the Response , deleteAliasResponse , DeleteAliasResponse ) where import Network.AWS.Lambda.Types import Network.AWS.Lambda.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'deleteAlias' smart constructor. data DeleteAlias = DeleteAlias' { _daFunctionName :: !Text , _daName :: !Text } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'DeleteAlias' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'daFunctionName' - The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing. Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 characters in length. -- -- * 'daName' - Name of the alias to delete. deleteAlias :: Text -- ^ 'daFunctionName' -> Text -- ^ 'daName' -> DeleteAlias deleteAlias pFunctionName_ pName_ = DeleteAlias' {_daFunctionName = pFunctionName_, _daName = pName_} -- | The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing. Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 characters in length. daFunctionName :: Lens' DeleteAlias Text daFunctionName = lens _daFunctionName (\ s a -> s{_daFunctionName = a}); -- | Name of the alias to delete. daName :: Lens' DeleteAlias Text daName = lens _daName (\ s a -> s{_daName = a}); instance AWSRequest DeleteAlias where type Rs DeleteAlias = DeleteAliasResponse request = delete lambda response = receiveNull DeleteAliasResponse' instance Hashable DeleteAlias where instance NFData DeleteAlias where instance ToHeaders DeleteAlias where toHeaders = const mempty instance ToPath DeleteAlias where toPath DeleteAlias'{..} = mconcat ["/2015-03-31/functions/", toBS _daFunctionName, "/aliases/", toBS _daName] instance ToQuery DeleteAlias where toQuery = const mempty -- | /See:/ 'deleteAliasResponse' smart constructor. data DeleteAliasResponse = DeleteAliasResponse' deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'DeleteAliasResponse' with the minimum fields required to make a request. -- deleteAliasResponse :: DeleteAliasResponse deleteAliasResponse = DeleteAliasResponse' instance NFData DeleteAliasResponse where