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