pub struct Builder { /* private fields */ }
Expand description
A builder for ScheduleConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn first_execution_from(self, input: impl Into<String>) -> Self
pub fn first_execution_from(self, input: impl Into<String>) -> Self
The start date for objects to import in the first flow run.
sourcepub fn set_first_execution_from(self, input: Option<String>) -> Self
pub fn set_first_execution_from(self, input: Option<String>) -> Self
The start date for objects to import in the first flow run.
sourcepub fn object(self, input: impl Into<String>) -> Self
pub fn object(self, input: impl Into<String>) -> Self
The name of the object to pull from the data source.
sourcepub fn set_object(self, input: Option<String>) -> Self
pub fn set_object(self, input: Option<String>) -> Self
The name of the object to pull from the data source.
sourcepub fn schedule_expression(self, input: impl Into<String>) -> Self
pub fn schedule_expression(self, input: impl Into<String>) -> Self
How often the data should be pulled from data source.
sourcepub fn set_schedule_expression(self, input: Option<String>) -> Self
pub fn set_schedule_expression(self, input: Option<String>) -> Self
How often the data should be pulled from data source.
sourcepub fn build(self) -> ScheduleConfiguration
pub fn build(self) -> ScheduleConfiguration
Consumes the builder and constructs a ScheduleConfiguration
.