pub struct CacheParameterGroup {
pub arn: Option<String>,
pub cache_parameter_group_family: Option<String>,
pub cache_parameter_group_name: Option<String>,
pub description: Option<String>,
pub is_global: Option<bool>,
}
Expand description
Represents the output of a CreateCacheParameterGroup
operation.
Fields§
§arn: Option<String>
The ARN (Amazon Resource Name) of the cache parameter group.
cache_parameter_group_family: Option<String>
The name of the cache parameter group family that this cache parameter group is compatible with.
Valid values are: memcached1.4
| memcached1.5
| redis2.6
| redis2.8
| redis3.2
| redis4.0
| redis5.0
|
cache_parameter_group_name: Option<String>
The name of the cache parameter group.
description: Option<String>
The description for this cache parameter group.
is_global: Option<bool>
Indicates whether the parameter group is associated with a Global Datastore
Trait Implementations§
Source§impl Clone for CacheParameterGroup
impl Clone for CacheParameterGroup
Source§fn clone(&self) -> CacheParameterGroup
fn clone(&self) -> CacheParameterGroup
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 Debug for CacheParameterGroup
impl Debug for CacheParameterGroup
Source§impl Default for CacheParameterGroup
impl Default for CacheParameterGroup
Source§fn default() -> CacheParameterGroup
fn default() -> CacheParameterGroup
Returns the “default value” for a type. Read more
Source§impl PartialEq for CacheParameterGroup
impl PartialEq for CacheParameterGroup
impl StructuralPartialEq for CacheParameterGroup
Auto Trait Implementations§
impl Freeze for CacheParameterGroup
impl RefUnwindSafe for CacheParameterGroup
impl Send for CacheParameterGroup
impl Sync for CacheParameterGroup
impl Unpin for CacheParameterGroup
impl UnwindSafe for CacheParameterGroup
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