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