Struct aws_sdk_rds::input::ResetDbParameterGroupInput
source · [−]#[non_exhaustive]pub struct ResetDbParameterGroupInput { /* private fields */ }Expand description
Implementations
sourceimpl 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>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ResetDbParameterGroupInput.
sourceimpl 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
Trait Implementations
sourceimpl Clone for ResetDbParameterGroupInput
impl Clone for ResetDbParameterGroupInput
sourcefn clone(&self) -> ResetDbParameterGroupInput
fn clone(&self) -> ResetDbParameterGroupInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more