aws_sdk_medialive/client/
batch_stop.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 [`BatchStop`](crate::operation::batch_stop::builders::BatchStopFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`channel_ids(impl Into<String>)`](crate::operation::batch_stop::builders::BatchStopFluentBuilder::channel_ids) / [`set_channel_ids(Option<Vec::<String>>)`](crate::operation::batch_stop::builders::BatchStopFluentBuilder::set_channel_ids):<br>required: **false**<br>List of channel IDs<br>
7    ///   - [`multiplex_ids(impl Into<String>)`](crate::operation::batch_stop::builders::BatchStopFluentBuilder::multiplex_ids) / [`set_multiplex_ids(Option<Vec::<String>>)`](crate::operation::batch_stop::builders::BatchStopFluentBuilder::set_multiplex_ids):<br>required: **false**<br>List of multiplex IDs<br>
8    /// - On success, responds with [`BatchStopOutput`](crate::operation::batch_stop::BatchStopOutput) with field(s):
9    ///   - [`failed(Option<Vec::<BatchFailedResultModel>>)`](crate::operation::batch_stop::BatchStopOutput::failed): List of failed operations
10    ///   - [`successful(Option<Vec::<BatchSuccessfulResultModel>>)`](crate::operation::batch_stop::BatchStopOutput::successful): List of successful operations
11    /// - On failure, responds with [`SdkError<BatchStopError>`](crate::operation::batch_stop::BatchStopError)
12    pub fn batch_stop(&self) -> crate::operation::batch_stop::builders::BatchStopFluentBuilder {
13        crate::operation::batch_stop::builders::BatchStopFluentBuilder::new(self.handle.clone())
14    }
15}