#[non_exhaustive]pub struct UpdateScheduleInputBuilder { /* private fields */ }
Expand description
A builder for UpdateScheduleInput
.
Implementations§
source§impl UpdateScheduleInputBuilder
impl UpdateScheduleInputBuilder
sourcepub fn job_names(self, input: impl Into<String>) -> Self
pub fn job_names(self, input: impl Into<String>) -> Self
Appends an item to job_names
.
To override the contents of this collection use set_job_names
.
The name or names of one or more jobs to be run for this schedule.
sourcepub fn set_job_names(self, input: Option<Vec<String>>) -> Self
pub fn set_job_names(self, input: Option<Vec<String>>) -> Self
The name or names of one or more jobs to be run for this schedule.
sourcepub fn get_job_names(&self) -> &Option<Vec<String>>
pub fn get_job_names(&self) -> &Option<Vec<String>>
The name or names of one or more jobs to be run for this schedule.
sourcepub fn cron_expression(self, input: impl Into<String>) -> Self
pub fn cron_expression(self, input: impl Into<String>) -> Self
The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
sourcepub fn set_cron_expression(self, input: Option<String>) -> Self
pub fn set_cron_expression(self, input: Option<String>) -> Self
The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
sourcepub fn get_cron_expression(&self) -> &Option<String>
pub fn get_cron_expression(&self) -> &Option<String>
The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
sourcepub fn build(self) -> Result<UpdateScheduleInput, BuildError>
pub fn build(self) -> Result<UpdateScheduleInput, BuildError>
Consumes the builder and constructs a UpdateScheduleInput
.
source§impl UpdateScheduleInputBuilder
impl UpdateScheduleInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateScheduleOutput, SdkError<UpdateScheduleError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateScheduleOutput, SdkError<UpdateScheduleError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateScheduleInputBuilder
impl Clone for UpdateScheduleInputBuilder
source§fn clone(&self) -> UpdateScheduleInputBuilder
fn clone(&self) -> UpdateScheduleInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateScheduleInputBuilder
impl Debug for UpdateScheduleInputBuilder
source§impl Default for UpdateScheduleInputBuilder
impl Default for UpdateScheduleInputBuilder
source§fn default() -> UpdateScheduleInputBuilder
fn default() -> UpdateScheduleInputBuilder
source§impl PartialEq<UpdateScheduleInputBuilder> for UpdateScheduleInputBuilder
impl PartialEq<UpdateScheduleInputBuilder> for UpdateScheduleInputBuilder
source§fn eq(&self, other: &UpdateScheduleInputBuilder) -> bool
fn eq(&self, other: &UpdateScheduleInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.