pub struct DefaultClusterParameters {
pub marker: Option<String>,
pub parameter_group_family: Option<String>,
pub parameters: Option<Vec<Parameter>>,
}
Expand description
Describes the default cluster parameters for a parameter group family.
Fields§
§marker: Option<String>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
parameter_group_family: Option<String>
The name of the cluster parameter group family to which the engine default parameters apply.
parameters: Option<Vec<Parameter>>
The list of cluster default parameters.
Trait Implementations§
Source§impl Clone for DefaultClusterParameters
impl Clone for DefaultClusterParameters
Source§fn clone(&self) -> DefaultClusterParameters
fn clone(&self) -> DefaultClusterParameters
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 DefaultClusterParameters
impl Debug for DefaultClusterParameters
Source§impl Default for DefaultClusterParameters
impl Default for DefaultClusterParameters
Source§fn default() -> DefaultClusterParameters
fn default() -> DefaultClusterParameters
Returns the “default value” for a type. Read more
Source§impl PartialEq for DefaultClusterParameters
impl PartialEq for DefaultClusterParameters
impl StructuralPartialEq for DefaultClusterParameters
Auto Trait Implementations§
impl Freeze for DefaultClusterParameters
impl RefUnwindSafe for DefaultClusterParameters
impl Send for DefaultClusterParameters
impl Sync for DefaultClusterParameters
impl Unpin for DefaultClusterParameters
impl UnwindSafe for DefaultClusterParameters
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