pub struct ModifyDBClusterParameterGroup { /* private fields */ }
Expand description
Fluent builder constructing a request to ModifyDBClusterParameterGroup
.
Modifies the parameters of a cluster parameter group. To modify more than one parameter, submit a list of the following: ParameterName
, ParameterValue
, and ApplyMethod
. A maximum of 20 parameters can be modified in a single request.
Changes to dynamic parameters are applied immediately. Changes to static parameters require a reboot or maintenance window before the change can take effect.
After you create a cluster parameter group, you should wait at least 5 minutes before creating your first cluster that uses that cluster parameter group as the default parameter group. This allows Amazon DocumentDB to fully complete the create action before the parameter group is used as the default for a new cluster. This step is especially important for parameters that are critical when creating the default database for a cluster, such as the character set for the default database defined by the character_set_database
parameter.
Implementations§
source§impl ModifyDBClusterParameterGroup
impl ModifyDBClusterParameterGroup
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ModifyDBClusterParameterGroup, AwsResponseRetryClassifier>, SdkError<ModifyDBClusterParameterGroupError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ModifyDBClusterParameterGroup, AwsResponseRetryClassifier>, SdkError<ModifyDBClusterParameterGroupError>>
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<ModifyDbClusterParameterGroupOutput, SdkError<ModifyDBClusterParameterGroupError>>
pub async fn send(
self
) -> Result<ModifyDbClusterParameterGroupOutput, SdkError<ModifyDBClusterParameterGroupError>>
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 modify.
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 modify.
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 parameters in the cluster parameter group to modify.
sourcepub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
pub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
A list of parameters in the cluster parameter group to modify.
Trait Implementations§
source§impl Clone for ModifyDBClusterParameterGroup
impl Clone for ModifyDBClusterParameterGroup
source§fn clone(&self) -> ModifyDBClusterParameterGroup
fn clone(&self) -> ModifyDBClusterParameterGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more