{-# 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.Redshift.DeleteEventSubscription -- Copyright : (c) 2013-2014 Brendan Hay -- 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 -- Stability : experimental -- Portability : non-portable (GHC extensions) -- -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Deletes an Amazon Redshift event notification subscription. -- -- module Network.AWS.Redshift.DeleteEventSubscription ( -- * Request DeleteEventSubscription -- ** Request constructor , deleteEventSubscription -- ** Request lenses , desSubscriptionName -- * Response , DeleteEventSubscriptionResponse -- ** Response constructor , deleteEventSubscriptionResponse ) where import Network.AWS.Prelude import Network.AWS.Request.Query import Network.AWS.Redshift.Types import qualified GHC.Exts newtype DeleteEventSubscription = DeleteEventSubscription { _desSubscriptionName :: Text } deriving (Eq, Ord, Read, Show, Monoid, IsString) -- | 'DeleteEventSubscription' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'desSubscriptionName' @::@ 'Text' -- deleteEventSubscription :: Text -- ^ 'desSubscriptionName' -> DeleteEventSubscription deleteEventSubscription p1 = DeleteEventSubscription { _desSubscriptionName = p1 } -- | The name of the Amazon Redshift event notification subscription to be deleted. desSubscriptionName :: Lens' DeleteEventSubscription Text desSubscriptionName = lens _desSubscriptionName (\s a -> s { _desSubscriptionName = a }) data DeleteEventSubscriptionResponse = DeleteEventSubscriptionResponse deriving (Eq, Ord, Read, Show, Generic) -- | 'DeleteEventSubscriptionResponse' constructor. deleteEventSubscriptionResponse :: DeleteEventSubscriptionResponse deleteEventSubscriptionResponse = DeleteEventSubscriptionResponse instance ToPath DeleteEventSubscription where toPath = const "/" instance ToQuery DeleteEventSubscription where toQuery DeleteEventSubscription{..} = mconcat [ "SubscriptionName" =? _desSubscriptionName ] instance ToHeaders DeleteEventSubscription instance AWSRequest DeleteEventSubscription where type Sv DeleteEventSubscription = Redshift type Rs DeleteEventSubscription = DeleteEventSubscriptionResponse request = post "DeleteEventSubscription" response = nullResponse DeleteEventSubscriptionResponse