pub struct EngineDefaults {
pub cache_node_type_specific_parameters: Option<Vec<CacheNodeTypeSpecificParameter>>,
pub cache_parameter_group_family: Option<String>,
pub marker: Option<String>,
pub parameters: Option<Vec<Parameter>>,
}
Expand description
Represents the output of a DescribeEngineDefaultParameters
operation.
Fields§
§cache_node_type_specific_parameters: Option<Vec<CacheNodeTypeSpecificParameter>>
A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.
cache_parameter_group_family: Option<String>
Specifies the name of the cache parameter group family to which the engine default parameters apply.
Valid values are: memcached1.4
| memcached1.5
| redis2.6
| redis2.8
| redis3.2
| redis4.0
| redis5.0
|
marker: Option<String>
Provides an identifier to allow retrieval of paginated results.
parameters: Option<Vec<Parameter>>
Contains a list of engine default parameters.
Trait Implementations§
Source§impl Clone for EngineDefaults
impl Clone for EngineDefaults
Source§fn clone(&self) -> EngineDefaults
fn clone(&self) -> EngineDefaults
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 EngineDefaults
impl Debug for EngineDefaults
Source§impl Default for EngineDefaults
impl Default for EngineDefaults
Source§fn default() -> EngineDefaults
fn default() -> EngineDefaults
Returns the “default value” for a type. Read more
Source§impl PartialEq for EngineDefaults
impl PartialEq for EngineDefaults
impl StructuralPartialEq for EngineDefaults
Auto Trait Implementations§
impl Freeze for EngineDefaults
impl RefUnwindSafe for EngineDefaults
impl Send for EngineDefaults
impl Sync for EngineDefaults
impl Unpin for EngineDefaults
impl UnwindSafe for EngineDefaults
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