Struct aws_sdk_redshift::model::MaintenanceTrack
source · [−]#[non_exhaustive]pub struct MaintenanceTrack {
pub maintenance_track_name: Option<String>,
pub database_version: Option<String>,
pub update_targets: Option<Vec<UpdateTarget>>,
}
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.
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.maintenance_track_name: Option<String>
The name of the maintenance track. Possible values are current
and trailing
.
database_version: Option<String>
The version number for the cluster release.
update_targets: Option<Vec<UpdateTarget>>
An array of UpdateTarget
objects to update with the maintenance track.
Implementations
The name of the maintenance track. Possible values are current
and trailing
.
The version number for the cluster release.
An array of UpdateTarget
objects to update with the maintenance track.
Creates a new builder-style object to manufacture MaintenanceTrack
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 MaintenanceTrack
impl Send for MaintenanceTrack
impl Sync for MaintenanceTrack
impl Unpin for MaintenanceTrack
impl UnwindSafe for MaintenanceTrack
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