pub struct PreferredApplyTimeUpdate {
pub apply_time: Option<ApplyTime>,
pub maintenance_window_start_time: Option<DateTimeOffset>,
pub maintenance_window_duration_in_seconds: Option<Int64>,
}Expand description
Update struct corresponding to PreferredApplyTime
Fields§
§apply_time: Option<ApplyTime>§maintenance_window_start_time: Option<DateTimeOffset>§maintenance_window_duration_in_seconds: Option<Int64>Implementations§
Source§impl PreferredApplyTimeUpdate
impl PreferredApplyTimeUpdate
pub fn builder() -> Self
pub const fn build(self) -> Self
pub fn with_apply_time(self, v: ApplyTime) -> Self
pub fn with_maintenance_window_start_time(self, v: DateTimeOffset) -> Self
pub fn with_maintenance_window_duration_in_seconds(self, v: Int64) -> Self
Trait Implementations§
Source§impl Debug for PreferredApplyTimeUpdate
impl Debug for PreferredApplyTimeUpdate
Source§impl Default for PreferredApplyTimeUpdate
impl Default for PreferredApplyTimeUpdate
Source§fn default() -> PreferredApplyTimeUpdate
fn default() -> PreferredApplyTimeUpdate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PreferredApplyTimeUpdate
impl RefUnwindSafe for PreferredApplyTimeUpdate
impl Send for PreferredApplyTimeUpdate
impl Sync for PreferredApplyTimeUpdate
impl Unpin for PreferredApplyTimeUpdate
impl UnsafeUnpin for PreferredApplyTimeUpdate
impl UnwindSafe for PreferredApplyTimeUpdate
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