pub struct WeeklyStartTime {
pub day_of_week: Option<String>,
pub time_of_day: Option<String>,
pub time_zone: Option<String>,
}
Expand description
The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.
Fields§
§day_of_week: Option<String>
Required. The day of the week.
time_of_day: Option<String>
Required. The time, in 24-hour format.
time_zone: Option<String>
The time zone, UTC by default, in either the Country/City format, or the UTC offset format.
Trait Implementations§
Source§impl Clone for WeeklyStartTime
impl Clone for WeeklyStartTime
Source§fn clone(&self) -> WeeklyStartTime
fn clone(&self) -> WeeklyStartTime
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 WeeklyStartTime
impl Debug for WeeklyStartTime
Source§impl Default for WeeklyStartTime
impl Default for WeeklyStartTime
Source§fn default() -> WeeklyStartTime
fn default() -> WeeklyStartTime
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WeeklyStartTime
impl<'de> Deserialize<'de> for WeeklyStartTime
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WeeklyStartTime
impl PartialEq for WeeklyStartTime
Source§impl Serialize for WeeklyStartTime
impl Serialize for WeeklyStartTime
impl StructuralPartialEq for WeeklyStartTime
Auto Trait Implementations§
impl Freeze for WeeklyStartTime
impl RefUnwindSafe for WeeklyStartTime
impl Send for WeeklyStartTime
impl Sync for WeeklyStartTime
impl Unpin for WeeklyStartTime
impl UnwindSafe for WeeklyStartTime
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