Struct aws_sdk_rds::operation::modify_db_cluster_parameter_group::builders::ModifyDbClusterParameterGroupInputBuilder
source · #[non_exhaustive]pub struct ModifyDbClusterParameterGroupInputBuilder { /* private fields */ }Expand description
A builder for ModifyDbClusterParameterGroupInput.
Implementations§
source§impl ModifyDbClusterParameterGroupInputBuilder
impl ModifyDbClusterParameterGroupInputBuilder
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 modify.
This field is required.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 modify.
sourcepub fn get_db_cluster_parameter_group_name(&self) -> &Option<String>
pub fn get_db_cluster_parameter_group_name(&self) -> &Option<String>
The name of the DB 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 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.
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 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.
sourcepub fn get_parameters(&self) -> &Option<Vec<Parameter>>
pub fn get_parameters(&self) -> &Option<Vec<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.
sourcepub fn build(self) -> Result<ModifyDbClusterParameterGroupInput, BuildError>
pub fn build(self) -> Result<ModifyDbClusterParameterGroupInput, BuildError>
Consumes the builder and constructs a ModifyDbClusterParameterGroupInput.
source§impl ModifyDbClusterParameterGroupInputBuilder
impl ModifyDbClusterParameterGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ModifyDbClusterParameterGroupOutput, SdkError<ModifyDBClusterParameterGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ModifyDbClusterParameterGroupOutput, SdkError<ModifyDBClusterParameterGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ModifyDbClusterParameterGroupInputBuilder
impl Clone for ModifyDbClusterParameterGroupInputBuilder
source§fn clone(&self) -> ModifyDbClusterParameterGroupInputBuilder
fn clone(&self) -> ModifyDbClusterParameterGroupInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ModifyDbClusterParameterGroupInputBuilder
impl Default for ModifyDbClusterParameterGroupInputBuilder
source§fn default() -> ModifyDbClusterParameterGroupInputBuilder
fn default() -> ModifyDbClusterParameterGroupInputBuilder
source§impl PartialEq for ModifyDbClusterParameterGroupInputBuilder
impl PartialEq for ModifyDbClusterParameterGroupInputBuilder
source§fn eq(&self, other: &ModifyDbClusterParameterGroupInputBuilder) -> bool
fn eq(&self, other: &ModifyDbClusterParameterGroupInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModifyDbClusterParameterGroupInputBuilder
Auto Trait Implementations§
impl Freeze for ModifyDbClusterParameterGroupInputBuilder
impl RefUnwindSafe for ModifyDbClusterParameterGroupInputBuilder
impl Send for ModifyDbClusterParameterGroupInputBuilder
impl Sync for ModifyDbClusterParameterGroupInputBuilder
impl Unpin for ModifyDbClusterParameterGroupInputBuilder
impl UnwindSafe for ModifyDbClusterParameterGroupInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more