pub struct EngineDefaults {
pub db_parameter_group_family: Option<String>,
pub marker: Option<String>,
pub parameters: Option<Vec<Parameter>>,
}
Expand description
Contains the result of a successful invocation of the DescribeEngineDefaultClusterParameters
operation.
Fields§
§db_parameter_group_family: Option<String>
The name of the cluster parameter group family to return the engine parameter information for.
marker: Option<String>
An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords
.
parameters: Option<Vec<Parameter>>
The parameters of a particular cluster parameter group family.
Trait Implementations§
Source§impl Clone for EngineDefaults
impl Clone for EngineDefaults
Source§fn clone(&self) -> EngineDefaults
fn clone(&self) -> EngineDefaults
Returns a duplicate 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