Struct aws_sdk_elasticache::operation::modify_cache_parameter_group::builders::ModifyCacheParameterGroupInputBuilder
source · #[non_exhaustive]pub struct ModifyCacheParameterGroupInputBuilder { /* private fields */ }
Expand description
A builder for ModifyCacheParameterGroupInput
.
Implementations§
source§impl ModifyCacheParameterGroupInputBuilder
impl ModifyCacheParameterGroupInputBuilder
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 modify.
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 modify.
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 modify.
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 and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be modified per request.
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 and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be modified per request.
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 and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be modified per request.
sourcepub fn build(self) -> Result<ModifyCacheParameterGroupInput, BuildError>
pub fn build(self) -> Result<ModifyCacheParameterGroupInput, BuildError>
Consumes the builder and constructs a ModifyCacheParameterGroupInput
.
source§impl ModifyCacheParameterGroupInputBuilder
impl ModifyCacheParameterGroupInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ModifyCacheParameterGroupOutput, SdkError<ModifyCacheParameterGroupError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ModifyCacheParameterGroupOutput, SdkError<ModifyCacheParameterGroupError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ModifyCacheParameterGroupInputBuilder
impl Clone for ModifyCacheParameterGroupInputBuilder
source§fn clone(&self) -> ModifyCacheParameterGroupInputBuilder
fn clone(&self) -> ModifyCacheParameterGroupInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ModifyCacheParameterGroupInputBuilder
impl Default for ModifyCacheParameterGroupInputBuilder
source§fn default() -> ModifyCacheParameterGroupInputBuilder
fn default() -> ModifyCacheParameterGroupInputBuilder
source§impl PartialEq for ModifyCacheParameterGroupInputBuilder
impl PartialEq for ModifyCacheParameterGroupInputBuilder
source§fn eq(&self, other: &ModifyCacheParameterGroupInputBuilder) -> bool
fn eq(&self, other: &ModifyCacheParameterGroupInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifyCacheParameterGroupInputBuilder
Auto Trait Implementations§
impl Freeze for ModifyCacheParameterGroupInputBuilder
impl RefUnwindSafe for ModifyCacheParameterGroupInputBuilder
impl Send for ModifyCacheParameterGroupInputBuilder
impl Sync for ModifyCacheParameterGroupInputBuilder
impl Unpin for ModifyCacheParameterGroupInputBuilder
impl UnwindSafe for ModifyCacheParameterGroupInputBuilder
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