pub struct ModifyClusterMaintenanceMessage {
pub cluster_identifier: String,
pub defer_maintenance: Option<bool>,
pub defer_maintenance_duration: Option<i64>,
pub defer_maintenance_end_time: Option<String>,
pub defer_maintenance_identifier: Option<String>,
pub defer_maintenance_start_time: Option<String>,
}
Fields§
§cluster_identifier: String
A unique identifier for the cluster.
defer_maintenance: Option<bool>
A boolean indicating whether to enable the deferred maintenance window.
defer_maintenance_duration: Option<i64>
An integer indicating the duration of the maintenance window in days. If you specify a duration, you can't specify an end time. The duration must be 45 days or less.
defer_maintenance_end_time: Option<String>
A timestamp indicating end time for the deferred maintenance window. If you specify an end time, you can't specify a duration.
defer_maintenance_identifier: Option<String>
A unique identifier for the deferred maintenance window.
defer_maintenance_start_time: Option<String>
A timestamp indicating the start time for the deferred maintenance window.
Trait Implementations§
Source§impl Clone for ModifyClusterMaintenanceMessage
impl Clone for ModifyClusterMaintenanceMessage
Source§fn clone(&self) -> ModifyClusterMaintenanceMessage
fn clone(&self) -> ModifyClusterMaintenanceMessage
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 Default for ModifyClusterMaintenanceMessage
impl Default for ModifyClusterMaintenanceMessage
Source§fn default() -> ModifyClusterMaintenanceMessage
fn default() -> ModifyClusterMaintenanceMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyClusterMaintenanceMessage
impl PartialEq for ModifyClusterMaintenanceMessage
Source§fn eq(&self, other: &ModifyClusterMaintenanceMessage) -> bool
fn eq(&self, other: &ModifyClusterMaintenanceMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyClusterMaintenanceMessage
Auto Trait Implementations§
impl Freeze for ModifyClusterMaintenanceMessage
impl RefUnwindSafe for ModifyClusterMaintenanceMessage
impl Send for ModifyClusterMaintenanceMessage
impl Sync for ModifyClusterMaintenanceMessage
impl Unpin for ModifyClusterMaintenanceMessage
impl UnwindSafe for ModifyClusterMaintenanceMessage
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