Struct aws_sdk_elasticache::operation::reset_cache_parameter_group::builders::ResetCacheParameterGroupInputBuilder
source · #[non_exhaustive]pub struct ResetCacheParameterGroupInputBuilder { /* private fields */ }
Expand description
A builder for ResetCacheParameterGroupInput
.
Implementations§
source§impl ResetCacheParameterGroupInputBuilder
impl ResetCacheParameterGroupInputBuilder
sourcepub fn cache_parameter_group_name(self, input: impl Into<String>) -> Self
pub fn cache_parameter_group_name(self, input: impl Into<String>) -> Self
The name of the cache parameter group to reset.
This field is required.sourcepub fn set_cache_parameter_group_name(self, input: Option<String>) -> Self
pub fn set_cache_parameter_group_name(self, input: Option<String>) -> Self
The name of the cache parameter group to reset.
sourcepub fn get_cache_parameter_group_name(&self) -> &Option<String>
pub fn get_cache_parameter_group_name(&self) -> &Option<String>
The name of the cache parameter group to reset.
sourcepub fn reset_all_parameters(self, input: bool) -> Self
pub fn reset_all_parameters(self, input: bool) -> Self
If true
, all parameters in the cache parameter group are reset to their default values. If false
, only the parameters listed by ParameterNameValues
are reset to their default values.
Valid values: true
| false
sourcepub fn set_reset_all_parameters(self, input: Option<bool>) -> Self
pub fn set_reset_all_parameters(self, input: Option<bool>) -> Self
If true
, all parameters in the cache parameter group are reset to their default values. If false
, only the parameters listed by ParameterNameValues
are reset to their default values.
Valid values: true
| false
sourcepub fn get_reset_all_parameters(&self) -> &Option<bool>
pub fn get_reset_all_parameters(&self) -> &Option<bool>
If true
, all parameters in the cache parameter group are reset to their default values. If false
, only the parameters listed by ParameterNameValues
are reset to their default values.
Valid values: true
| false
sourcepub fn parameter_name_values(self, input: ParameterNameValue) -> Self
pub fn parameter_name_values(self, input: ParameterNameValue) -> Self
Appends an item to parameter_name_values
.
To override the contents of this collection use set_parameter_name_values
.
An array of parameter names to reset to their default values. If ResetAllParameters
is true
, do not use ParameterNameValues
. If ResetAllParameters
is false
, you must specify the name of at least one parameter to reset.
sourcepub fn set_parameter_name_values(
self,
input: Option<Vec<ParameterNameValue>>,
) -> Self
pub fn set_parameter_name_values( self, input: Option<Vec<ParameterNameValue>>, ) -> Self
An array of parameter names to reset to their default values. If ResetAllParameters
is true
, do not use ParameterNameValues
. If ResetAllParameters
is false
, you must specify the name of at least one parameter to reset.
sourcepub fn get_parameter_name_values(&self) -> &Option<Vec<ParameterNameValue>>
pub fn get_parameter_name_values(&self) -> &Option<Vec<ParameterNameValue>>
An array of parameter names to reset to their default values. If ResetAllParameters
is true
, do not use ParameterNameValues
. If ResetAllParameters
is false
, you must specify the name of at least one parameter to reset.
sourcepub fn build(self) -> Result<ResetCacheParameterGroupInput, BuildError>
pub fn build(self) -> Result<ResetCacheParameterGroupInput, BuildError>
Consumes the builder and constructs a ResetCacheParameterGroupInput
.
source§impl ResetCacheParameterGroupInputBuilder
impl ResetCacheParameterGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ResetCacheParameterGroupOutput, SdkError<ResetCacheParameterGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ResetCacheParameterGroupOutput, SdkError<ResetCacheParameterGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ResetCacheParameterGroupInputBuilder
impl Clone for ResetCacheParameterGroupInputBuilder
source§fn clone(&self) -> ResetCacheParameterGroupInputBuilder
fn clone(&self) -> ResetCacheParameterGroupInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ResetCacheParameterGroupInputBuilder
impl Default for ResetCacheParameterGroupInputBuilder
source§fn default() -> ResetCacheParameterGroupInputBuilder
fn default() -> ResetCacheParameterGroupInputBuilder
source§impl PartialEq for ResetCacheParameterGroupInputBuilder
impl PartialEq for ResetCacheParameterGroupInputBuilder
source§fn eq(&self, other: &ResetCacheParameterGroupInputBuilder) -> bool
fn eq(&self, other: &ResetCacheParameterGroupInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResetCacheParameterGroupInputBuilder
Auto Trait Implementations§
impl Freeze for ResetCacheParameterGroupInputBuilder
impl RefUnwindSafe for ResetCacheParameterGroupInputBuilder
impl Send for ResetCacheParameterGroupInputBuilder
impl Sync for ResetCacheParameterGroupInputBuilder
impl Unpin for ResetCacheParameterGroupInputBuilder
impl UnwindSafe for ResetCacheParameterGroupInputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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