#[non_exhaustive]pub struct UpdateFileCacheLustreConfiguration {
pub weekly_maintenance_start_time: Option<String>,
}Expand description
The configuration update for an Amazon File Cache resource.
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.weekly_maintenance_start_time: Option<String>A recurring weekly time, in the format D:HH:MM.
D is the day of the week, for which 1 represents Monday and 7 represents Sunday. For further details, see the ISO-8601 spec as described on Wikipedia.
HH is the zero-padded hour of the day (0-23), and MM is the zero-padded minute of the hour.
For example, 1:05:00 specifies maintenance at 5 AM Monday.
Implementations§
source§impl UpdateFileCacheLustreConfiguration
impl UpdateFileCacheLustreConfiguration
sourcepub fn weekly_maintenance_start_time(&self) -> Option<&str>
pub fn weekly_maintenance_start_time(&self) -> Option<&str>
A recurring weekly time, in the format D:HH:MM.
D is the day of the week, for which 1 represents Monday and 7 represents Sunday. For further details, see the ISO-8601 spec as described on Wikipedia.
HH is the zero-padded hour of the day (0-23), and MM is the zero-padded minute of the hour.
For example, 1:05:00 specifies maintenance at 5 AM Monday.
source§impl UpdateFileCacheLustreConfiguration
impl UpdateFileCacheLustreConfiguration
sourcepub fn builder() -> UpdateFileCacheLustreConfigurationBuilder
pub fn builder() -> UpdateFileCacheLustreConfigurationBuilder
Creates a new builder-style object to manufacture UpdateFileCacheLustreConfiguration.
Trait Implementations§
source§impl Clone for UpdateFileCacheLustreConfiguration
impl Clone for UpdateFileCacheLustreConfiguration
source§fn clone(&self) -> UpdateFileCacheLustreConfiguration
fn clone(&self) -> UpdateFileCacheLustreConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<UpdateFileCacheLustreConfiguration> for UpdateFileCacheLustreConfiguration
impl PartialEq<UpdateFileCacheLustreConfiguration> for UpdateFileCacheLustreConfiguration
source§fn eq(&self, other: &UpdateFileCacheLustreConfiguration) -> bool
fn eq(&self, other: &UpdateFileCacheLustreConfiguration) -> bool
self and other values to be equal, and is used
by ==.