aws_sdk_sagemaker/client/
start_monitoring_schedule.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`StartMonitoringSchedule`](crate::operation::start_monitoring_schedule::builders::StartMonitoringScheduleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`monitoring_schedule_name(impl Into<String>)`](crate::operation::start_monitoring_schedule::builders::StartMonitoringScheduleFluentBuilder::monitoring_schedule_name) / [`set_monitoring_schedule_name(Option<String>)`](crate::operation::start_monitoring_schedule::builders::StartMonitoringScheduleFluentBuilder::set_monitoring_schedule_name):<br>required: **true**<br><p>The name of the schedule to start.</p><br>
7    /// - On success, responds with [`StartMonitoringScheduleOutput`](crate::operation::start_monitoring_schedule::StartMonitoringScheduleOutput)
8    /// - On failure, responds with [`SdkError<StartMonitoringScheduleError>`](crate::operation::start_monitoring_schedule::StartMonitoringScheduleError)
9    pub fn start_monitoring_schedule(&self) -> crate::operation::start_monitoring_schedule::builders::StartMonitoringScheduleFluentBuilder {
10        crate::operation::start_monitoring_schedule::builders::StartMonitoringScheduleFluentBuilder::new(self.handle.clone())
11    }
12}