{-# 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.ElastiCache.DeleteCacheSubnetGroup -- 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. -- | The /DeleteCacheSubnetGroup/ operation deletes a cache subnet group. -- -- module Network.AWS.ElastiCache.DeleteCacheSubnetGroup ( -- * Request DeleteCacheSubnetGroup -- ** Request constructor , deleteCacheSubnetGroup -- ** Request lenses , dcsg1CacheSubnetGroupName -- * Response , DeleteCacheSubnetGroupResponse -- ** Response constructor , deleteCacheSubnetGroupResponse ) where import Network.AWS.Prelude import Network.AWS.Request.Query import Network.AWS.ElastiCache.Types import qualified GHC.Exts newtype DeleteCacheSubnetGroup = DeleteCacheSubnetGroup { _dcsg1CacheSubnetGroupName :: Text } deriving (Eq, Ord, Show, Monoid, IsString) -- | 'DeleteCacheSubnetGroup' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'dcsg1CacheSubnetGroupName' @::@ 'Text' -- deleteCacheSubnetGroup :: Text -- ^ 'dcsg1CacheSubnetGroupName' -> DeleteCacheSubnetGroup deleteCacheSubnetGroup p1 = DeleteCacheSubnetGroup { _dcsg1CacheSubnetGroupName = p1 } -- | The name of the cache subnet group to delete. -- -- Constraints: Must contain no more than 255 alphanumeric characters or -- hyphens. dcsg1CacheSubnetGroupName :: Lens' DeleteCacheSubnetGroup Text dcsg1CacheSubnetGroupName = lens _dcsg1CacheSubnetGroupName (\s a -> s { _dcsg1CacheSubnetGroupName = a }) data DeleteCacheSubnetGroupResponse = DeleteCacheSubnetGroupResponse deriving (Eq, Ord, Show, Generic) -- | 'DeleteCacheSubnetGroupResponse' constructor. deleteCacheSubnetGroupResponse :: DeleteCacheSubnetGroupResponse deleteCacheSubnetGroupResponse = DeleteCacheSubnetGroupResponse instance ToPath DeleteCacheSubnetGroup where toPath = const "/" instance ToQuery DeleteCacheSubnetGroup where toQuery DeleteCacheSubnetGroup{..} = mconcat [ "CacheSubnetGroupName" =? _dcsg1CacheSubnetGroupName ] instance ToHeaders DeleteCacheSubnetGroup instance AWSRequest DeleteCacheSubnetGroup where type Sv DeleteCacheSubnetGroup = ElastiCache type Rs DeleteCacheSubnetGroup = DeleteCacheSubnetGroupResponse request = post "DeleteCacheSubnetGroup" response = nullResponse DeleteCacheSubnetGroupResponse