#[non_exhaustive]pub struct ResetDbParameterGroupInput { /* private fields */ }Expand description
Implementations§
source§impl ResetDbParameterGroupInput
impl ResetDbParameterGroupInput
sourcepub fn db_parameter_group_name(&self) -> Option<&str>
pub fn db_parameter_group_name(&self) -> Option<&str>
The name of the DB parameter group.
Constraints:
-
Must match the name of an existing
DBParameterGroup.
sourcepub fn reset_all_parameters(&self) -> bool
pub fn reset_all_parameters(&self) -> bool
A value that indicates whether to reset all parameters in the DB parameter group to default values. By default, all parameters in the DB parameter group are reset to default values.
sourcepub fn parameters(&self) -> Option<&[Parameter]>
pub fn parameters(&self) -> Option<&[Parameter]>
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.
MySQL
Valid Values (for Apply method): immediate | pending-reboot
You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.
MariaDB
Valid Values (for Apply method): immediate | pending-reboot
You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.
Oracle
Valid Values (for Apply method): pending-reboot
source§impl ResetDbParameterGroupInput
impl ResetDbParameterGroupInput
sourcepub fn builder() -> ResetDbParameterGroupInputBuilder
pub fn builder() -> ResetDbParameterGroupInputBuilder
Creates a new builder-style object to manufacture ResetDbParameterGroupInput.
source§impl ResetDbParameterGroupInput
impl ResetDbParameterGroupInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResetDBParameterGroup, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ResetDBParameterGroup, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ResetDBParameterGroup>
Trait Implementations§
source§impl Clone for ResetDbParameterGroupInput
impl Clone for ResetDbParameterGroupInput
source§fn clone(&self) -> ResetDbParameterGroupInput
fn clone(&self) -> ResetDbParameterGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ResetDbParameterGroupInput
impl Debug for ResetDbParameterGroupInput
source§impl PartialEq<ResetDbParameterGroupInput> for ResetDbParameterGroupInput
impl PartialEq<ResetDbParameterGroupInput> for ResetDbParameterGroupInput
source§fn eq(&self, other: &ResetDbParameterGroupInput) -> bool
fn eq(&self, other: &ResetDbParameterGroupInput) -> bool
self and other values to be equal, and is used
by ==.