#[non_exhaustive]pub struct AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails {
pub day_of_week: Option<String>,
pub time_of_day: Option<String>,
pub time_zone: Option<String>,
}
Expand description
The scheduled time period (UTC) during which Amazon MQ begins to apply pending updates or patches to the broker.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.day_of_week: Option<String>
The day of the week on which the maintenance window falls.
time_of_day: Option<String>
The time, in 24-hour format, on which the maintenance window falls.
time_zone: Option<String>
The time zone in either the Country/City format or the UTC offset format. UTC is the default format.
Implementations§
source§impl AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
impl AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
sourcepub fn day_of_week(&self) -> Option<&str>
pub fn day_of_week(&self) -> Option<&str>
The day of the week on which the maintenance window falls.
sourcepub fn time_of_day(&self) -> Option<&str>
pub fn time_of_day(&self) -> Option<&str>
The time, in 24-hour format, on which the maintenance window falls.
source§impl AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
impl AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
sourcepub fn builder() -> AwsAmazonMqBrokerMaintenanceWindowStartTimeDetailsBuilder
pub fn builder() -> AwsAmazonMqBrokerMaintenanceWindowStartTimeDetailsBuilder
Creates a new builder-style object to manufacture AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
.
Trait Implementations§
source§impl Clone for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
impl Clone for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
source§fn clone(&self) -> AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
fn clone(&self) -> AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
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 PartialEq for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
impl PartialEq for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
source§fn eq(&self, other: &AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails) -> bool
fn eq(&self, other: &AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
Auto Trait Implementations§
impl RefUnwindSafe for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
impl Send for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
impl Sync for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
impl Unpin for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
impl UnwindSafe for AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.