Struct aws_sdk_rds::operation::reset_db_cluster_parameter_group::builders::ResetDBClusterParameterGroupFluentBuilder
source · pub struct ResetDBClusterParameterGroupFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to ResetDBClusterParameterGroup.
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 DB clusters, see What is Amazon Aurora? in the Amazon Aurora User Guide.
For more information on Multi-AZ DB clusters, see Multi-AZ deployments with two readable standby DB instances in the Amazon RDS User Guide.
Implementations§
source§impl ResetDBClusterParameterGroupFluentBuilder
impl ResetDBClusterParameterGroupFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ResetDBClusterParameterGroup, AwsResponseRetryClassifier>, SdkError<ResetDBClusterParameterGroupError>>
pub async fn customize( self ) -> Result<CustomizableOperation<ResetDBClusterParameterGroup, AwsResponseRetryClassifier>, SdkError<ResetDBClusterParameterGroupError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ResetDbClusterParameterGroupOutput, SdkError<ResetDBClusterParameterGroupError>>
pub async fn send( self ) -> Result<ResetDbClusterParameterGroupOutput, SdkError<ResetDBClusterParameterGroupError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn db_cluster_parameter_group_name(self, input: impl Into<String>) -> Self
pub fn db_cluster_parameter_group_name(self, input: impl Into<String>) -> Self
The name of the DB cluster parameter group to reset.
sourcepub fn set_db_cluster_parameter_group_name(self, input: Option<String>) -> Self
pub fn set_db_cluster_parameter_group_name(self, input: Option<String>) -> Self
The name of the DB cluster parameter group to reset.
sourcepub fn reset_all_parameters(self, input: bool) -> Self
pub fn reset_all_parameters(self, input: bool) -> Self
A value that indicates whether to reset all parameters in the DB cluster parameter group to their default values. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.
sourcepub fn set_reset_all_parameters(self, input: Option<bool>) -> Self
pub fn set_reset_all_parameters(self, input: Option<bool>) -> Self
A value that indicates whether to reset all parameters in the DB cluster parameter group to their default values. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.
sourcepub fn parameters(self, input: Parameter) -> Self
pub fn parameters(self, input: Parameter) -> Self
Appends an item to Parameters.
To override the contents of this collection use set_parameters.
A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is enabled.
sourcepub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
pub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is enabled.
Trait Implementations§
source§impl Clone for ResetDBClusterParameterGroupFluentBuilder
impl Clone for ResetDBClusterParameterGroupFluentBuilder
source§fn clone(&self) -> ResetDBClusterParameterGroupFluentBuilder
fn clone(&self) -> ResetDBClusterParameterGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more