Struct aws_sdk_redshift::types::MaintenanceTrack
source · #[non_exhaustive]pub struct MaintenanceTrack { /* private fields */ }
Expand description
Defines a maintenance track that determines which Amazon Redshift version to apply during a maintenance window. If the value for MaintenanceTrack
is current
, the cluster is updated to the most recently certified maintenance release. If the value is trailing
, the cluster is updated to the previously certified maintenance release.
Implementations§
source§impl MaintenanceTrack
impl MaintenanceTrack
sourcepub fn maintenance_track_name(&self) -> Option<&str>
pub fn maintenance_track_name(&self) -> Option<&str>
The name of the maintenance track. Possible values are current
and trailing
.
sourcepub fn database_version(&self) -> Option<&str>
pub fn database_version(&self) -> Option<&str>
The version number for the cluster release.
sourcepub fn update_targets(&self) -> Option<&[UpdateTarget]>
pub fn update_targets(&self) -> Option<&[UpdateTarget]>
An array of UpdateTarget
objects to update with the maintenance track.
source§impl MaintenanceTrack
impl MaintenanceTrack
sourcepub fn builder() -> MaintenanceTrackBuilder
pub fn builder() -> MaintenanceTrackBuilder
Creates a new builder-style object to manufacture MaintenanceTrack
.
Trait Implementations§
source§impl Clone for MaintenanceTrack
impl Clone for MaintenanceTrack
source§fn clone(&self) -> MaintenanceTrack
fn clone(&self) -> MaintenanceTrack
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 MaintenanceTrack
impl Debug for MaintenanceTrack
source§impl PartialEq<MaintenanceTrack> for MaintenanceTrack
impl PartialEq<MaintenanceTrack> for MaintenanceTrack
source§fn eq(&self, other: &MaintenanceTrack) -> bool
fn eq(&self, other: &MaintenanceTrack) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MaintenanceTrack
Auto Trait Implementations§
impl RefUnwindSafe for MaintenanceTrack
impl Send for MaintenanceTrack
impl Sync for MaintenanceTrack
impl Unpin for MaintenanceTrack
impl UnwindSafe for MaintenanceTrack
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