pub struct ClusterVersion {
pub cluster_parameter_group_family: Option<String>,
pub cluster_version: Option<String>,
pub description: Option<String>,
}
Expand description
Describes a cluster version, including the parameter group family and description of the version.
Fields§
§cluster_parameter_group_family: Option<String>
The name of the cluster parameter group family for the cluster.
cluster_version: Option<String>
The version number used by the cluster.
description: Option<String>
The description of the cluster version.
Trait Implementations§
Source§impl Clone for ClusterVersion
impl Clone for ClusterVersion
Source§fn clone(&self) -> ClusterVersion
fn clone(&self) -> ClusterVersion
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 ClusterVersion
impl Debug for ClusterVersion
Source§impl Default for ClusterVersion
impl Default for ClusterVersion
Source§fn default() -> ClusterVersion
fn default() -> ClusterVersion
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClusterVersion
impl PartialEq for ClusterVersion
impl StructuralPartialEq for ClusterVersion
Auto Trait Implementations§
impl Freeze for ClusterVersion
impl RefUnwindSafe for ClusterVersion
impl Send for ClusterVersion
impl Sync for ClusterVersion
impl Unpin for ClusterVersion
impl UnwindSafe for ClusterVersion
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