#[non_exhaustive]pub struct ModifyCacheParameterGroupInput {
pub cache_parameter_group_name: Option<String>,
pub parameter_name_values: Option<Vec<ParameterNameValue>>,
}
Expand description
Represents the input of a ModifyCacheParameterGroup
operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cache_parameter_group_name: Option<String>
The name of the cache parameter group to modify.
parameter_name_values: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyCacheParameterGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyCacheParameterGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ModifyCacheParameterGroup
>
Creates a new builder-style object to manufacture ModifyCacheParameterGroupInput
The name of the cache parameter group to modify.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ModifyCacheParameterGroupInput
impl Sync for ModifyCacheParameterGroupInput
impl Unpin for ModifyCacheParameterGroupInput
impl UnwindSafe for ModifyCacheParameterGroupInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more