Struct aws_sdk_redshift::types::ClusterDbRevision
source · #[non_exhaustive]pub struct ClusterDbRevision { /* private fields */ }
Expand description
Describes a ClusterDbRevision
.
Implementations§
source§impl ClusterDbRevision
impl ClusterDbRevision
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
The unique identifier of the cluster.
sourcepub fn current_database_revision(&self) -> Option<&str>
pub fn current_database_revision(&self) -> Option<&str>
A string representing the current cluster version.
sourcepub fn database_revision_release_date(&self) -> Option<&DateTime>
pub fn database_revision_release_date(&self) -> Option<&DateTime>
The date on which the database revision was released.
sourcepub fn revision_targets(&self) -> Option<&[RevisionTarget]>
pub fn revision_targets(&self) -> Option<&[RevisionTarget]>
A list of RevisionTarget
objects, where each object describes the database revision that a cluster can be updated to.
source§impl ClusterDbRevision
impl ClusterDbRevision
sourcepub fn builder() -> ClusterDbRevisionBuilder
pub fn builder() -> ClusterDbRevisionBuilder
Creates a new builder-style object to manufacture ClusterDbRevision
.
Trait Implementations§
source§impl Clone for ClusterDbRevision
impl Clone for ClusterDbRevision
source§fn clone(&self) -> ClusterDbRevision
fn clone(&self) -> ClusterDbRevision
Returns a copy 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 ClusterDbRevision
impl Debug for ClusterDbRevision
source§impl PartialEq<ClusterDbRevision> for ClusterDbRevision
impl PartialEq<ClusterDbRevision> for ClusterDbRevision
source§fn eq(&self, other: &ClusterDbRevision) -> bool
fn eq(&self, other: &ClusterDbRevision) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ClusterDbRevision
Auto Trait Implementations§
impl RefUnwindSafe for ClusterDbRevision
impl Send for ClusterDbRevision
impl Sync for ClusterDbRevision
impl Unpin for ClusterDbRevision
impl UnwindSafe for ClusterDbRevision
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