Struct aws_sdk_redshift::model::ClusterDbRevision
source · [−]#[non_exhaustive]pub struct ClusterDbRevision {
pub cluster_identifier: Option<String>,
pub current_database_revision: Option<String>,
pub database_revision_release_date: Option<DateTime>,
pub revision_targets: Option<Vec<RevisionTarget>>,
}
Expand description
Describes a ClusterDbRevision
.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cluster_identifier: Option<String>
The unique identifier of the cluster.
current_database_revision: Option<String>
A string representing the current cluster version.
database_revision_release_date: Option<DateTime>
The date on which the database revision was released.
revision_targets: Option<Vec<RevisionTarget>>
A list of RevisionTarget
objects, where each object describes the database revision that a cluster can be updated to.
Implementations
The unique identifier of the cluster.
A string representing the current cluster version.
The date on which the database revision was released.
A list of RevisionTarget
objects, where each object describes the database revision that a cluster can be updated to.
Creates a new builder-style object to manufacture ClusterDbRevision
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more