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