aws_sdk_medialive/client/
delete_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 [`DeleteSchedule`](crate::operation::delete_schedule::builders::DeleteScheduleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`channel_id(impl Into<String>)`](crate::operation::delete_schedule::builders::DeleteScheduleFluentBuilder::channel_id) / [`set_channel_id(Option<String>)`](crate::operation::delete_schedule::builders::DeleteScheduleFluentBuilder::set_channel_id):<br>required: **true**<br>Id of the channel whose schedule is being deleted.<br>
7    /// - On success, responds with [`DeleteScheduleOutput`](crate::operation::delete_schedule::DeleteScheduleOutput)
8    /// - On failure, responds with [`SdkError<DeleteScheduleError>`](crate::operation::delete_schedule::DeleteScheduleError)
9    pub fn delete_schedule(&self) -> crate::operation::delete_schedule::builders::DeleteScheduleFluentBuilder {
10        crate::operation::delete_schedule::builders::DeleteScheduleFluentBuilder::new(self.handle.clone())
11    }
12}