amazonka-redshift-1.0.0: gen/Network/AWS/Redshift/ResetClusterParameterGroup.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.Redshift.ResetClusterParameterGroup
-- 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)
--
-- Sets one or more parameters of the specified parameter group to their
-- default values and sets the source values of the parameters to
-- \"engine-default\". To reset the entire parameter group specify the
-- /ResetAllParameters/ parameter. For parameter changes to take effect you
-- must reboot any associated clusters.
--
-- /See:/ <http://docs.aws.amazon.com/redshift/latest/APIReference/API_ResetClusterParameterGroup.html AWS API Reference> for ResetClusterParameterGroup.
module Network.AWS.Redshift.ResetClusterParameterGroup
(
-- * Creating a Request
resetClusterParameterGroup
, ResetClusterParameterGroup
-- * Request Lenses
, rcpgResetAllParameters
, rcpgParameters
, rcpgParameterGroupName
-- * Destructuring the Response
, clusterParameterGroupNameMessage
, ClusterParameterGroupNameMessage
-- * Response Lenses
, cpgnmParameterGroupStatus
, cpgnmParameterGroupName
) where
import Network.AWS.Prelude
import Network.AWS.Redshift.Types
import Network.AWS.Redshift.Types.Product
import Network.AWS.Request
import Network.AWS.Response
-- |
--
-- /See:/ 'resetClusterParameterGroup' smart constructor.
data ResetClusterParameterGroup = ResetClusterParameterGroup'
{ _rcpgResetAllParameters :: !(Maybe Bool)
, _rcpgParameters :: !(Maybe [Parameter])
, _rcpgParameterGroupName :: !Text
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'ResetClusterParameterGroup' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'rcpgResetAllParameters'
--
-- * 'rcpgParameters'
--
-- * 'rcpgParameterGroupName'
resetClusterParameterGroup
:: Text -- ^ 'rcpgParameterGroupName'
-> ResetClusterParameterGroup
resetClusterParameterGroup pParameterGroupName_ =
ResetClusterParameterGroup'
{ _rcpgResetAllParameters = Nothing
, _rcpgParameters = Nothing
, _rcpgParameterGroupName = pParameterGroupName_
}
-- | If 'true', all parameters in the specified parameter group will be reset
-- to their default values.
--
-- Default: 'true'
rcpgResetAllParameters :: Lens' ResetClusterParameterGroup (Maybe Bool)
rcpgResetAllParameters = lens _rcpgResetAllParameters (\ s a -> s{_rcpgResetAllParameters = a});
-- | An array of names of parameters to be reset. If /ResetAllParameters/
-- option is not used, then at least one parameter name must be supplied.
--
-- Constraints: A maximum of 20 parameters can be reset in a single
-- request.
rcpgParameters :: Lens' ResetClusterParameterGroup [Parameter]
rcpgParameters = lens _rcpgParameters (\ s a -> s{_rcpgParameters = a}) . _Default . _Coerce;
-- | The name of the cluster parameter group to be reset.
rcpgParameterGroupName :: Lens' ResetClusterParameterGroup Text
rcpgParameterGroupName = lens _rcpgParameterGroupName (\ s a -> s{_rcpgParameterGroupName = a});
instance AWSRequest ResetClusterParameterGroup where
type Sv ResetClusterParameterGroup = Redshift
type Rs ResetClusterParameterGroup =
ClusterParameterGroupNameMessage
request = postQuery
response
= receiveXMLWrapper
"ResetClusterParameterGroupResult"
(\ s h x -> parseXML x)
instance ToHeaders ResetClusterParameterGroup where
toHeaders = const mempty
instance ToPath ResetClusterParameterGroup where
toPath = const "/"
instance ToQuery ResetClusterParameterGroup where
toQuery ResetClusterParameterGroup'{..}
= mconcat
["Action" =:
("ResetClusterParameterGroup" :: ByteString),
"Version" =: ("2012-12-01" :: ByteString),
"ResetAllParameters" =: _rcpgResetAllParameters,
"Parameters" =:
toQuery
(toQueryList "Parameter" <$> _rcpgParameters),
"ParameterGroupName" =: _rcpgParameterGroupName]