aws_sdk_sagemaker/client/update_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 [`UpdateMonitoringSchedule`](crate::operation::update_monitoring_schedule::builders::UpdateMonitoringScheduleFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`monitoring_schedule_name(impl Into<String>)`](crate::operation::update_monitoring_schedule::builders::UpdateMonitoringScheduleFluentBuilder::monitoring_schedule_name) / [`set_monitoring_schedule_name(Option<String>)`](crate::operation::update_monitoring_schedule::builders::UpdateMonitoringScheduleFluentBuilder::set_monitoring_schedule_name):<br>required: **true**<br><p>The name of the monitoring schedule. The name must be unique within an Amazon Web Services Region within an Amazon Web Services account.</p><br>
7 /// - [`monitoring_schedule_config(MonitoringScheduleConfig)`](crate::operation::update_monitoring_schedule::builders::UpdateMonitoringScheduleFluentBuilder::monitoring_schedule_config) / [`set_monitoring_schedule_config(Option<MonitoringScheduleConfig>)`](crate::operation::update_monitoring_schedule::builders::UpdateMonitoringScheduleFluentBuilder::set_monitoring_schedule_config):<br>required: **true**<br><p>The configuration object that specifies the monitoring schedule and defines the monitoring job.</p><br>
8 /// - On success, responds with [`UpdateMonitoringScheduleOutput`](crate::operation::update_monitoring_schedule::UpdateMonitoringScheduleOutput) with field(s):
9 /// - [`monitoring_schedule_arn(Option<String>)`](crate::operation::update_monitoring_schedule::UpdateMonitoringScheduleOutput::monitoring_schedule_arn): <p>The Amazon Resource Name (ARN) of the monitoring schedule.</p>
10 /// - On failure, responds with [`SdkError<UpdateMonitoringScheduleError>`](crate::operation::update_monitoring_schedule::UpdateMonitoringScheduleError)
11 pub fn update_monitoring_schedule(&self) -> crate::operation::update_monitoring_schedule::builders::UpdateMonitoringScheduleFluentBuilder {
12 crate::operation::update_monitoring_schedule::builders::UpdateMonitoringScheduleFluentBuilder::new(self.handle.clone())
13 }
14}