aws_sdk_mediatailor/client/
start_channel.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 [`StartChannel`](crate::operation::start_channel::builders::StartChannelFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`channel_name(impl Into<String>)`](crate::operation::start_channel::builders::StartChannelFluentBuilder::channel_name) / [`set_channel_name(Option<String>)`](crate::operation::start_channel::builders::StartChannelFluentBuilder::set_channel_name):<br>required: **true**<br><p>The name of the channel.</p><br>
7    /// - On success, responds with [`StartChannelOutput`](crate::operation::start_channel::StartChannelOutput)
8    /// - On failure, responds with [`SdkError<StartChannelError>`](crate::operation::start_channel::StartChannelError)
9    pub fn start_channel(&self) -> crate::operation::start_channel::builders::StartChannelFluentBuilder {
10        crate::operation::start_channel::builders::StartChannelFluentBuilder::new(self.handle.clone())
11    }
12}