#[non_exhaustive]pub struct UpdateFileCacheLustreConfigurationBuilder { /* private fields */ }Expand description
A builder for UpdateFileCacheLustreConfiguration.
Implementations§
source§impl UpdateFileCacheLustreConfigurationBuilder
impl UpdateFileCacheLustreConfigurationBuilder
sourcepub fn weekly_maintenance_start_time(self, input: impl Into<String>) -> Self
pub fn weekly_maintenance_start_time(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_weekly_maintenance_start_time(self, input: Option<String>) -> Self
pub fn set_weekly_maintenance_start_time(self, input: Option<String>) -> Self
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.
sourcepub fn get_weekly_maintenance_start_time(&self) -> &Option<String>
pub fn get_weekly_maintenance_start_time(&self) -> &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.
sourcepub fn build(self) -> UpdateFileCacheLustreConfiguration
pub fn build(self) -> UpdateFileCacheLustreConfiguration
Consumes the builder and constructs a UpdateFileCacheLustreConfiguration.
Trait Implementations§
source§impl Clone for UpdateFileCacheLustreConfigurationBuilder
impl Clone for UpdateFileCacheLustreConfigurationBuilder
source§fn clone(&self) -> UpdateFileCacheLustreConfigurationBuilder
fn clone(&self) -> UpdateFileCacheLustreConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateFileCacheLustreConfigurationBuilder
impl Default for UpdateFileCacheLustreConfigurationBuilder
source§fn default() -> UpdateFileCacheLustreConfigurationBuilder
fn default() -> UpdateFileCacheLustreConfigurationBuilder
source§impl PartialEq for UpdateFileCacheLustreConfigurationBuilder
impl PartialEq for UpdateFileCacheLustreConfigurationBuilder
source§fn eq(&self, other: &UpdateFileCacheLustreConfigurationBuilder) -> bool
fn eq(&self, other: &UpdateFileCacheLustreConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateFileCacheLustreConfigurationBuilder
Auto Trait Implementations§
impl Freeze for UpdateFileCacheLustreConfigurationBuilder
impl RefUnwindSafe for UpdateFileCacheLustreConfigurationBuilder
impl Send for UpdateFileCacheLustreConfigurationBuilder
impl Sync for UpdateFileCacheLustreConfigurationBuilder
impl Unpin for UpdateFileCacheLustreConfigurationBuilder
impl UnwindSafe for UpdateFileCacheLustreConfigurationBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more