pub struct ResetDBClusterParameterGroup { /* private fields */ }
Expand description
Fluent builder constructing a request to ResetDBClusterParameterGroup
.
Modifies the parameters of a cluster parameter group to the default value. To reset specific parameters, submit a list of the following: ParameterName
and ApplyMethod
. To reset the entire cluster parameter group, specify the DBClusterParameterGroupName
and ResetAllParameters
parameters.
When you reset the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot
to take effect on the next DB instance reboot.
Implementations§
source§impl ResetDBClusterParameterGroup
impl ResetDBClusterParameterGroup
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 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 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 is set to true
to reset all parameters in the cluster parameter group to their default values, and false
otherwise. 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 is set to true
to reset all parameters in the cluster parameter group to their default values, and false
otherwise. 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 cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters
parameter is set to true
.
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 cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters
parameter is set to true
.
Trait Implementations§
source§impl Clone for ResetDBClusterParameterGroup
impl Clone for ResetDBClusterParameterGroup
source§fn clone(&self) -> ResetDBClusterParameterGroup
fn clone(&self) -> ResetDBClusterParameterGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more