pub struct CreateCacheParameterGroupMessage {
pub cache_parameter_group_family: String,
pub cache_parameter_group_name: String,
pub description: String,
}
Expand description
Represents the input of a CreateCacheParameterGroup
operation.
Fields§
§cache_parameter_group_family: String
The name of the cache parameter group family that the cache parameter group can be used with.
Valid values are: memcached1.4
| memcached1.5
| redis2.6
| redis2.8
| redis3.2
| redis4.0
| redis5.0
|
cache_parameter_group_name: String
A user-specified name for the cache parameter group.
description: String
A user-specified description for the cache parameter group.
Trait Implementations§
Source§impl Clone for CreateCacheParameterGroupMessage
impl Clone for CreateCacheParameterGroupMessage
Source§fn clone(&self) -> CreateCacheParameterGroupMessage
fn clone(&self) -> CreateCacheParameterGroupMessage
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for CreateCacheParameterGroupMessage
impl Default for CreateCacheParameterGroupMessage
Source§fn default() -> CreateCacheParameterGroupMessage
fn default() -> CreateCacheParameterGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateCacheParameterGroupMessage
impl PartialEq for CreateCacheParameterGroupMessage
Source§fn eq(&self, other: &CreateCacheParameterGroupMessage) -> bool
fn eq(&self, other: &CreateCacheParameterGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateCacheParameterGroupMessage
Auto Trait Implementations§
impl Freeze for CreateCacheParameterGroupMessage
impl RefUnwindSafe for CreateCacheParameterGroupMessage
impl Send for CreateCacheParameterGroupMessage
impl Sync for CreateCacheParameterGroupMessage
impl Unpin for CreateCacheParameterGroupMessage
impl UnwindSafe for CreateCacheParameterGroupMessage
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
Mutably borrows from an owned value. Read more