1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StopMonitoringSchedule`](crate::operation::stop_monitoring_schedule::builders::StopMonitoringScheduleFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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): <p>The name of the schedule to stop.</p>
    /// - On success, responds with [`StopMonitoringScheduleOutput`](crate::operation::stop_monitoring_schedule::StopMonitoringScheduleOutput)
    /// - On failure, responds with [`SdkError<StopMonitoringScheduleError>`](crate::operation::stop_monitoring_schedule::StopMonitoringScheduleError)
    pub fn stop_monitoring_schedule(
        &self,
    ) -> crate::operation::stop_monitoring_schedule::builders::StopMonitoringScheduleFluentBuilder
    {
        crate::operation::stop_monitoring_schedule::builders::StopMonitoringScheduleFluentBuilder::new(self.handle.clone())
    }
}