#[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 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 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<ScheduledWindowExecutionBuilder> for ScheduledWindowExecutionBuilder
impl PartialEq<ScheduledWindowExecutionBuilder> 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 ==.