#[non_exhaustive]pub struct ScheduledWindowExecutionBuilder { /* private fields */ }
Expand description
A builder for ScheduledWindowExecution
.
Implementations§
source§impl ScheduledWindowExecutionBuilder
impl ScheduledWindowExecutionBuilder
sourcepub fn window_id(self, input: impl Into<String>) -> Self
pub fn window_id(self, input: impl Into<String>) -> Self
The ID of the maintenance window to be run.
sourcepub fn set_window_id(self, input: Option<String>) -> Self
pub fn set_window_id(self, input: Option<String>) -> Self
The ID of the maintenance window to be run.
sourcepub fn get_window_id(&self) -> &Option<String>
pub fn get_window_id(&self) -> &Option<String>
The ID of the maintenance window to be run.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the maintenance window to be run.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the maintenance window to be run.
sourcepub fn execution_time(self, input: impl Into<String>) -> Self
pub fn execution_time(self, input: impl Into<String>) -> Self
The time, in ISO-8601 Extended format, that the maintenance window is scheduled to be run.
sourcepub fn set_execution_time(self, input: Option<String>) -> Self
pub fn set_execution_time(self, input: Option<String>) -> Self
The time, in ISO-8601 Extended format, that the maintenance window is scheduled to be run.
sourcepub fn get_execution_time(&self) -> &Option<String>
pub fn get_execution_time(&self) -> &Option<String>
The time, in ISO-8601 Extended format, that the maintenance window is scheduled to be run.
sourcepub fn build(self) -> ScheduledWindowExecution
pub fn build(self) -> ScheduledWindowExecution
Consumes the builder and constructs a ScheduledWindowExecution
.
Trait Implementations§
source§impl Clone for ScheduledWindowExecutionBuilder
impl Clone for ScheduledWindowExecutionBuilder
source§fn clone(&self) -> ScheduledWindowExecutionBuilder
fn clone(&self) -> ScheduledWindowExecutionBuilder
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 Default for ScheduledWindowExecutionBuilder
impl Default for ScheduledWindowExecutionBuilder
source§fn default() -> ScheduledWindowExecutionBuilder
fn default() -> ScheduledWindowExecutionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ScheduledWindowExecutionBuilder
impl PartialEq for ScheduledWindowExecutionBuilder
source§fn eq(&self, other: &ScheduledWindowExecutionBuilder) -> bool
fn eq(&self, other: &ScheduledWindowExecutionBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ScheduledWindowExecutionBuilder
Auto Trait Implementations§
impl Freeze for ScheduledWindowExecutionBuilder
impl RefUnwindSafe for ScheduledWindowExecutionBuilder
impl Send for ScheduledWindowExecutionBuilder
impl Sync for ScheduledWindowExecutionBuilder
impl Unpin for ScheduledWindowExecutionBuilder
impl UnwindSafe for ScheduledWindowExecutionBuilder
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.