aws-sdk-medialive 1.83.0

AWS SDK for AWS Elemental MediaLive
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchStop`](crate::operation::batch_stop::builders::BatchStopFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`BatchStopOutput`](crate::operation::batch_stop::BatchStopOutput) with field(s):
    ///   - [`failed(Option<Vec::<BatchFailedResultModel>>)`](crate::operation::batch_stop::BatchStopOutput::failed): List of failed operations
    ///   - [`successful(Option<Vec::<BatchSuccessfulResultModel>>)`](crate::operation::batch_stop::BatchStopOutput::successful): List of successful operations
    /// - On failure, responds with [`SdkError<BatchStopError>`](crate::operation::batch_stop::BatchStopError)
    pub fn batch_stop(&self) -> crate::operation::batch_stop::builders::BatchStopFluentBuilder {
        crate::operation::batch_stop::builders::BatchStopFluentBuilder::new(self.handle.clone())
    }
}