{-# LANGUAGE DataKinds                   #-}
{-# LANGUAGE DeriveGeneric               #-}
{-# LANGUAGE FlexibleInstances           #-}
{-# LANGUAGE GeneralizedNewtypeDeriving  #-}
{-# LANGUAGE LambdaCase                  #-}
{-# LANGUAGE NoImplicitPrelude           #-}
{-# LANGUAGE OverloadedStrings           #-}
{-# LANGUAGE RecordWildCards             #-}
{-# LANGUAGE TypeFamilies                #-}

{-# OPTIONS_GHC -fno-warn-unused-imports #-}

-- Module      : Network.AWS.CloudWatchLogs.DeleteLogGroup
-- Copyright   : (c) 2013-2014 Brendan Hay <brendan.g.hay@gmail.com>
-- License     : This Source Code Form is subject to the terms of
--               the Mozilla Public License, v. 2.0.
--               A copy of the MPL can be found in the LICENSE file or
--               you can obtain it at http://mozilla.org/MPL/2.0/.
-- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability   : experimental
-- Portability : non-portable (GHC extensions)
--
-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- | Deletes the log group with the specified name and permanently deletes all
-- the archived log events associated with it.
--
-- <http://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DeleteLogGroup.html>
module Network.AWS.CloudWatchLogs.DeleteLogGroup
    (
    -- * Request
      DeleteLogGroup
    -- ** Request constructor
    , deleteLogGroup
    -- ** Request lenses
    , dlgLogGroupName

    -- * Response
    , DeleteLogGroupResponse
    -- ** Response constructor
    , deleteLogGroupResponse
    ) where

import Network.AWS.Prelude
import Network.AWS.Request.JSON
import Network.AWS.CloudWatchLogs.Types
import qualified GHC.Exts

newtype DeleteLogGroup = DeleteLogGroup
    { _dlgLogGroupName :: Text
    } deriving (Eq, Ord, Show, Monoid, IsString)

-- | 'DeleteLogGroup' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'dlgLogGroupName' @::@ 'Text'
--
deleteLogGroup :: Text -- ^ 'dlgLogGroupName'
               -> DeleteLogGroup
deleteLogGroup p1 = DeleteLogGroup
    { _dlgLogGroupName = p1
    }

dlgLogGroupName :: Lens' DeleteLogGroup Text
dlgLogGroupName = lens _dlgLogGroupName (\s a -> s { _dlgLogGroupName = a })

data DeleteLogGroupResponse = DeleteLogGroupResponse
    deriving (Eq, Ord, Show, Generic)

-- | 'DeleteLogGroupResponse' constructor.
deleteLogGroupResponse :: DeleteLogGroupResponse
deleteLogGroupResponse = DeleteLogGroupResponse

instance ToPath DeleteLogGroup where
    toPath = const "/"

instance ToQuery DeleteLogGroup where
    toQuery = const mempty

instance ToHeaders DeleteLogGroup

instance ToJSON DeleteLogGroup where
    toJSON DeleteLogGroup{..} = object
        [ "logGroupName" .= _dlgLogGroupName
        ]

instance AWSRequest DeleteLogGroup where
    type Sv DeleteLogGroup = CloudWatchLogs
    type Rs DeleteLogGroup = DeleteLogGroupResponse

    request  = post "DeleteLogGroup"
    response = nullResponse DeleteLogGroupResponse