amazonka-rds-1.5.0: Amazon Relational Database Service SDK.

Copyright(c) 2013-2017 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.RDS.ResetDBClusterParameterGroup

Contents

Description

Modifies the parameters of a DB cluster parameter group to the default value. To reset specific parameters submit a list of the following: ParameterName and ApplyMethod . To reset the entire DB cluster parameter group, specify the DBClusterParameterGroupName and ResetAllParameters parameters.

When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request. You must call RebootDBInstance for every DB instance in your DB cluster that you want the updated static parameter to apply to.

For more information on Amazon Aurora, see Aurora on Amazon RDS in the Amazon RDS User Guide.

Synopsis

Creating a Request

resetDBClusterParameterGroup Source #

Creates a value of ResetDBClusterParameterGroup with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • rdcpgResetAllParameters - A value that is set to true to reset all parameters in the DB cluster parameter group to their default values, and false otherwise. You cannot use this parameter if there is a list of parameter names specified for the Parameters parameter.
  • rdcpgParameters - A list of parameter names in the DB cluster parameter group to reset to the default values. You cannot use this parameter if the ResetAllParameters parameter is set to true .
  • rdcpgDBClusterParameterGroupName - The name of the DB cluster parameter group to reset.

data ResetDBClusterParameterGroup Source #

See: resetDBClusterParameterGroup smart constructor.

Instances

Eq ResetDBClusterParameterGroup Source # 
Data ResetDBClusterParameterGroup Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ResetDBClusterParameterGroup -> c ResetDBClusterParameterGroup #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ResetDBClusterParameterGroup #

toConstr :: ResetDBClusterParameterGroup -> Constr #

dataTypeOf :: ResetDBClusterParameterGroup -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ResetDBClusterParameterGroup) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ResetDBClusterParameterGroup) #

gmapT :: (forall b. Data b => b -> b) -> ResetDBClusterParameterGroup -> ResetDBClusterParameterGroup #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ResetDBClusterParameterGroup -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ResetDBClusterParameterGroup -> r #

gmapQ :: (forall d. Data d => d -> u) -> ResetDBClusterParameterGroup -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ResetDBClusterParameterGroup -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ResetDBClusterParameterGroup -> m ResetDBClusterParameterGroup #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ResetDBClusterParameterGroup -> m ResetDBClusterParameterGroup #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ResetDBClusterParameterGroup -> m ResetDBClusterParameterGroup #

Read ResetDBClusterParameterGroup Source # 
Show ResetDBClusterParameterGroup Source # 
Generic ResetDBClusterParameterGroup Source # 
Hashable ResetDBClusterParameterGroup Source # 
NFData ResetDBClusterParameterGroup Source # 
AWSRequest ResetDBClusterParameterGroup Source # 
ToQuery ResetDBClusterParameterGroup Source # 
ToPath ResetDBClusterParameterGroup Source # 
ToHeaders ResetDBClusterParameterGroup Source # 
type Rep ResetDBClusterParameterGroup Source # 
type Rep ResetDBClusterParameterGroup = D1 (MetaData "ResetDBClusterParameterGroup" "Network.AWS.RDS.ResetDBClusterParameterGroup" "amazonka-rds-1.5.0-4pv5DetELOaBXetw2fB1GM" False) (C1 (MetaCons "ResetDBClusterParameterGroup'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_rdcpgResetAllParameters") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) ((:*:) (S1 (MetaSel (Just Symbol "_rdcpgParameters") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Parameter]))) (S1 (MetaSel (Just Symbol "_rdcpgDBClusterParameterGroupName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs ResetDBClusterParameterGroup Source # 

Request Lenses

rdcpgResetAllParameters :: Lens' ResetDBClusterParameterGroup (Maybe Bool) Source #

A value that is set to true to reset all parameters in the DB cluster parameter group to their default values, and false otherwise. You cannot use this parameter if there is a list of parameter names specified for the Parameters parameter.

rdcpgParameters :: Lens' ResetDBClusterParameterGroup [Parameter] Source #

A list of parameter names in the DB cluster parameter group to reset to the default values. You cannot use this parameter if the ResetAllParameters parameter is set to true .

rdcpgDBClusterParameterGroupName :: Lens' ResetDBClusterParameterGroup Text Source #

The name of the DB cluster parameter group to reset.

Destructuring the Response

dbClusterParameterGroupNameMessage :: DBClusterParameterGroupNameMessage Source #

Creates a value of DBClusterParameterGroupNameMessage with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • dcpgnmDBClusterParameterGroupName - The name of the DB cluster parameter group. Constraints: * Must be 1 to 255 letters or numbers. * First character must be a letter * Cannot end with a hyphen or contain two consecutive hyphens

data DBClusterParameterGroupNameMessage Source #

See: dbClusterParameterGroupNameMessage smart constructor.

Instances

Eq DBClusterParameterGroupNameMessage Source # 
Data DBClusterParameterGroupNameMessage Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> DBClusterParameterGroupNameMessage -> c DBClusterParameterGroupNameMessage #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c DBClusterParameterGroupNameMessage #

toConstr :: DBClusterParameterGroupNameMessage -> Constr #

dataTypeOf :: DBClusterParameterGroupNameMessage -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c DBClusterParameterGroupNameMessage) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c DBClusterParameterGroupNameMessage) #

gmapT :: (forall b. Data b => b -> b) -> DBClusterParameterGroupNameMessage -> DBClusterParameterGroupNameMessage #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> DBClusterParameterGroupNameMessage -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> DBClusterParameterGroupNameMessage -> r #

gmapQ :: (forall d. Data d => d -> u) -> DBClusterParameterGroupNameMessage -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> DBClusterParameterGroupNameMessage -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> DBClusterParameterGroupNameMessage -> m DBClusterParameterGroupNameMessage #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> DBClusterParameterGroupNameMessage -> m DBClusterParameterGroupNameMessage #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> DBClusterParameterGroupNameMessage -> m DBClusterParameterGroupNameMessage #

Read DBClusterParameterGroupNameMessage Source # 
Show DBClusterParameterGroupNameMessage Source # 
Generic DBClusterParameterGroupNameMessage Source # 
Hashable DBClusterParameterGroupNameMessage Source # 
NFData DBClusterParameterGroupNameMessage Source # 
FromXML DBClusterParameterGroupNameMessage Source # 
type Rep DBClusterParameterGroupNameMessage Source # 
type Rep DBClusterParameterGroupNameMessage = D1 (MetaData "DBClusterParameterGroupNameMessage" "Network.AWS.RDS.Types.Product" "amazonka-rds-1.5.0-4pv5DetELOaBXetw2fB1GM" True) (C1 (MetaCons "DBClusterParameterGroupNameMessage'" PrefixI True) (S1 (MetaSel (Just Symbol "_dcpgnmDBClusterParameterGroupName") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe Text))))

Response Lenses

dcpgnmDBClusterParameterGroupName :: Lens' DBClusterParameterGroupNameMessage (Maybe Text) Source #

The name of the DB cluster parameter group. Constraints: * Must be 1 to 255 letters or numbers. * First character must be a letter * Cannot end with a hyphen or contain two consecutive hyphens