aws_sdk_mediatailor/client/
delete_prefetch_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 [`DeletePrefetchSchedule`](crate::operation::delete_prefetch_schedule::builders::DeletePrefetchScheduleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::delete_prefetch_schedule::builders::DeletePrefetchScheduleFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_prefetch_schedule::builders::DeletePrefetchScheduleFluentBuilder::set_name):<br>required: **true**<br><p>The name of the prefetch schedule. If the action is successful, the service sends back an HTTP 204 response with an empty HTTP body.</p><br>
7    ///   - [`playback_configuration_name(impl Into<String>)`](crate::operation::delete_prefetch_schedule::builders::DeletePrefetchScheduleFluentBuilder::playback_configuration_name) / [`set_playback_configuration_name(Option<String>)`](crate::operation::delete_prefetch_schedule::builders::DeletePrefetchScheduleFluentBuilder::set_playback_configuration_name):<br>required: **true**<br><p>The name of the playback configuration for this prefetch schedule.</p><br>
8    /// - On success, responds with [`DeletePrefetchScheduleOutput`](crate::operation::delete_prefetch_schedule::DeletePrefetchScheduleOutput)
9    /// - On failure, responds with [`SdkError<DeletePrefetchScheduleError>`](crate::operation::delete_prefetch_schedule::DeletePrefetchScheduleError)
10    pub fn delete_prefetch_schedule(&self) -> crate::operation::delete_prefetch_schedule::builders::DeletePrefetchScheduleFluentBuilder {
11        crate::operation::delete_prefetch_schedule::builders::DeletePrefetchScheduleFluentBuilder::new(self.handle.clone())
12    }
13}