pub struct CacheParameterGroupDetails {
pub cache_node_type_specific_parameters: Option<Vec<CacheNodeTypeSpecificParameter>>,
pub marker: Option<String>,
pub parameters: Option<Vec<Parameter>>,
}
Expand description
Represents the output of a DescribeCacheParameters
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.
marker: Option<String>
Provides an identifier to allow retrieval of paginated results.
parameters: Option<Vec<Parameter>>
A list of Parameter instances.
Trait Implementations§
Source§impl Clone for CacheParameterGroupDetails
impl Clone for CacheParameterGroupDetails
Source§fn clone(&self) -> CacheParameterGroupDetails
fn clone(&self) -> CacheParameterGroupDetails
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 CacheParameterGroupDetails
impl Debug for CacheParameterGroupDetails
Source§impl Default for CacheParameterGroupDetails
impl Default for CacheParameterGroupDetails
Source§fn default() -> CacheParameterGroupDetails
fn default() -> CacheParameterGroupDetails
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CacheParameterGroupDetails
Auto Trait Implementations§
impl Freeze for CacheParameterGroupDetails
impl RefUnwindSafe for CacheParameterGroupDetails
impl Send for CacheParameterGroupDetails
impl Sync for CacheParameterGroupDetails
impl Unpin for CacheParameterGroupDetails
impl UnwindSafe for CacheParameterGroupDetails
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