// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateSchedule`](crate::operation::update_schedule::builders::UpdateScheduleFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`job_names(Vec<String>)`](crate::operation::update_schedule::builders::UpdateScheduleFluentBuilder::job_names) / [`set_job_names(Option<Vec<String>>)`](crate::operation::update_schedule::builders::UpdateScheduleFluentBuilder::set_job_names): <p>The name or names of one or more jobs to be run for this schedule.</p>
/// - [`cron_expression(impl ::std::convert::Into<String>)`](crate::operation::update_schedule::builders::UpdateScheduleFluentBuilder::cron_expression) / [`set_cron_expression(Option<String>)`](crate::operation::update_schedule::builders::UpdateScheduleFluentBuilder::set_cron_expression): <p>The date or dates and time or times when the jobs are to be run. For more information, see <a href="https://docs.aws.amazon.com/databrew/latest/dg/jobs.cron.html">Cron expressions</a> in the <i>Glue DataBrew Developer Guide</i>.</p>
/// - [`name(impl ::std::convert::Into<String>)`](crate::operation::update_schedule::builders::UpdateScheduleFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_schedule::builders::UpdateScheduleFluentBuilder::set_name): <p>The name of the schedule to update.</p>
/// - On success, responds with [`UpdateScheduleOutput`](crate::operation::update_schedule::UpdateScheduleOutput) with field(s):
/// - [`name(Option<String>)`](crate::operation::update_schedule::UpdateScheduleOutput::name): <p>The name of the schedule that was updated.</p>
/// - On failure, responds with [`SdkError<UpdateScheduleError>`](crate::operation::update_schedule::UpdateScheduleError)
pub fn update_schedule(&self) -> crate::operation::update_schedule::builders::UpdateScheduleFluentBuilder {
crate::operation::update_schedule::builders::UpdateScheduleFluentBuilder::new(self.handle.clone())
}
}