amazonka-cloudwatch-logs-1.2.0: gen/Network/AWS/CloudWatchLogs/DeleteLogGroup.hs
{-# 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.CloudWatchLogs.DeleteLogGroup
-- Copyright : (c) 2013-2015 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Deletes the log group with the specified name and permanently deletes
-- all the archived log events associated with it.
--
-- /See:/ <http://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DeleteLogGroup.html AWS API Reference> for DeleteLogGroup.
module Network.AWS.CloudWatchLogs.DeleteLogGroup
(
-- * Creating a Request
deleteLogGroup
, DeleteLogGroup
-- * Request Lenses
, dlgLogGroupName
-- * Destructuring the Response
, deleteLogGroupResponse
, DeleteLogGroupResponse
) where
import Network.AWS.CloudWatchLogs.Types
import Network.AWS.CloudWatchLogs.Types.Product
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | /See:/ 'deleteLogGroup' smart constructor.
newtype DeleteLogGroup = DeleteLogGroup'
{ _dlgLogGroupName :: Text
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DeleteLogGroup' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'dlgLogGroupName'
deleteLogGroup
:: Text -- ^ 'dlgLogGroupName'
-> DeleteLogGroup
deleteLogGroup pLogGroupName_ =
DeleteLogGroup'
{ _dlgLogGroupName = pLogGroupName_
}
-- | The name of the log group to delete.
dlgLogGroupName :: Lens' DeleteLogGroup Text
dlgLogGroupName = lens _dlgLogGroupName (\ s a -> s{_dlgLogGroupName = a});
instance AWSRequest DeleteLogGroup where
type Rs DeleteLogGroup = DeleteLogGroupResponse
request = postJSON cloudWatchLogs
response = receiveNull DeleteLogGroupResponse'
instance ToHeaders DeleteLogGroup where
toHeaders
= const
(mconcat
["X-Amz-Target" =#
("Logs_20140328.DeleteLogGroup" :: ByteString),
"Content-Type" =#
("application/x-amz-json-1.1" :: ByteString)])
instance ToJSON DeleteLogGroup where
toJSON DeleteLogGroup'{..}
= object
(catMaybes
[Just ("logGroupName" .= _dlgLogGroupName)])
instance ToPath DeleteLogGroup where
toPath = const "/"
instance ToQuery DeleteLogGroup where
toQuery = const mempty
-- | /See:/ 'deleteLogGroupResponse' smart constructor.
data DeleteLogGroupResponse =
DeleteLogGroupResponse'
deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DeleteLogGroupResponse' with the minimum fields required to make a request.
--
deleteLogGroupResponse
:: DeleteLogGroupResponse
deleteLogGroupResponse = DeleteLogGroupResponse'