Struct aws_sdk_rds::operation::modify_db_cluster_parameter_group::ModifyDbClusterParameterGroupInput
source · #[non_exhaustive]pub struct ModifyDbClusterParameterGroupInput { /* private fields */ }Expand description
Implementations§
source§impl ModifyDbClusterParameterGroupInput
impl ModifyDbClusterParameterGroupInput
sourcepub fn db_cluster_parameter_group_name(&self) -> Option<&str>
pub fn db_cluster_parameter_group_name(&self) -> Option<&str>
The name of the DB cluster parameter group to modify.
sourcepub fn parameters(&self) -> Option<&[Parameter]>
pub fn parameters(&self) -> Option<&[Parameter]>
A list of parameters in the DB cluster parameter group to modify.
Valid Values (for the application 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.
When the application method is immediate, changes to dynamic parameters are applied immediately to the DB clusters associated with the parameter group. When the application method is pending-reboot, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.
source§impl ModifyDbClusterParameterGroupInput
impl ModifyDbClusterParameterGroupInput
sourcepub fn builder() -> ModifyDbClusterParameterGroupInputBuilder
pub fn builder() -> ModifyDbClusterParameterGroupInputBuilder
Creates a new builder-style object to manufacture ModifyDbClusterParameterGroupInput.
source§impl ModifyDbClusterParameterGroupInput
impl ModifyDbClusterParameterGroupInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyDBClusterParameterGroup, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ModifyDBClusterParameterGroup, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ModifyDBClusterParameterGroup>
Trait Implementations§
source§impl Clone for ModifyDbClusterParameterGroupInput
impl Clone for ModifyDbClusterParameterGroupInput
source§fn clone(&self) -> ModifyDbClusterParameterGroupInput
fn clone(&self) -> ModifyDbClusterParameterGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<ModifyDbClusterParameterGroupInput> for ModifyDbClusterParameterGroupInput
impl PartialEq<ModifyDbClusterParameterGroupInput> for ModifyDbClusterParameterGroupInput
source§fn eq(&self, other: &ModifyDbClusterParameterGroupInput) -> bool
fn eq(&self, other: &ModifyDbClusterParameterGroupInput) -> bool
self and other values to be equal, and is used
by ==.