aws_sdk_sagemaker/client/stop_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 [`StopMonitoringSchedule`](crate::operation::stop_monitoring_schedule::builders::StopMonitoringScheduleFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`monitoring_schedule_name(impl Into<String>)`](crate::operation::stop_monitoring_schedule::builders::StopMonitoringScheduleFluentBuilder::monitoring_schedule_name) / [`set_monitoring_schedule_name(Option<String>)`](crate::operation::stop_monitoring_schedule::builders::StopMonitoringScheduleFluentBuilder::set_monitoring_schedule_name):<br>required: **true**<br><p>The name of the schedule to stop.</p><br>
7 /// - On success, responds with [`StopMonitoringScheduleOutput`](crate::operation::stop_monitoring_schedule::StopMonitoringScheduleOutput)
8 /// - On failure, responds with [`SdkError<StopMonitoringScheduleError>`](crate::operation::stop_monitoring_schedule::StopMonitoringScheduleError)
9 pub fn stop_monitoring_schedule(&self) -> crate::operation::stop_monitoring_schedule::builders::StopMonitoringScheduleFluentBuilder {
10 crate::operation::stop_monitoring_schedule::builders::StopMonitoringScheduleFluentBuilder::new(self.handle.clone())
11 }
12}