pub struct ClusterParameterGroupDetails {
pub marker: Option<String>,
pub parameters: Option<Vec<Parameter>>,
}Expand description
Contains the output from the DescribeClusterParameters action.
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.
parameters: Option<Vec<Parameter>>A list of Parameter instances. Each instance lists the parameters of one cluster parameter group.
Trait Implementations§
Source§impl Clone for ClusterParameterGroupDetails
impl Clone for ClusterParameterGroupDetails
Source§fn clone(&self) -> ClusterParameterGroupDetails
fn clone(&self) -> ClusterParameterGroupDetails
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 ClusterParameterGroupDetails
impl Debug for ClusterParameterGroupDetails
Source§impl Default for ClusterParameterGroupDetails
impl Default for ClusterParameterGroupDetails
Source§fn default() -> ClusterParameterGroupDetails
fn default() -> ClusterParameterGroupDetails
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClusterParameterGroupDetails
impl PartialEq for ClusterParameterGroupDetails
Source§fn eq(&self, other: &ClusterParameterGroupDetails) -> bool
fn eq(&self, other: &ClusterParameterGroupDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClusterParameterGroupDetails
Auto Trait Implementations§
impl Freeze for ClusterParameterGroupDetails
impl RefUnwindSafe for ClusterParameterGroupDetails
impl Send for ClusterParameterGroupDetails
impl Sync for ClusterParameterGroupDetails
impl Unpin for ClusterParameterGroupDetails
impl UnwindSafe for ClusterParameterGroupDetails
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