Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Modifies the parameters of a DB parameter group to the engine/system
default value. To reset specific parameters, provide a list of the
following: ParameterName
and ApplyMethod
. To reset the entire DB
parameter group, specify the DBParameterGroup
name 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.
Synopsis
- data ResetDBParameterGroup = ResetDBParameterGroup' {}
- newResetDBParameterGroup :: Text -> ResetDBParameterGroup
- resetDBParameterGroup_resetAllParameters :: Lens' ResetDBParameterGroup (Maybe Bool)
- resetDBParameterGroup_parameters :: Lens' ResetDBParameterGroup (Maybe [Parameter])
- resetDBParameterGroup_dbParameterGroupName :: Lens' ResetDBParameterGroup Text
- data DBParameterGroupNameMessage = DBParameterGroupNameMessage' {}
- newDBParameterGroupNameMessage :: DBParameterGroupNameMessage
- dbParameterGroupNameMessage_dbParameterGroupName :: Lens' DBParameterGroupNameMessage (Maybe Text)
Creating a Request
data ResetDBParameterGroup Source #
See: newResetDBParameterGroup
smart constructor.
ResetDBParameterGroup' | |
|
Instances
newResetDBParameterGroup Source #
Create a value of ResetDBParameterGroup
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:resetAllParameters:ResetDBParameterGroup'
, resetDBParameterGroup_resetAllParameters
- Specifies whether (true
) or not (false
) to reset all parameters in
the DB parameter group to default values.
Default: true
$sel:parameters:ResetDBParameterGroup'
, resetDBParameterGroup_parameters
- To reset the entire DB parameter group, specify the DBParameterGroup
name and ResetAllParameters
parameters. To reset specific parameters,
provide a list of the following: ParameterName
and ApplyMethod
. A
maximum of 20 parameters can be modified in a single request.
Valid Values (for Apply method): pending-reboot
$sel:dbParameterGroupName:ResetDBParameterGroup'
, resetDBParameterGroup_dbParameterGroupName
- The name of the DB parameter group.
Constraints:
- Must match the name of an existing DBParameterGroup.
Request Lenses
resetDBParameterGroup_resetAllParameters :: Lens' ResetDBParameterGroup (Maybe Bool) Source #
Specifies whether (true
) or not (false
) to reset all parameters in
the DB parameter group to default values.
Default: true
resetDBParameterGroup_parameters :: Lens' ResetDBParameterGroup (Maybe [Parameter]) Source #
To reset the entire DB parameter group, specify the DBParameterGroup
name and ResetAllParameters
parameters. To reset specific parameters,
provide a list of the following: ParameterName
and ApplyMethod
. A
maximum of 20 parameters can be modified in a single request.
Valid Values (for Apply method): pending-reboot
resetDBParameterGroup_dbParameterGroupName :: Lens' ResetDBParameterGroup Text Source #
The name of the DB parameter group.
Constraints:
- Must match the name of an existing DBParameterGroup.
Destructuring the Response
data DBParameterGroupNameMessage Source #
See: newDBParameterGroupNameMessage
smart constructor.
DBParameterGroupNameMessage' | |
|
Instances
newDBParameterGroupNameMessage :: DBParameterGroupNameMessage Source #
Create a value of DBParameterGroupNameMessage
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:dbParameterGroupName:DBParameterGroupNameMessage'
, dbParameterGroupNameMessage_dbParameterGroupName
- Provides the name of the DB parameter group.
Response Lenses
dbParameterGroupNameMessage_dbParameterGroupName :: Lens' DBParameterGroupNameMessage (Maybe Text) Source #
Provides the name of the DB parameter group.